diff --git a/server/src/languages/tolk/tree-sitter-tolk/grammar.js b/server/src/languages/tolk/tree-sitter-tolk/grammar.js index 6dba9e7a..a8c0c954 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/grammar.js +++ b/server/src/languages/tolk/tree-sitter-tolk/grammar.js @@ -162,7 +162,7 @@ const TOLK_GRAMMAR = { optional(field("arguments", $.annotation_arguments)), ), - annotation_arguments: $ => seq("(", repeat($._expression), optional(","), ")"), + annotation_arguments: $ => seq("(", commaSep($._expression), optional(","), ")"), type_parameters: $ => seq("<", commaSep($.type_parameter), optional(","), ">"), type_parameter: $ => diff --git a/server/src/languages/tolk/tree-sitter-tolk/src/grammar.json b/server/src/languages/tolk/tree-sitter-tolk/src/grammar.json index 845f5b3e..e2441d7f 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/src/grammar.json +++ b/server/src/languages/tolk/tree-sitter-tolk/src/grammar.json @@ -949,11 +949,37 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", diff --git a/server/src/languages/tolk/tree-sitter-tolk/src/parser.c b/server/src/languages/tolk/tree-sitter-tolk/src/parser.c index 51f35bd0..c70bee26 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/src/parser.c +++ b/server/src/languages/tolk/tree-sitter-tolk/src/parser.c @@ -7,9 +7,9 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 983 +#define STATE_COUNT 997 #define LARGE_STATE_COUNT 75 -#define SYMBOL_COUNT 188 +#define SYMBOL_COUNT 187 #define ALIAS_COUNT 1 #define TOKEN_COUNT 92 #define EXTERNAL_TOKEN_COUNT 0 @@ -206,8 +206,7 @@ enum ts_symbol_identifiers { aux_sym_instantiationT_list_repeat1 = 184, aux_sym_match_body_repeat1 = 185, aux_sym_object_literal_body_repeat1 = 186, - aux_sym_tensor_expression_repeat1 = 187, - alias_sym_type_identifier = 188, + alias_sym_type_identifier = 187, }; static const char * const ts_symbol_names[] = { @@ -398,7 +397,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_instantiationT_list_repeat1] = "instantiationT_list_repeat1", [aux_sym_match_body_repeat1] = "match_body_repeat1", [aux_sym_object_literal_body_repeat1] = "object_literal_body_repeat1", - [aux_sym_tensor_expression_repeat1] = "tensor_expression_repeat1", [alias_sym_type_identifier] = "type_identifier", }; @@ -590,7 +588,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_instantiationT_list_repeat1] = aux_sym_instantiationT_list_repeat1, [aux_sym_match_body_repeat1] = aux_sym_match_body_repeat1, [aux_sym_object_literal_body_repeat1] = aux_sym_object_literal_body_repeat1, - [aux_sym_tensor_expression_repeat1] = aux_sym_tensor_expression_repeat1, [alias_sym_type_identifier] = alias_sym_type_identifier, }; @@ -1343,10 +1340,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_tensor_expression_repeat1] = { - .visible = false, - .named = false, - }, [alias_sym_type_identifier] = { .visible = true, .named = true, @@ -2209,9 +2202,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 2, [4] = 4, [5] = 5, - [6] = 4, - [7] = 7, - [8] = 5, + [6] = 6, + [7] = 4, + [8] = 6, [9] = 9, [10] = 10, [11] = 11, @@ -2219,7 +2212,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 9, + [16] = 16, [17] = 17, [18] = 18, [19] = 19, @@ -2228,7 +2221,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 22, [23] = 23, [24] = 24, - [25] = 10, + [25] = 25, [26] = 26, [27] = 27, [28] = 28, @@ -2276,369 +2269,369 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [70] = 70, [71] = 71, [72] = 72, - [73] = 73, - [74] = 74, - [75] = 28, - [76] = 9, - [77] = 10, - [78] = 42, - [79] = 44, - [80] = 45, - [81] = 37, - [82] = 38, - [83] = 46, - [84] = 30, - [85] = 32, - [86] = 40, - [87] = 33, - [88] = 34, + [73] = 10, + [74] = 9, + [75] = 9, + [76] = 10, + [77] = 26, + [78] = 31, + [79] = 37, + [80] = 25, + [81] = 38, + [82] = 25, + [83] = 39, + [84] = 40, + [85] = 35, + [86] = 36, + [87] = 32, + [88] = 9, [89] = 41, - [90] = 43, - [91] = 39, - [92] = 29, - [93] = 31, - [94] = 36, - [95] = 64, - [96] = 65, - [97] = 62, - [98] = 63, - [99] = 70, - [100] = 69, - [101] = 71, - [102] = 73, - [103] = 72, - [104] = 61, - [105] = 49, - [106] = 50, - [107] = 51, - [108] = 52, - [109] = 53, - [110] = 47, - [111] = 54, - [112] = 55, - [113] = 56, - [114] = 57, - [115] = 58, - [116] = 59, - [117] = 60, - [118] = 66, - [119] = 67, - [120] = 27, - [121] = 68, - [122] = 23, - [123] = 18, - [124] = 19, - [125] = 20, - [126] = 21, - [127] = 22, - [128] = 12, - [129] = 17, - [130] = 24, - [131] = 13, - [132] = 15, - [133] = 14, - [134] = 35, - [135] = 27, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 139, - [140] = 140, - [141] = 35, - [142] = 142, - [143] = 36, - [144] = 74, - [145] = 12, - [146] = 14, - [147] = 15, - [148] = 23, - [149] = 24, - [150] = 17, - [151] = 18, - [152] = 21, - [153] = 153, - [154] = 13, - [155] = 155, - [156] = 19, - [157] = 20, - [158] = 22, - [159] = 159, - [160] = 160, - [161] = 38, - [162] = 28, - [163] = 42, + [90] = 33, + [91] = 27, + [92] = 34, + [93] = 42, + [94] = 10, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 15, + [101] = 16, + [102] = 17, + [103] = 18, + [104] = 24, + [105] = 22, + [106] = 23, + [107] = 21, + [108] = 19, + [109] = 20, + [110] = 13, + [111] = 14, + [112] = 57, + [113] = 49, + [114] = 56, + [115] = 63, + [116] = 70, + [117] = 72, + [118] = 29, + [119] = 30, + [120] = 58, + [121] = 31, + [122] = 26, + [123] = 51, + [124] = 64, + [125] = 38, + [126] = 66, + [127] = 45, + [128] = 53, + [129] = 32, + [130] = 33, + [131] = 27, + [132] = 34, + [133] = 35, + [134] = 36, + [135] = 43, + [136] = 44, + [137] = 28, + [138] = 39, + [139] = 40, + [140] = 41, + [141] = 67, + [142] = 42, + [143] = 52, + [144] = 50, + [145] = 68, + [146] = 71, + [147] = 47, + [148] = 48, + [149] = 55, + [150] = 54, + [151] = 59, + [152] = 60, + [153] = 61, + [154] = 46, + [155] = 65, + [156] = 63, + [157] = 54, + [158] = 57, + [159] = 56, + [160] = 58, + [161] = 68, + [162] = 64, + [163] = 65, [164] = 37, - [165] = 39, - [166] = 44, - [167] = 45, - [168] = 30, - [169] = 31, - [170] = 32, - [171] = 34, - [172] = 46, - [173] = 40, - [174] = 43, - [175] = 29, - [176] = 41, - [177] = 33, - [178] = 64, - [179] = 71, - [180] = 68, - [181] = 65, - [182] = 73, - [183] = 72, - [184] = 49, - [185] = 50, - [186] = 51, - [187] = 52, - [188] = 66, - [189] = 53, - [190] = 47, - [191] = 54, - [192] = 55, - [193] = 56, - [194] = 57, - [195] = 60, - [196] = 58, - [197] = 67, - [198] = 61, - [199] = 70, - [200] = 59, - [201] = 62, - [202] = 63, - [203] = 69, - [204] = 204, - [205] = 27, + [165] = 66, + [166] = 47, + [167] = 71, + [168] = 48, + [169] = 61, + [170] = 49, + [171] = 46, + [172] = 67, + [173] = 70, + [174] = 72, + [175] = 51, + [176] = 45, + [177] = 53, + [178] = 50, + [179] = 52, + [180] = 55, + [181] = 59, + [182] = 60, + [183] = 62, + [184] = 17, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 15, + [190] = 16, + [191] = 13, + [192] = 18, + [193] = 24, + [194] = 22, + [195] = 23, + [196] = 21, + [197] = 19, + [198] = 20, + [199] = 14, + [200] = 28, + [201] = 43, + [202] = 30, + [203] = 44, + [204] = 29, + [205] = 205, [206] = 206, [207] = 207, - [208] = 15, - [209] = 23, + [208] = 16, + [209] = 13, [210] = 210, - [211] = 24, - [212] = 13, - [213] = 18, + [211] = 210, + [212] = 14, + [213] = 213, [214] = 214, - [215] = 215, - [216] = 19, - [217] = 35, - [218] = 218, - [219] = 20, - [220] = 14, - [221] = 12, - [222] = 210, - [223] = 21, - [224] = 17, - [225] = 215, - [226] = 218, - [227] = 210, - [228] = 22, - [229] = 215, - [230] = 218, + [215] = 213, + [216] = 214, + [217] = 15, + [218] = 20, + [219] = 210, + [220] = 213, + [221] = 17, + [222] = 18, + [223] = 24, + [224] = 22, + [225] = 23, + [226] = 226, + [227] = 214, + [228] = 21, + [229] = 19, + [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 233, + [233] = 230, + [234] = 29, [235] = 235, - [236] = 231, - [237] = 237, - [238] = 231, - [239] = 235, - [240] = 240, - [241] = 241, - [242] = 235, - [243] = 233, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 232, + [236] = 30, + [237] = 235, + [238] = 43, + [239] = 230, + [240] = 44, + [241] = 235, + [242] = 231, + [243] = 231, + [244] = 28, + [245] = 17, + [246] = 20, + [247] = 23, [248] = 248, - [249] = 244, - [250] = 244, - [251] = 244, + [249] = 249, + [250] = 21, + [251] = 26, [252] = 252, [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 18, - [259] = 19, - [260] = 20, - [261] = 21, - [262] = 22, - [263] = 12, - [264] = 23, - [265] = 24, + [254] = 248, + [255] = 18, + [256] = 15, + [257] = 24, + [258] = 22, + [259] = 16, + [260] = 26, + [261] = 248, + [262] = 232, + [263] = 263, + [264] = 248, + [265] = 19, [266] = 13, - [267] = 253, - [268] = 253, - [269] = 252, + [267] = 14, + [268] = 268, + [269] = 269, [270] = 270, - [271] = 271, - [272] = 255, - [273] = 257, - [274] = 270, - [275] = 253, - [276] = 256, - [277] = 252, - [278] = 14, - [279] = 15, - [280] = 270, - [281] = 271, - [282] = 17, - [283] = 255, - [284] = 257, - [285] = 271, - [286] = 253, - [287] = 256, + [271] = 269, + [272] = 270, + [273] = 273, + [274] = 274, + [275] = 37, + [276] = 270, + [277] = 277, + [278] = 270, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 279, + [283] = 268, + [284] = 269, + [285] = 280, + [286] = 38, + [287] = 281, [288] = 288, - [289] = 289, - [290] = 290, + [289] = 270, + [290] = 37, [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, + [292] = 268, + [293] = 291, + [294] = 281, + [295] = 291, [296] = 296, - [297] = 297, - [298] = 298, + [297] = 280, + [298] = 279, [299] = 299, - [300] = 137, + [300] = 300, [301] = 301, [302] = 302, [303] = 303, [304] = 304, - [305] = 140, + [305] = 305, [306] = 306, [307] = 307, [308] = 308, [309] = 309, - [310] = 310, + [310] = 303, [311] = 311, - [312] = 290, - [313] = 291, - [314] = 292, - [315] = 294, - [316] = 307, - [317] = 308, - [318] = 309, - [319] = 310, - [320] = 311, - [321] = 290, - [322] = 291, - [323] = 292, - [324] = 294, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 299, + [323] = 301, + [324] = 302, [325] = 325, [326] = 326, [327] = 327, [328] = 328, - [329] = 327, + [329] = 329, [330] = 330, - [331] = 302, - [332] = 302, - [333] = 333, + [331] = 331, + [332] = 332, + [333] = 303, [334] = 334, [335] = 335, - [336] = 307, - [337] = 308, - [338] = 309, - [339] = 310, - [340] = 311, - [341] = 290, - [342] = 291, - [343] = 292, - [344] = 294, - [345] = 309, - [346] = 346, - [347] = 347, - [348] = 302, + [336] = 317, + [337] = 318, + [338] = 319, + [339] = 320, + [340] = 321, + [341] = 299, + [342] = 301, + [343] = 302, + [344] = 325, + [345] = 345, + [346] = 303, + [347] = 300, + [348] = 348, [349] = 349, [350] = 350, - [351] = 328, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 289, - [358] = 310, - [359] = 347, - [360] = 307, - [361] = 307, - [362] = 308, - [363] = 309, - [364] = 310, - [365] = 311, - [366] = 290, - [367] = 291, - [368] = 292, - [369] = 294, - [370] = 302, - [371] = 308, - [372] = 307, - [373] = 295, - [374] = 328, - [375] = 309, - [376] = 310, - [377] = 311, - [378] = 290, - [379] = 308, - [380] = 291, - [381] = 292, - [382] = 382, - [383] = 294, - [384] = 302, - [385] = 385, - [386] = 386, - [387] = 295, - [388] = 328, - [389] = 311, - [390] = 295, - [391] = 328, - [392] = 295, - [393] = 328, + [351] = 317, + [352] = 318, + [353] = 319, + [354] = 320, + [355] = 321, + [356] = 299, + [357] = 301, + [358] = 302, + [359] = 325, + [360] = 300, + [361] = 317, + [362] = 318, + [363] = 319, + [364] = 303, + [365] = 320, + [366] = 321, + [367] = 299, + [368] = 300, + [369] = 348, + [370] = 301, + [371] = 302, + [372] = 317, + [373] = 325, + [374] = 318, + [375] = 348, + [376] = 319, + [377] = 304, + [378] = 300, + [379] = 348, + [380] = 332, + [381] = 300, + [382] = 348, + [383] = 304, + [384] = 320, + [385] = 304, + [386] = 304, + [387] = 304, + [388] = 388, + [389] = 389, + [390] = 321, + [391] = 299, + [392] = 96, + [393] = 393, [394] = 394, - [395] = 289, - [396] = 289, - [397] = 289, - [398] = 289, - [399] = 295, - [400] = 400, - [401] = 401, - [402] = 23, - [403] = 401, - [404] = 394, - [405] = 18, - [406] = 19, - [407] = 20, - [408] = 21, - [409] = 22, - [410] = 12, - [411] = 13, - [412] = 24, + [395] = 395, + [396] = 98, + [397] = 317, + [398] = 318, + [399] = 319, + [400] = 320, + [401] = 321, + [402] = 402, + [403] = 301, + [404] = 302, + [405] = 325, + [406] = 303, + [407] = 348, + [408] = 325, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, [413] = 413, - [414] = 400, - [415] = 401, - [416] = 17, - [417] = 417, - [418] = 14, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 401, - [423] = 15, - [424] = 424, - [425] = 400, - [426] = 401, - [427] = 401, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, + [414] = 18, + [415] = 15, + [416] = 416, + [417] = 17, + [418] = 16, + [419] = 24, + [420] = 22, + [421] = 23, + [422] = 422, + [423] = 412, + [424] = 19, + [425] = 425, + [426] = 13, + [427] = 20, + [428] = 412, + [429] = 412, + [430] = 422, + [431] = 14, + [432] = 412, + [433] = 422, + [434] = 21, + [435] = 412, [436] = 436, [437] = 437, [438] = 438, @@ -2648,35 +2641,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [442] = 442, [443] = 443, [444] = 444, - [445] = 28, - [446] = 10, - [447] = 9, + [445] = 445, + [446] = 446, + [447] = 447, [448] = 448, [449] = 449, - [450] = 42, + [450] = 450, [451] = 451, - [452] = 41, - [453] = 32, - [454] = 9, - [455] = 30, - [456] = 43, - [457] = 33, - [458] = 31, - [459] = 34, - [460] = 10, - [461] = 451, + [452] = 452, + [453] = 25, + [454] = 10, + [455] = 9, + [456] = 456, + [457] = 457, + [458] = 41, + [459] = 35, + [460] = 42, + [461] = 27, [462] = 10, - [463] = 451, - [464] = 29, - [465] = 40, - [466] = 466, + [463] = 40, + [464] = 36, + [465] = 9, + [466] = 10, [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, + [468] = 467, + [469] = 32, + [470] = 33, + [471] = 39, + [472] = 34, + [473] = 467, [474] = 474, [475] = 475, [476] = 476, @@ -2695,133 +2688,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [489] = 489, [490] = 490, [491] = 491, - [492] = 9, + [492] = 492, [493] = 493, [494] = 494, [495] = 10, [496] = 496, - [497] = 45, + [497] = 9, [498] = 498, [499] = 499, [500] = 500, [501] = 501, [502] = 502, - [503] = 46, - [504] = 44, - [505] = 505, - [506] = 506, + [503] = 503, + [504] = 504, + [505] = 43, + [506] = 44, [507] = 507, [508] = 508, - [509] = 509, + [509] = 28, [510] = 510, [511] = 511, [512] = 512, [513] = 513, [514] = 514, - [515] = 515, - [516] = 516, - [517] = 46, + [515] = 44, + [516] = 28, + [517] = 28, [518] = 518, [519] = 519, [520] = 520, - [521] = 44, + [521] = 521, [522] = 522, - [523] = 46, + [523] = 523, [524] = 524, [525] = 525, - [526] = 45, + [526] = 526, [527] = 527, [528] = 528, [529] = 529, - [530] = 530, + [530] = 43, [531] = 531, [532] = 532, - [533] = 429, + [533] = 533, [534] = 534, [535] = 535, - [536] = 536, - [537] = 536, - [538] = 528, + [536] = 535, + [537] = 439, + [538] = 538, [539] = 539, [540] = 540, - [541] = 541, - [542] = 542, - [543] = 432, - [544] = 536, - [545] = 528, + [541] = 540, + [542] = 540, + [543] = 543, + [544] = 535, + [545] = 540, [546] = 546, - [547] = 428, - [548] = 536, - [549] = 528, - [550] = 536, - [551] = 528, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 436, + [551] = 551, [552] = 552, [553] = 553, - [554] = 554, - [555] = 552, + [554] = 535, + [555] = 535, [556] = 556, - [557] = 554, - [558] = 552, - [559] = 559, + [557] = 438, + [558] = 558, + [559] = 540, [560] = 560, [561] = 561, [562] = 562, [563] = 563, [564] = 564, [565] = 565, - [566] = 559, - [567] = 567, + [566] = 566, + [567] = 563, [568] = 568, - [569] = 567, + [569] = 569, [570] = 570, - [571] = 570, - [572] = 572, - [573] = 573, - [574] = 574, + [571] = 571, + [572] = 561, + [573] = 562, + [574] = 563, [575] = 575, [576] = 576, - [577] = 552, + [577] = 577, [578] = 578, - [579] = 559, - [580] = 567, - [581] = 570, + [579] = 561, + [580] = 562, + [581] = 563, [582] = 582, - [583] = 554, - [584] = 552, - [585] = 559, + [583] = 583, + [584] = 584, + [585] = 585, [586] = 586, - [587] = 587, - [588] = 554, - [589] = 553, - [590] = 559, - [591] = 591, - [592] = 553, - [593] = 554, - [594] = 591, - [595] = 559, - [596] = 559, + [587] = 561, + [588] = 560, + [589] = 563, + [590] = 583, + [591] = 584, + [592] = 561, + [593] = 562, + [594] = 563, + [595] = 562, + [596] = 596, [597] = 597, - [598] = 553, - [599] = 591, - [600] = 553, - [601] = 591, - [602] = 553, - [603] = 591, - [604] = 552, - [605] = 554, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, + [598] = 583, + [599] = 584, + [600] = 600, + [601] = 561, + [602] = 566, + [603] = 563, + [604] = 604, + [605] = 561, + [606] = 563, + [607] = 560, + [608] = 566, + [609] = 560, + [610] = 566, + [611] = 560, + [612] = 566, + [613] = 560, + [614] = 562, + [615] = 583, + [616] = 584, + [617] = 562, + [618] = 560, [619] = 619, [620] = 620, [621] = 621, @@ -2841,7 +2834,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [635] = 635, [636] = 636, [637] = 637, - [638] = 442, + [638] = 638, [639] = 639, [640] = 640, [641] = 641, @@ -2883,7 +2876,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [677] = 677, [678] = 678, [679] = 679, - [680] = 28, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, @@ -2894,50 +2887,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [688] = 688, [689] = 689, [690] = 690, - [691] = 691, + [691] = 447, [692] = 692, - [693] = 693, + [693] = 25, [694] = 694, [695] = 695, [696] = 696, [697] = 697, [698] = 698, - [699] = 44, - [700] = 45, - [701] = 46, - [702] = 40, - [703] = 41, - [704] = 43, - [705] = 29, - [706] = 30, - [707] = 31, - [708] = 32, - [709] = 33, - [710] = 34, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 35, + [710] = 41, [711] = 711, - [712] = 42, - [713] = 713, + [712] = 712, + [713] = 42, [714] = 714, [715] = 715, [716] = 716, [717] = 717, [718] = 718, [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, + [720] = 43, + [721] = 44, + [722] = 32, + [723] = 33, + [724] = 27, + [725] = 28, + [726] = 34, [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, + [728] = 39, + [729] = 40, + [730] = 36, [731] = 731, [732] = 732, [733] = 733, - [734] = 720, + [734] = 734, [735] = 735, [736] = 736, [737] = 737, @@ -2947,40 +2940,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [741] = 741, [742] = 742, [743] = 743, - [744] = 738, + [744] = 744, [745] = 745, [746] = 746, [747] = 747, [748] = 748, [749] = 749, - [750] = 738, - [751] = 748, - [752] = 747, - [753] = 748, - [754] = 738, - [755] = 755, - [756] = 756, - [757] = 747, - [758] = 748, - [759] = 759, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 750, + [756] = 751, + [757] = 754, + [758] = 750, + [759] = 754, [760] = 760, - [761] = 738, + [761] = 751, [762] = 762, - [763] = 747, - [764] = 764, - [765] = 748, - [766] = 747, + [763] = 763, + [764] = 751, + [765] = 765, + [766] = 750, [767] = 767, - [768] = 768, + [768] = 751, [769] = 769, [770] = 770, - [771] = 767, - [772] = 772, + [771] = 771, + [772] = 754, [773] = 773, [774] = 774, [775] = 775, - [776] = 776, - [777] = 767, + [776] = 754, + [777] = 750, [778] = 778, [779] = 779, [780] = 780, @@ -2991,14 +2984,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [785] = 785, [786] = 786, [787] = 787, - [788] = 788, + [788] = 781, [789] = 789, - [790] = 790, + [790] = 781, [791] = 791, [792] = 792, - [793] = 783, + [793] = 793, [794] = 794, - [795] = 783, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, @@ -3012,7 +3005,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [806] = 806, [807] = 807, [808] = 808, - [809] = 809, + [809] = 799, [810] = 810, [811] = 811, [812] = 812, @@ -3021,90 +3014,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [815] = 815, [816] = 816, [817] = 817, - [818] = 818, + [818] = 799, [819] = 819, - [820] = 805, + [820] = 820, [821] = 821, [822] = 822, - [823] = 804, + [823] = 823, [824] = 824, - [825] = 806, + [825] = 825, [826] = 826, [827] = 827, [828] = 828, [829] = 829, - [830] = 829, + [830] = 830, [831] = 831, [832] = 832, - [833] = 813, - [834] = 826, + [833] = 833, + [834] = 834, [835] = 835, - [836] = 835, - [837] = 837, - [838] = 807, - [839] = 839, + [836] = 836, + [837] = 820, + [838] = 823, + [839] = 819, [840] = 840, - [841] = 814, - [842] = 805, - [843] = 829, - [844] = 826, - [845] = 807, - [846] = 810, - [847] = 847, - [848] = 813, - [849] = 840, - [850] = 839, - [851] = 829, + [841] = 840, + [842] = 820, + [843] = 843, + [844] = 831, + [845] = 845, + [846] = 832, + [847] = 835, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 804, - [857] = 826, - [858] = 858, - [859] = 839, - [860] = 835, + [853] = 845, + [854] = 826, + [855] = 823, + [856] = 856, + [857] = 856, + [858] = 849, + [859] = 859, + [860] = 831, [861] = 861, - [862] = 829, + [862] = 832, [863] = 863, - [864] = 840, - [865] = 810, - [866] = 866, - [867] = 867, - [868] = 804, - [869] = 826, - [870] = 870, - [871] = 839, - [872] = 814, - [873] = 873, - [874] = 839, - [875] = 875, + [864] = 820, + [865] = 823, + [866] = 835, + [867] = 845, + [868] = 868, + [869] = 869, + [870] = 831, + [871] = 819, + [872] = 820, + [873] = 823, + [874] = 874, + [875] = 845, [876] = 876, - [877] = 877, - [878] = 878, - [879] = 829, - [880] = 804, - [881] = 806, + [877] = 849, + [878] = 851, + [879] = 879, + [880] = 831, + [881] = 881, [882] = 882, - [883] = 883, - [884] = 884, + [883] = 840, + [884] = 826, [885] = 885, [886] = 886, - [887] = 887, + [887] = 831, [888] = 888, - [889] = 889, + [889] = 856, [890] = 890, - [891] = 889, - [892] = 892, + [891] = 891, + [892] = 845, [893] = 893, [894] = 894, - [895] = 895, + [895] = 831, [896] = 896, - [897] = 897, + [897] = 851, [898] = 898, [899] = 899, [900] = 900, - [901] = 883, + [901] = 901, [902] = 902, [903] = 903, [904] = 904, @@ -3112,20 +3105,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [906] = 906, [907] = 907, [908] = 908, - [909] = 888, + [909] = 909, [910] = 910, [911] = 911, [912] = 912, - [913] = 888, + [913] = 913, [914] = 914, - [915] = 915, - [916] = 863, + [915] = 905, + [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 920, + [920] = 913, [921] = 921, - [922] = 922, + [922] = 913, [923] = 923, [924] = 924, [925] = 925, @@ -3140,8 +3133,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [934] = 934, [935] = 935, [936] = 936, - [937] = 937, - [938] = 924, + [937] = 907, + [938] = 938, [939] = 939, [940] = 940, [941] = 941, @@ -3149,24 +3142,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [943] = 943, [944] = 944, [945] = 945, - [946] = 928, + [946] = 946, [947] = 947, - [948] = 928, - [949] = 941, - [950] = 950, - [951] = 941, + [948] = 947, + [949] = 949, + [950] = 947, + [951] = 951, [952] = 952, [953] = 953, [954] = 954, - [955] = 930, + [955] = 955, [956] = 956, [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 924, + [961] = 961, [962] = 962, - [963] = 963, + [963] = 939, [964] = 964, [965] = 965, [966] = 966, @@ -3175,17 +3168,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [969] = 969, [970] = 970, [971] = 971, - [972] = 972, + [972] = 940, [973] = 973, - [974] = 930, + [974] = 962, [975] = 975, - [976] = 976, + [976] = 941, [977] = 977, - [978] = 934, + [978] = 962, [979] = 979, - [980] = 934, + [980] = 980, [981] = 981, [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 941, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 939, + [993] = 993, + [994] = 994, + [995] = 940, + [996] = 996, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3195,86 +3202,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(24); ADVANCE_MAP( - '!', 82, + '!', 83, '"', 2, - '%', 78, - '&', 61, - '(', 34, - ')', 35, - '*', 76, - '+', 75, - ',', 37, - '-', 72, - '.', 39, - '/', 77, + '%', 79, + '&', 62, + '(', 35, + ')', 36, + '*', 77, + '+', 76, + ',', 38, + '-', 73, + '.', 40, + '/', 78, ':', 28, ';', 29, - '<', 42, - '=', 30, - '>', 44, - '?', 58, - '@', 40, - '[', 46, - ']', 47, - '^', 62, + '<', 43, + '=', 31, + '>', 45, + '?', 59, + '@', 41, + '[', 47, + ']', 48, + '^', 63, '`', 22, - '{', 36, - '|', 33, - '}', 38, - '~', 84, + '{', 37, + '|', 34, + '}', 39, + '~', 85, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 1: ADVANCE_MAP( - '!', 82, + '!', 83, '"', 2, - '%', 78, - '&', 61, - '(', 34, - ')', 35, - '*', 76, - '+', 75, - ',', 37, - '-', 72, - '.', 39, - '/', 77, - '0', 87, + '%', 79, + '&', 62, + '(', 35, + '*', 77, + '+', 76, + ',', 38, + '-', 73, + '.', 40, + '/', 78, + '0', 88, ':', 28, ';', 29, - '<', 42, + '<', 43, '=', 30, - '>', 44, - '?', 58, - '[', 46, - ']', 47, - '^', 62, + '>', 45, + '?', 59, + '[', 47, + '^', 63, '`', 22, - '{', 36, - '|', 33, - '}', 38, - '~', 84, + '{', 37, + '|', 34, + '}', 39, + '~', 85, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(90); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(92); + if (lookahead == '"') ADVANCE(93); if (lookahead == '\\') ADVANCE(21); if (lookahead != 0 && lookahead != '\n') ADVANCE(3); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(91); + if (lookahead == '"') ADVANCE(92); if (lookahead == '\\') ADVANCE(21); if (lookahead != 0 && lookahead != '\n') ADVANCE(3); @@ -3290,7 +3295,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(5); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(93); + if (lookahead == '"') ADVANCE(94); if (lookahead != 0) ADVANCE(5); END_STATE(); case 7: @@ -3299,11 +3304,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 8: if (lookahead == '*') ADVANCE(10); - if (lookahead == '/') ADVANCE(98); + if (lookahead == '/') ADVANCE(99); END_STATE(); case 9: if (lookahead == '*') ADVANCE(9); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead != 0) ADVANCE(10); END_STATE(); case 10: @@ -3315,10 +3320,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(22); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 12: if (lookahead == '/') ADVANCE(8); @@ -3327,21 +3332,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(71); + if (lookahead == '>') ADVANCE(72); END_STATE(); case 14: - if (lookahead == '>') ADVANCE(70); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 15: - if (lookahead == '`') ADVANCE(94); + if (lookahead == '`') ADVANCE(95); if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == 's') ADVANCE(85); + if (lookahead == 's') ADVANCE(86); END_STATE(); case 17: if (lookahead == '0' || - lookahead == '1') ADVANCE(88); + lookahead == '1') ADVANCE(89); END_STATE(); case 18: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(26); @@ -3352,7 +3357,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 20: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 21: if (lookahead != 0 && @@ -3365,36 +3370,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 23: if (eof) ADVANCE(24); ADVANCE_MAP( - '!', 81, + '!', 82, '"', 2, - '(', 34, - ')', 35, - '+', 74, - ',', 37, - '-', 73, - '.', 39, + '(', 35, + ')', 36, + '+', 75, + ',', 38, + '-', 74, + '.', 40, '/', 8, - '0', 87, + '0', 88, ';', 29, - '<', 41, - '=', 31, - '>', 43, - '?', 58, - '@', 40, - '[', 46, - ']', 47, + '<', 42, + '=', 32, + '>', 44, + '?', 59, + '@', 41, + '[', 47, + ']', 48, '`', 22, - '{', 36, - '|', 32, - '}', 38, - '~', 83, + '{', 37, + '|', 33, + '}', 39, + '~', 84, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(90); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 24: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -3423,261 +3428,265 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 30: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(63); - if (lookahead == '>') ADVANCE(86); + if (lookahead == '=') ADVANCE(64); END_STATE(); case 31: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(86); + if (lookahead == '=') ADVANCE(64); + if (lookahead == '>') ADVANCE(87); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(87); END_STATE(); case 33: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '|') ADVANCE(60); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '|') ADVANCE(61); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(65); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(69); + if (lookahead == '=') ADVANCE(66); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(66); - if (lookahead == '>') ADVANCE(69); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(67); + if (lookahead == '>') ADVANCE(70); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(59); - if (lookahead == '=') ADVANCE(55); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '/') ADVANCE(80); - if (lookahead == '=') ADVANCE(57); - if (lookahead == '>') ADVANCE(13); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(60); + if (lookahead == '=') ADVANCE(56); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '/') ADVANCE(81); + if (lookahead == '=') ADVANCE(58); + if (lookahead == '>') ADVANCE(13); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(68); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(53); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(54); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(55); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_CARET_GT_GT); + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(49); - if (lookahead == '>') ADVANCE(45); + ACCEPT_TOKEN(anon_sym_CARET_GT_GT); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(45); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(46); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(46); END_STATE(); case 75: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(48); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(50); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(49); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(10); - if (lookahead == '/') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') ADVANCE(51); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(10); + if (lookahead == '/') ADVANCE(99); if (lookahead == '=') ADVANCE(52); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_TILDE_SLASH); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(53); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_CARET_SLASH); + ACCEPT_TOKEN(anon_sym_TILDE_SLASH); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_CARET_SLASH); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(64); - if (lookahead == 'i') ADVANCE(16); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(65); + if (lookahead == 'i') ADVANCE(16); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '/') ADVANCE(79); - if (lookahead == '>') ADVANCE(14); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_BANGis); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '/') ADVANCE(80); + if (lookahead == '>') ADVANCE(14); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); case 87: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 88: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'b') ADVANCE(17); if (lookahead == 'x') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 88: + case 89: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '0' || - lookahead == '1') ADVANCE(88); + lookahead == '1') ADVANCE(89); END_STATE(); - case 89: + case 90: ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 90: + case 91: ACCEPT_TOKEN(sym_number_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); - case 91: + case 92: ACCEPT_TOKEN(sym_string_literal); END_STATE(); - case 92: + case 93: ACCEPT_TOKEN(sym_string_literal); if (lookahead == '"') ADVANCE(4); END_STATE(); - case 93: + case 94: ACCEPT_TOKEN(sym_string_literal); - if (lookahead == '"') ADVANCE(93); + if (lookahead == '"') ADVANCE(94); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 94: + case 95: ACCEPT_TOKEN(sym_identifier); END_STATE(); - case 95: + case 96: ACCEPT_TOKEN(sym_identifier); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); - case 96: + case 97: ACCEPT_TOKEN(sym_numeric_index); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); END_STATE(); - case 97: + case 98: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 98: + case 99: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(98); + lookahead != '\r') ADVANCE(99); END_STATE(); default: return false; @@ -4178,26 +4187,26 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 1}, [73] = {.lex_state = 1}, [74] = {.lex_state = 1}, - [75] = {.lex_state = 1}, + [75] = {.lex_state = 0}, [76] = {.lex_state = 0}, [77] = {.lex_state = 0}, - [78] = {.lex_state = 1}, - [79] = {.lex_state = 1}, - [80] = {.lex_state = 1}, - [81] = {.lex_state = 1}, + [78] = {.lex_state = 0}, + [79] = {.lex_state = 0}, + [80] = {.lex_state = 0}, + [81] = {.lex_state = 0}, [82] = {.lex_state = 1}, - [83] = {.lex_state = 1}, - [84] = {.lex_state = 1}, - [85] = {.lex_state = 1}, - [86] = {.lex_state = 1}, - [87] = {.lex_state = 1}, - [88] = {.lex_state = 1}, - [89] = {.lex_state = 1}, - [90] = {.lex_state = 1}, - [91] = {.lex_state = 1}, - [92] = {.lex_state = 1}, - [93] = {.lex_state = 1}, - [94] = {.lex_state = 1}, + [83] = {.lex_state = 0}, + [84] = {.lex_state = 0}, + [85] = {.lex_state = 0}, + [86] = {.lex_state = 0}, + [87] = {.lex_state = 0}, + [88] = {.lex_state = 0}, + [89] = {.lex_state = 0}, + [90] = {.lex_state = 0}, + [91] = {.lex_state = 0}, + [92] = {.lex_state = 0}, + [93] = {.lex_state = 0}, + [94] = {.lex_state = 0}, [95] = {.lex_state = 1}, [96] = {.lex_state = 1}, [97] = {.lex_state = 1}, @@ -4215,39 +4224,39 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [109] = {.lex_state = 1}, [110] = {.lex_state = 1}, [111] = {.lex_state = 1}, - [112] = {.lex_state = 1}, - [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 1}, - [116] = {.lex_state = 1}, - [117] = {.lex_state = 1}, + [112] = {.lex_state = 0}, + [113] = {.lex_state = 0}, + [114] = {.lex_state = 0}, + [115] = {.lex_state = 0}, + [116] = {.lex_state = 0}, + [117] = {.lex_state = 0}, [118] = {.lex_state = 1}, [119] = {.lex_state = 1}, [120] = {.lex_state = 0}, [121] = {.lex_state = 1}, [122] = {.lex_state = 1}, - [123] = {.lex_state = 1}, - [124] = {.lex_state = 1}, + [123] = {.lex_state = 0}, + [124] = {.lex_state = 0}, [125] = {.lex_state = 1}, - [126] = {.lex_state = 1}, - [127] = {.lex_state = 1}, - [128] = {.lex_state = 1}, + [126] = {.lex_state = 0}, + [127] = {.lex_state = 0}, + [128] = {.lex_state = 0}, [129] = {.lex_state = 1}, [130] = {.lex_state = 1}, [131] = {.lex_state = 1}, [132] = {.lex_state = 1}, [133] = {.lex_state = 1}, - [134] = {.lex_state = 0}, + [134] = {.lex_state = 1}, [135] = {.lex_state = 1}, [136] = {.lex_state = 1}, [137] = {.lex_state = 1}, [138] = {.lex_state = 1}, [139] = {.lex_state = 1}, [140] = {.lex_state = 1}, - [141] = {.lex_state = 1}, + [141] = {.lex_state = 0}, [142] = {.lex_state = 1}, [143] = {.lex_state = 0}, - [144] = {.lex_state = 1}, + [144] = {.lex_state = 0}, [145] = {.lex_state = 0}, [146] = {.lex_state = 0}, [147] = {.lex_state = 0}, @@ -4259,34 +4268,34 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [153] = {.lex_state = 0}, [154] = {.lex_state = 0}, [155] = {.lex_state = 0}, - [156] = {.lex_state = 0}, - [157] = {.lex_state = 0}, - [158] = {.lex_state = 0}, - [159] = {.lex_state = 0}, - [160] = {.lex_state = 0}, - [161] = {.lex_state = 0}, - [162] = {.lex_state = 0}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 0}, - [165] = {.lex_state = 0}, - [166] = {.lex_state = 0}, - [167] = {.lex_state = 0}, - [168] = {.lex_state = 0}, - [169] = {.lex_state = 0}, - [170] = {.lex_state = 0}, - [171] = {.lex_state = 0}, - [172] = {.lex_state = 0}, - [173] = {.lex_state = 0}, - [174] = {.lex_state = 0}, - [175] = {.lex_state = 0}, - [176] = {.lex_state = 0}, - [177] = {.lex_state = 0}, - [178] = {.lex_state = 0}, - [179] = {.lex_state = 0}, - [180] = {.lex_state = 0}, - [181] = {.lex_state = 0}, - [182] = {.lex_state = 0}, - [183] = {.lex_state = 0}, + [156] = {.lex_state = 1}, + [157] = {.lex_state = 1}, + [158] = {.lex_state = 1}, + [159] = {.lex_state = 1}, + [160] = {.lex_state = 1}, + [161] = {.lex_state = 1}, + [162] = {.lex_state = 1}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 1}, + [165] = {.lex_state = 1}, + [166] = {.lex_state = 1}, + [167] = {.lex_state = 1}, + [168] = {.lex_state = 1}, + [169] = {.lex_state = 1}, + [170] = {.lex_state = 1}, + [171] = {.lex_state = 1}, + [172] = {.lex_state = 1}, + [173] = {.lex_state = 1}, + [174] = {.lex_state = 1}, + [175] = {.lex_state = 1}, + [176] = {.lex_state = 1}, + [177] = {.lex_state = 1}, + [178] = {.lex_state = 1}, + [179] = {.lex_state = 1}, + [180] = {.lex_state = 1}, + [181] = {.lex_state = 1}, + [182] = {.lex_state = 1}, + [183] = {.lex_state = 1}, [184] = {.lex_state = 0}, [185] = {.lex_state = 0}, [186] = {.lex_state = 0}, @@ -4307,103 +4316,103 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [201] = {.lex_state = 0}, [202] = {.lex_state = 0}, [203] = {.lex_state = 0}, - [204] = {.lex_state = 23}, - [205] = {.lex_state = 0}, + [204] = {.lex_state = 0}, + [205] = {.lex_state = 23}, [206] = {.lex_state = 23}, [207] = {.lex_state = 23}, [208] = {.lex_state = 0}, [209] = {.lex_state = 0}, [210] = {.lex_state = 23}, - [211] = {.lex_state = 0}, + [211] = {.lex_state = 23}, [212] = {.lex_state = 0}, - [213] = {.lex_state = 0}, + [213] = {.lex_state = 23}, [214] = {.lex_state = 23}, [215] = {.lex_state = 23}, - [216] = {.lex_state = 0}, + [216] = {.lex_state = 23}, [217] = {.lex_state = 0}, - [218] = {.lex_state = 23}, - [219] = {.lex_state = 0}, - [220] = {.lex_state = 0}, + [218] = {.lex_state = 0}, + [219] = {.lex_state = 23}, + [220] = {.lex_state = 23}, [221] = {.lex_state = 0}, - [222] = {.lex_state = 23}, + [222] = {.lex_state = 0}, [223] = {.lex_state = 0}, [224] = {.lex_state = 0}, - [225] = {.lex_state = 23}, + [225] = {.lex_state = 0}, [226] = {.lex_state = 23}, [227] = {.lex_state = 23}, [228] = {.lex_state = 0}, - [229] = {.lex_state = 23}, + [229] = {.lex_state = 0}, [230] = {.lex_state = 23}, [231] = {.lex_state = 23}, [232] = {.lex_state = 23}, [233] = {.lex_state = 23}, - [234] = {.lex_state = 23}, + [234] = {.lex_state = 0}, [235] = {.lex_state = 23}, - [236] = {.lex_state = 23}, + [236] = {.lex_state = 0}, [237] = {.lex_state = 23}, - [238] = {.lex_state = 23}, + [238] = {.lex_state = 0}, [239] = {.lex_state = 23}, - [240] = {.lex_state = 23}, + [240] = {.lex_state = 0}, [241] = {.lex_state = 23}, [242] = {.lex_state = 23}, [243] = {.lex_state = 23}, - [244] = {.lex_state = 23}, - [245] = {.lex_state = 23}, - [246] = {.lex_state = 23}, - [247] = {.lex_state = 23}, - [248] = {.lex_state = 0}, + [244] = {.lex_state = 0}, + [245] = {.lex_state = 0}, + [246] = {.lex_state = 0}, + [247] = {.lex_state = 0}, + [248] = {.lex_state = 23}, [249] = {.lex_state = 23}, - [250] = {.lex_state = 23}, - [251] = {.lex_state = 23}, - [252] = {.lex_state = 0}, + [250] = {.lex_state = 0}, + [251] = {.lex_state = 0}, + [252] = {.lex_state = 23}, [253] = {.lex_state = 23}, - [254] = {.lex_state = 0}, - [255] = {.lex_state = 23}, + [254] = {.lex_state = 23}, + [255] = {.lex_state = 0}, [256] = {.lex_state = 0}, - [257] = {.lex_state = 23}, + [257] = {.lex_state = 0}, [258] = {.lex_state = 0}, [259] = {.lex_state = 0}, [260] = {.lex_state = 0}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 0}, + [261] = {.lex_state = 23}, + [262] = {.lex_state = 23}, [263] = {.lex_state = 0}, - [264] = {.lex_state = 0}, + [264] = {.lex_state = 23}, [265] = {.lex_state = 0}, [266] = {.lex_state = 0}, - [267] = {.lex_state = 23}, + [267] = {.lex_state = 0}, [268] = {.lex_state = 23}, - [269] = {.lex_state = 0}, + [269] = {.lex_state = 23}, [270] = {.lex_state = 23}, [271] = {.lex_state = 23}, [272] = {.lex_state = 23}, - [273] = {.lex_state = 23}, + [273] = {.lex_state = 0}, [274] = {.lex_state = 23}, - [275] = {.lex_state = 23}, - [276] = {.lex_state = 0}, - [277] = {.lex_state = 0}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 0}, + [275] = {.lex_state = 0}, + [276] = {.lex_state = 23}, + [277] = {.lex_state = 23}, + [278] = {.lex_state = 23}, + [279] = {.lex_state = 23}, [280] = {.lex_state = 23}, - [281] = {.lex_state = 23}, - [282] = {.lex_state = 0}, + [281] = {.lex_state = 0}, + [282] = {.lex_state = 23}, [283] = {.lex_state = 23}, [284] = {.lex_state = 23}, [285] = {.lex_state = 23}, - [286] = {.lex_state = 23}, + [286] = {.lex_state = 0}, [287] = {.lex_state = 0}, - [288] = {.lex_state = 23}, + [288] = {.lex_state = 0}, [289] = {.lex_state = 23}, - [290] = {.lex_state = 23}, - [291] = {.lex_state = 23}, + [290] = {.lex_state = 0}, + [291] = {.lex_state = 0}, [292] = {.lex_state = 23}, - [293] = {.lex_state = 23}, - [294] = {.lex_state = 23}, - [295] = {.lex_state = 23}, - [296] = {.lex_state = 23}, - [297] = {.lex_state = 0}, + [293] = {.lex_state = 0}, + [294] = {.lex_state = 0}, + [295] = {.lex_state = 0}, + [296] = {.lex_state = 0}, + [297] = {.lex_state = 23}, [298] = {.lex_state = 23}, [299] = {.lex_state = 23}, - [300] = {.lex_state = 0}, + [300] = {.lex_state = 23}, [301] = {.lex_state = 23}, [302] = {.lex_state = 23}, [303] = {.lex_state = 23}, @@ -4411,13 +4420,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [305] = {.lex_state = 0}, [306] = {.lex_state = 23}, [307] = {.lex_state = 23}, - [308] = {.lex_state = 23}, + [308] = {.lex_state = 0}, [309] = {.lex_state = 23}, [310] = {.lex_state = 23}, [311] = {.lex_state = 23}, [312] = {.lex_state = 23}, [313] = {.lex_state = 23}, - [314] = {.lex_state = 23}, + [314] = {.lex_state = 0}, [315] = {.lex_state = 23}, [316] = {.lex_state = 23}, [317] = {.lex_state = 23}, @@ -4432,13 +4441,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 0}, [327] = {.lex_state = 23}, [328] = {.lex_state = 23}, - [329] = {.lex_state = 23}, - [330] = {.lex_state = 0}, + [329] = {.lex_state = 0}, + [330] = {.lex_state = 23}, [331] = {.lex_state = 23}, [332] = {.lex_state = 23}, [333] = {.lex_state = 23}, - [334] = {.lex_state = 23}, - [335] = {.lex_state = 0}, + [334] = {.lex_state = 0}, + [335] = {.lex_state = 23}, [336] = {.lex_state = 23}, [337] = {.lex_state = 23}, [338] = {.lex_state = 23}, @@ -4448,16 +4457,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [342] = {.lex_state = 23}, [343] = {.lex_state = 23}, [344] = {.lex_state = 23}, - [345] = {.lex_state = 23}, - [346] = {.lex_state = 0}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 23}, [347] = {.lex_state = 23}, [348] = {.lex_state = 23}, [349] = {.lex_state = 23}, - [350] = {.lex_state = 23}, + [350] = {.lex_state = 0}, [351] = {.lex_state = 23}, - [352] = {.lex_state = 0}, + [352] = {.lex_state = 23}, [353] = {.lex_state = 23}, - [354] = {.lex_state = 0}, + [354] = {.lex_state = 23}, [355] = {.lex_state = 23}, [356] = {.lex_state = 23}, [357] = {.lex_state = 23}, @@ -4485,33 +4494,33 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [379] = {.lex_state = 23}, [380] = {.lex_state = 23}, [381] = {.lex_state = 23}, - [382] = {.lex_state = 0}, + [382] = {.lex_state = 23}, [383] = {.lex_state = 23}, [384] = {.lex_state = 23}, [385] = {.lex_state = 23}, - [386] = {.lex_state = 0}, + [386] = {.lex_state = 23}, [387] = {.lex_state = 23}, [388] = {.lex_state = 23}, - [389] = {.lex_state = 23}, + [389] = {.lex_state = 0}, [390] = {.lex_state = 23}, [391] = {.lex_state = 23}, - [392] = {.lex_state = 23}, + [392] = {.lex_state = 0}, [393] = {.lex_state = 23}, - [394] = {.lex_state = 0}, + [394] = {.lex_state = 23}, [395] = {.lex_state = 23}, - [396] = {.lex_state = 23}, + [396] = {.lex_state = 0}, [397] = {.lex_state = 23}, [398] = {.lex_state = 23}, [399] = {.lex_state = 23}, - [400] = {.lex_state = 0}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 0}, - [403] = {.lex_state = 0}, - [404] = {.lex_state = 0}, - [405] = {.lex_state = 0}, - [406] = {.lex_state = 0}, - [407] = {.lex_state = 0}, - [408] = {.lex_state = 0}, + [400] = {.lex_state = 23}, + [401] = {.lex_state = 23}, + [402] = {.lex_state = 23}, + [403] = {.lex_state = 23}, + [404] = {.lex_state = 23}, + [405] = {.lex_state = 23}, + [406] = {.lex_state = 23}, + [407] = {.lex_state = 23}, + [408] = {.lex_state = 23}, [409] = {.lex_state = 0}, [410] = {.lex_state = 0}, [411] = {.lex_state = 0}, @@ -4531,14 +4540,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [425] = {.lex_state = 0}, [426] = {.lex_state = 0}, [427] = {.lex_state = 0}, - [428] = {.lex_state = 23}, - [429] = {.lex_state = 23}, - [430] = {.lex_state = 23}, - [431] = {.lex_state = 23}, - [432] = {.lex_state = 23}, - [433] = {.lex_state = 23}, - [434] = {.lex_state = 23}, - [435] = {.lex_state = 23}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 0}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 0}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 0}, [436] = {.lex_state = 23}, [437] = {.lex_state = 23}, [438] = {.lex_state = 23}, @@ -4551,16 +4560,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 23}, [446] = {.lex_state = 23}, [447] = {.lex_state = 23}, - [448] = {.lex_state = 0}, - [449] = {.lex_state = 0}, + [448] = {.lex_state = 23}, + [449] = {.lex_state = 23}, [450] = {.lex_state = 23}, [451] = {.lex_state = 23}, [452] = {.lex_state = 23}, [453] = {.lex_state = 23}, [454] = {.lex_state = 23}, [455] = {.lex_state = 23}, - [456] = {.lex_state = 23}, - [457] = {.lex_state = 23}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 0}, [458] = {.lex_state = 23}, [459] = {.lex_state = 23}, [460] = {.lex_state = 23}, @@ -4602,66 +4611,66 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [496] = {.lex_state = 23}, [497] = {.lex_state = 23}, [498] = {.lex_state = 23}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 0}, - [501] = {.lex_state = 0}, - [502] = {.lex_state = 0}, + [499] = {.lex_state = 23}, + [500] = {.lex_state = 23}, + [501] = {.lex_state = 23}, + [502] = {.lex_state = 23}, [503] = {.lex_state = 23}, [504] = {.lex_state = 23}, [505] = {.lex_state = 23}, [506] = {.lex_state = 23}, [507] = {.lex_state = 0}, - [508] = {.lex_state = 23}, + [508] = {.lex_state = 0}, [509] = {.lex_state = 23}, [510] = {.lex_state = 23}, [511] = {.lex_state = 0}, - [512] = {.lex_state = 23}, - [513] = {.lex_state = 0}, - [514] = {.lex_state = 23}, + [512] = {.lex_state = 0}, + [513] = {.lex_state = 23}, + [514] = {.lex_state = 0}, [515] = {.lex_state = 23}, [516] = {.lex_state = 23}, [517] = {.lex_state = 23}, [518] = {.lex_state = 23}, - [519] = {.lex_state = 23}, + [519] = {.lex_state = 0}, [520] = {.lex_state = 23}, [521] = {.lex_state = 23}, - [522] = {.lex_state = 0}, + [522] = {.lex_state = 23}, [523] = {.lex_state = 23}, [524] = {.lex_state = 23}, [525] = {.lex_state = 23}, - [526] = {.lex_state = 23}, - [527] = {.lex_state = 0}, + [526] = {.lex_state = 0}, + [527] = {.lex_state = 23}, [528] = {.lex_state = 23}, [529] = {.lex_state = 0}, - [530] = {.lex_state = 0}, + [530] = {.lex_state = 23}, [531] = {.lex_state = 23}, - [532] = {.lex_state = 0}, - [533] = {.lex_state = 0}, - [534] = {.lex_state = 0}, - [535] = {.lex_state = 0}, + [532] = {.lex_state = 23}, + [533] = {.lex_state = 23}, + [534] = {.lex_state = 23}, + [535] = {.lex_state = 23}, [536] = {.lex_state = 23}, - [537] = {.lex_state = 23}, - [538] = {.lex_state = 23}, + [537] = {.lex_state = 0}, + [538] = {.lex_state = 0}, [539] = {.lex_state = 0}, [540] = {.lex_state = 23}, - [541] = {.lex_state = 0}, - [542] = {.lex_state = 0}, - [543] = {.lex_state = 0}, + [541] = {.lex_state = 23}, + [542] = {.lex_state = 23}, + [543] = {.lex_state = 23}, [544] = {.lex_state = 23}, [545] = {.lex_state = 23}, [546] = {.lex_state = 0}, - [547] = {.lex_state = 0}, - [548] = {.lex_state = 23}, - [549] = {.lex_state = 23}, - [550] = {.lex_state = 23}, - [551] = {.lex_state = 23}, - [552] = {.lex_state = 23}, - [553] = {.lex_state = 23}, + [547] = {.lex_state = 23}, + [548] = {.lex_state = 0}, + [549] = {.lex_state = 0}, + [550] = {.lex_state = 0}, + [551] = {.lex_state = 0}, + [552] = {.lex_state = 0}, + [553] = {.lex_state = 0}, [554] = {.lex_state = 23}, [555] = {.lex_state = 23}, - [556] = {.lex_state = 23}, - [557] = {.lex_state = 23}, - [558] = {.lex_state = 23}, + [556] = {.lex_state = 0}, + [557] = {.lex_state = 0}, + [558] = {.lex_state = 0}, [559] = {.lex_state = 23}, [560] = {.lex_state = 23}, [561] = {.lex_state = 23}, @@ -4709,20 +4718,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [603] = {.lex_state = 23}, [604] = {.lex_state = 23}, [605] = {.lex_state = 23}, - [606] = {.lex_state = 0}, - [607] = {.lex_state = 0}, - [608] = {.lex_state = 0}, - [609] = {.lex_state = 0}, - [610] = {.lex_state = 0}, - [611] = {.lex_state = 0}, - [612] = {.lex_state = 0}, - [613] = {.lex_state = 0}, - [614] = {.lex_state = 0}, - [615] = {.lex_state = 0}, - [616] = {.lex_state = 0}, - [617] = {.lex_state = 0}, - [618] = {.lex_state = 0}, - [619] = {.lex_state = 0}, + [606] = {.lex_state = 23}, + [607] = {.lex_state = 23}, + [608] = {.lex_state = 23}, + [609] = {.lex_state = 23}, + [610] = {.lex_state = 23}, + [611] = {.lex_state = 23}, + [612] = {.lex_state = 23}, + [613] = {.lex_state = 23}, + [614] = {.lex_state = 23}, + [615] = {.lex_state = 23}, + [616] = {.lex_state = 23}, + [617] = {.lex_state = 23}, + [618] = {.lex_state = 23}, + [619] = {.lex_state = 23}, [620] = {.lex_state = 0}, [621] = {.lex_state = 0}, [622] = {.lex_state = 0}, @@ -4783,38 +4792,38 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [677] = {.lex_state = 0}, [678] = {.lex_state = 0}, [679] = {.lex_state = 0}, - [680] = {.lex_state = 23}, - [681] = {.lex_state = 23}, + [680] = {.lex_state = 0}, + [681] = {.lex_state = 0}, [682] = {.lex_state = 0}, - [683] = {.lex_state = 23}, - [684] = {.lex_state = 23}, - [685] = {.lex_state = 23}, - [686] = {.lex_state = 23}, - [687] = {.lex_state = 23}, + [683] = {.lex_state = 0}, + [684] = {.lex_state = 0}, + [685] = {.lex_state = 0}, + [686] = {.lex_state = 0}, + [687] = {.lex_state = 0}, [688] = {.lex_state = 0}, - [689] = {.lex_state = 23}, - [690] = {.lex_state = 23}, - [691] = {.lex_state = 23}, - [692] = {.lex_state = 23}, + [689] = {.lex_state = 0}, + [690] = {.lex_state = 0}, + [691] = {.lex_state = 0}, + [692] = {.lex_state = 0}, [693] = {.lex_state = 23}, [694] = {.lex_state = 0}, - [695] = {.lex_state = 0}, - [696] = {.lex_state = 23}, + [695] = {.lex_state = 23}, + [696] = {.lex_state = 0}, [697] = {.lex_state = 23}, - [698] = {.lex_state = 0}, + [698] = {.lex_state = 23}, [699] = {.lex_state = 23}, [700] = {.lex_state = 23}, [701] = {.lex_state = 23}, - [702] = {.lex_state = 23}, + [702] = {.lex_state = 0}, [703] = {.lex_state = 23}, [704] = {.lex_state = 23}, - [705] = {.lex_state = 23}, + [705] = {.lex_state = 0}, [706] = {.lex_state = 23}, [707] = {.lex_state = 23}, [708] = {.lex_state = 23}, [709] = {.lex_state = 23}, [710] = {.lex_state = 23}, - [711] = {.lex_state = 0}, + [711] = {.lex_state = 23}, [712] = {.lex_state = 23}, [713] = {.lex_state = 23}, [714] = {.lex_state = 23}, @@ -4822,92 +4831,92 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [716] = {.lex_state = 0}, [717] = {.lex_state = 0}, [718] = {.lex_state = 0}, - [719] = {.lex_state = 23}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 0}, - [729] = {.lex_state = 0}, - [730] = {.lex_state = 0}, + [719] = {.lex_state = 0}, + [720] = {.lex_state = 23}, + [721] = {.lex_state = 23}, + [722] = {.lex_state = 23}, + [723] = {.lex_state = 23}, + [724] = {.lex_state = 23}, + [725] = {.lex_state = 23}, + [726] = {.lex_state = 23}, + [727] = {.lex_state = 23}, + [728] = {.lex_state = 23}, + [729] = {.lex_state = 23}, + [730] = {.lex_state = 23}, [731] = {.lex_state = 0}, [732] = {.lex_state = 0}, [733] = {.lex_state = 0}, [734] = {.lex_state = 0}, [735] = {.lex_state = 0}, [736] = {.lex_state = 23}, - [737] = {.lex_state = 23}, - [738] = {.lex_state = 23}, + [737] = {.lex_state = 0}, + [738] = {.lex_state = 0}, [739] = {.lex_state = 0}, [740] = {.lex_state = 0}, - [741] = {.lex_state = 23}, + [741] = {.lex_state = 0}, [742] = {.lex_state = 0}, [743] = {.lex_state = 0}, - [744] = {.lex_state = 23}, + [744] = {.lex_state = 0}, [745] = {.lex_state = 0}, [746] = {.lex_state = 0}, - [747] = {.lex_state = 23}, - [748] = {.lex_state = 23}, + [747] = {.lex_state = 0}, + [748] = {.lex_state = 0}, [749] = {.lex_state = 0}, [750] = {.lex_state = 23}, [751] = {.lex_state = 23}, [752] = {.lex_state = 23}, [753] = {.lex_state = 23}, [754] = {.lex_state = 23}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 0}, + [755] = {.lex_state = 23}, + [756] = {.lex_state = 23}, [757] = {.lex_state = 23}, [758] = {.lex_state = 23}, - [759] = {.lex_state = 0}, + [759] = {.lex_state = 23}, [760] = {.lex_state = 0}, [761] = {.lex_state = 23}, [762] = {.lex_state = 0}, - [763] = {.lex_state = 23}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 23}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 23}, + [765] = {.lex_state = 0}, [766] = {.lex_state = 23}, - [767] = {.lex_state = 23}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 23}, - [771] = {.lex_state = 23}, + [767] = {.lex_state = 0}, + [768] = {.lex_state = 23}, + [769] = {.lex_state = 23}, + [770] = {.lex_state = 0}, + [771] = {.lex_state = 0}, [772] = {.lex_state = 23}, - [773] = {.lex_state = 23}, - [774] = {.lex_state = 23}, - [775] = {.lex_state = 23}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 0}, + [775] = {.lex_state = 0}, [776] = {.lex_state = 23}, [777] = {.lex_state = 23}, [778] = {.lex_state = 0}, - [779] = {.lex_state = 23}, + [779] = {.lex_state = 0}, [780] = {.lex_state = 0}, [781] = {.lex_state = 23}, - [782] = {.lex_state = 0}, + [782] = {.lex_state = 23}, [783] = {.lex_state = 0}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 0}, + [784] = {.lex_state = 23}, + [785] = {.lex_state = 23}, [786] = {.lex_state = 0}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, - [791] = {.lex_state = 0}, + [787] = {.lex_state = 23}, + [788] = {.lex_state = 23}, + [789] = {.lex_state = 23}, + [790] = {.lex_state = 23}, + [791] = {.lex_state = 23}, [792] = {.lex_state = 0}, [793] = {.lex_state = 0}, - [794] = {.lex_state = 0}, + [794] = {.lex_state = 23}, [795] = {.lex_state = 0}, [796] = {.lex_state = 0}, [797] = {.lex_state = 0}, - [798] = {.lex_state = 23}, + [798] = {.lex_state = 0}, [799] = {.lex_state = 0}, - [800] = {.lex_state = 23}, - [801] = {.lex_state = 0}, + [800] = {.lex_state = 0}, + [801] = {.lex_state = 23}, [802] = {.lex_state = 0}, [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, + [804] = {.lex_state = 23}, [805] = {.lex_state = 0}, [806] = {.lex_state = 0}, [807] = {.lex_state = 0}, @@ -4918,23 +4927,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [812] = {.lex_state = 0}, [813] = {.lex_state = 0}, [814] = {.lex_state = 0}, - [815] = {.lex_state = 23}, - [816] = {.lex_state = 23}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0}, [817] = {.lex_state = 0}, [818] = {.lex_state = 0}, - [819] = {.lex_state = 23}, + [819] = {.lex_state = 0}, [820] = {.lex_state = 0}, - [821] = {.lex_state = 23}, - [822] = {.lex_state = 23}, + [821] = {.lex_state = 0}, + [822] = {.lex_state = 0}, [823] = {.lex_state = 0}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0}, + [824] = {.lex_state = 23}, + [825] = {.lex_state = 23}, [826] = {.lex_state = 0}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 23}, + [827] = {.lex_state = 23}, + [828] = {.lex_state = 0}, [829] = {.lex_state = 23}, - [830] = {.lex_state = 23}, - [831] = {.lex_state = 0}, + [830] = {.lex_state = 0}, + [831] = {.lex_state = 23}, [832] = {.lex_state = 0}, [833] = {.lex_state = 0}, [834] = {.lex_state = 0}, @@ -4942,64 +4951,64 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 0}, [837] = {.lex_state = 0}, [838] = {.lex_state = 0}, - [839] = {.lex_state = 23}, + [839] = {.lex_state = 0}, [840] = {.lex_state = 0}, [841] = {.lex_state = 0}, [842] = {.lex_state = 0}, [843] = {.lex_state = 23}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, + [844] = {.lex_state = 23}, + [845] = {.lex_state = 23}, [846] = {.lex_state = 0}, [847] = {.lex_state = 0}, - [848] = {.lex_state = 0}, + [848] = {.lex_state = 23}, [849] = {.lex_state = 0}, - [850] = {.lex_state = 23}, - [851] = {.lex_state = 23}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 0}, [852] = {.lex_state = 0}, [853] = {.lex_state = 23}, [854] = {.lex_state = 0}, - [855] = {.lex_state = 23}, + [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, - [859] = {.lex_state = 23}, - [860] = {.lex_state = 0}, + [859] = {.lex_state = 0}, + [860] = {.lex_state = 23}, [861] = {.lex_state = 0}, - [862] = {.lex_state = 23}, + [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, + [867] = {.lex_state = 23}, [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 23}, + [870] = {.lex_state = 23}, + [871] = {.lex_state = 0}, [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 23}, - [875] = {.lex_state = 0}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 23}, [876] = {.lex_state = 0}, - [877] = {.lex_state = 23}, - [878] = {.lex_state = 23}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0}, [879] = {.lex_state = 23}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 0}, + [880] = {.lex_state = 23}, + [881] = {.lex_state = 23}, + [882] = {.lex_state = 23}, [883] = {.lex_state = 0}, [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, + [885] = {.lex_state = 23}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 11}, + [887] = {.lex_state = 23}, + [888] = {.lex_state = 0}, [889] = {.lex_state = 0}, [890] = {.lex_state = 0}, [891] = {.lex_state = 0}, - [892] = {.lex_state = 0}, + [892] = {.lex_state = 23}, [893] = {.lex_state = 0}, [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, + [895] = {.lex_state = 23}, + [896] = {.lex_state = 23}, [897] = {.lex_state = 0}, [898] = {.lex_state = 0}, [899] = {.lex_state = 0}, @@ -5009,10 +5018,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [903] = {.lex_state = 0}, [904] = {.lex_state = 0}, [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, + [906] = {.lex_state = 23}, [907] = {.lex_state = 0}, [908] = {.lex_state = 0}, - [909] = {.lex_state = 11}, + [909] = {.lex_state = 0}, [910] = {.lex_state = 0}, [911] = {.lex_state = 0}, [912] = {.lex_state = 0}, @@ -5022,13 +5031,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [916] = {.lex_state = 0}, [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 23}, - [920] = {.lex_state = 0}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 11}, [921] = {.lex_state = 0}, - [922] = {.lex_state = 0}, + [922] = {.lex_state = 11}, [923] = {.lex_state = 0}, [924] = {.lex_state = 0}, - [925] = {.lex_state = 12}, + [925] = {.lex_state = 0}, [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, [928] = {.lex_state = 0}, @@ -5053,7 +5062,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, [949] = {.lex_state = 0}, - [950] = {.lex_state = 23}, + [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, @@ -5061,21 +5070,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [955] = {.lex_state = 0}, [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, - [958] = {.lex_state = 0}, + [958] = {.lex_state = 23}, [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, - [961] = {.lex_state = 0}, + [961] = {.lex_state = 12}, [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 23}, + [968] = {.lex_state = 0}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 23}, + [970] = {.lex_state = 23}, + [971] = {.lex_state = 23}, + [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, @@ -5086,6 +5095,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5183,22 +5206,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(1)] = { - [sym_source_file] = STATE(963), - [sym__top_level_declaration] = STATE(449), - [sym_tolk_required_version] = STATE(449), - [sym_import_directive] = STATE(449), - [sym_global_var_declaration] = STATE(449), - [sym_constant_declaration] = STATE(449), - [sym_type_alias_declaration] = STATE(449), - [sym_struct_declaration] = STATE(449), - [sym_function_declaration] = STATE(449), - [sym_method_declaration] = STATE(449), - [sym_get_method_declaration] = STATE(449), - [sym_annotation_list] = STATE(749), - [sym_annotation] = STATE(694), - [sym_empty_statement] = STATE(449), - [aux_sym_source_file_repeat1] = STATE(449), - [aux_sym_annotation_list_repeat1] = STATE(694), + [sym_source_file] = STATE(960), + [sym__top_level_declaration] = STATE(456), + [sym_tolk_required_version] = STATE(456), + [sym_import_directive] = STATE(456), + [sym_global_var_declaration] = STATE(456), + [sym_constant_declaration] = STATE(456), + [sym_type_alias_declaration] = STATE(456), + [sym_struct_declaration] = STATE(456), + [sym_function_declaration] = STATE(456), + [sym_method_declaration] = STATE(456), + [sym_get_method_declaration] = STATE(456), + [sym_annotation_list] = STATE(767), + [sym_annotation] = STATE(702), + [sym_empty_statement] = STATE(456), + [aux_sym_source_file_repeat1] = STATE(456), + [aux_sym_annotation_list_repeat1] = STATE(702), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_tolk] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -5213,53 +5236,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(2)] = { - [sym__statement_ending_with_brace] = STATE(6), - [sym__statement_require_semicolon_unless_last] = STATE(883), - [sym__statement] = STATE(6), - [sym_local_vars_declaration] = STATE(883), - [sym_block_statement] = STATE(6), - [sym_return_statement] = STATE(883), - [sym_repeat_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_do_while_statement] = STATE(883), - [sym_while_statement] = STATE(6), - [sym_throw_statement] = STATE(883), - [sym_assert_statement] = STATE(883), - [sym_try_catch_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(6), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_instance_argument] = STATE(836), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(6), + [sym__statement_ending_with_brace] = STATE(8), + [sym__statement_require_semicolon_unless_last] = STATE(907), + [sym__statement] = STATE(8), + [sym_local_vars_declaration] = STATE(907), + [sym_block_statement] = STATE(8), + [sym_return_statement] = STATE(907), + [sym_repeat_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_do_while_statement] = STATE(907), + [sym_while_statement] = STATE(8), + [sym_throw_statement] = STATE(907), + [sym_assert_statement] = STATE(907), + [sym_try_catch_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(8), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_instance_argument] = STATE(840), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(8), [sym_identifier] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(29), [anon_sym_PIPE] = ACTIONS(31), @@ -5295,53 +5318,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(3)] = { - [sym__statement_ending_with_brace] = STATE(6), - [sym__statement_require_semicolon_unless_last] = STATE(883), - [sym__statement] = STATE(6), - [sym_local_vars_declaration] = STATE(883), - [sym_block_statement] = STATE(6), - [sym_return_statement] = STATE(883), - [sym_repeat_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_do_while_statement] = STATE(883), - [sym_while_statement] = STATE(6), - [sym_throw_statement] = STATE(883), - [sym_assert_statement] = STATE(883), - [sym_try_catch_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(6), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_instance_argument] = STATE(860), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(6), + [sym__statement_ending_with_brace] = STATE(8), + [sym__statement_require_semicolon_unless_last] = STATE(907), + [sym__statement] = STATE(8), + [sym_local_vars_declaration] = STATE(907), + [sym_block_statement] = STATE(8), + [sym_return_statement] = STATE(907), + [sym_repeat_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_do_while_statement] = STATE(907), + [sym_while_statement] = STATE(8), + [sym_throw_statement] = STATE(907), + [sym_assert_statement] = STATE(907), + [sym_try_catch_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(8), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_instance_argument] = STATE(841), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(8), [sym_identifier] = ACTIONS(27), [anon_sym_SEMI] = ACTIONS(29), [anon_sym_PIPE] = ACTIONS(31), @@ -5377,52 +5400,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(4)] = { - [sym__statement_ending_with_brace] = STATE(7), - [sym__statement_require_semicolon_unless_last] = STATE(889), - [sym__statement] = STATE(7), - [sym_local_vars_declaration] = STATE(889), - [sym_block_statement] = STATE(7), - [sym_return_statement] = STATE(889), - [sym_repeat_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_do_while_statement] = STATE(889), - [sym_while_statement] = STATE(7), - [sym_throw_statement] = STATE(889), - [sym_assert_statement] = STATE(889), - [sym_try_catch_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(7), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(7), + [sym__statement_ending_with_brace] = STATE(6), + [sym__statement_require_semicolon_unless_last] = STATE(937), + [sym__statement] = STATE(6), + [sym_local_vars_declaration] = STATE(937), + [sym_block_statement] = STATE(6), + [sym_return_statement] = STATE(937), + [sym_repeat_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_do_while_statement] = STATE(937), + [sym_while_statement] = STATE(6), + [sym_throw_statement] = STATE(937), + [sym_assert_statement] = STATE(937), + [sym_try_catch_statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(6), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(6), [sym_identifier] = ACTIONS(79), [anon_sym_SEMI] = ACTIONS(29), [anon_sym_PIPE] = ACTIONS(31), @@ -5457,138 +5480,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(5)] = { - [sym__statement_ending_with_brace] = STATE(4), - [sym__statement_require_semicolon_unless_last] = STATE(901), - [sym__statement] = STATE(4), - [sym_local_vars_declaration] = STATE(901), - [sym_block_statement] = STATE(4), - [sym_return_statement] = STATE(901), - [sym_repeat_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_do_while_statement] = STATE(901), - [sym_while_statement] = STATE(4), - [sym_throw_statement] = STATE(901), - [sym_assert_statement] = STATE(901), - [sym_try_catch_statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(4), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(4), - [sym_identifier] = ACTIONS(79), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(85), - [anon_sym_var] = ACTIONS(41), - [anon_sym_val] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_repeat] = ACTIONS(47), - [anon_sym_if] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [sym_break_statement] = ACTIONS(87), - [sym_continue_statement] = ACTIONS(87), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_BANG] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lazy] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [sym_string_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [sym_null_literal] = ACTIONS(73), - [sym_underscore] = ACTIONS(73), + [sym__statement_ending_with_brace] = STATE(5), + [sym__statement_require_semicolon_unless_last] = STATE(943), + [sym__statement] = STATE(5), + [sym_local_vars_declaration] = STATE(943), + [sym_block_statement] = STATE(5), + [sym_return_statement] = STATE(943), + [sym_repeat_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_do_while_statement] = STATE(943), + [sym_while_statement] = STATE(5), + [sym_throw_statement] = STATE(943), + [sym_assert_statement] = STATE(943), + [sym_try_catch_statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(5), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(88), + [anon_sym_PIPE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(100), + [anon_sym_var] = ACTIONS(102), + [anon_sym_val] = ACTIONS(102), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_return] = ACTIONS(108), + [anon_sym_repeat] = ACTIONS(111), + [anon_sym_if] = ACTIONS(114), + [anon_sym_do] = ACTIONS(117), + [anon_sym_while] = ACTIONS(120), + [sym_break_statement] = ACTIONS(123), + [sym_continue_statement] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(126), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_try] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_lazy] = ACTIONS(138), + [anon_sym_match] = ACTIONS(141), + [sym_number_literal] = ACTIONS(144), + [sym_string_literal] = ACTIONS(144), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [sym_null_literal] = ACTIONS(150), + [sym_underscore] = ACTIONS(150), [sym_comment] = ACTIONS(3), }, [STATE(6)] = { - [sym__statement_ending_with_brace] = STATE(7), - [sym__statement_require_semicolon_unless_last] = STATE(891), - [sym__statement] = STATE(7), - [sym_local_vars_declaration] = STATE(891), - [sym_block_statement] = STATE(7), - [sym_return_statement] = STATE(891), - [sym_repeat_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_do_while_statement] = STATE(891), - [sym_while_statement] = STATE(7), - [sym_throw_statement] = STATE(891), - [sym_assert_statement] = STATE(891), - [sym_try_catch_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(7), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(7), + [sym__statement_ending_with_brace] = STATE(5), + [sym__statement_require_semicolon_unless_last] = STATE(915), + [sym__statement] = STATE(5), + [sym_local_vars_declaration] = STATE(915), + [sym_block_statement] = STATE(5), + [sym_return_statement] = STATE(915), + [sym_repeat_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_do_while_statement] = STATE(915), + [sym_while_statement] = STATE(5), + [sym_throw_statement] = STATE(915), + [sym_assert_statement] = STATE(915), + [sym_try_catch_statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(5), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(5), [sym_identifier] = ACTIONS(79), [anon_sym_SEMI] = ACTIONS(29), [anon_sym_PIPE] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_var] = ACTIONS(41), [anon_sym_val] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), @@ -5597,8 +5620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), - [sym_break_statement] = ACTIONS(91), - [sym_continue_statement] = ACTIONS(91), + [sym_break_statement] = ACTIONS(155), + [sym_continue_statement] = ACTIONS(155), [anon_sym_throw] = ACTIONS(57), [anon_sym_assert] = ACTIONS(59), [anon_sym_try] = ACTIONS(61), @@ -5617,138 +5640,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(7)] = { - [sym__statement_ending_with_brace] = STATE(7), - [sym__statement_require_semicolon_unless_last] = STATE(940), - [sym__statement] = STATE(7), - [sym_local_vars_declaration] = STATE(940), - [sym_block_statement] = STATE(7), - [sym_return_statement] = STATE(940), - [sym_repeat_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_do_while_statement] = STATE(940), - [sym_while_statement] = STATE(7), - [sym_throw_statement] = STATE(940), - [sym_assert_statement] = STATE(940), - [sym_try_catch_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(7), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(7), - [sym_identifier] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(96), - [anon_sym_PIPE] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(108), - [anon_sym_var] = ACTIONS(110), - [anon_sym_val] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_return] = ACTIONS(116), - [anon_sym_repeat] = ACTIONS(119), - [anon_sym_if] = ACTIONS(122), - [anon_sym_do] = ACTIONS(125), - [anon_sym_while] = ACTIONS(128), - [sym_break_statement] = ACTIONS(131), - [sym_continue_statement] = ACTIONS(131), - [anon_sym_throw] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_try] = ACTIONS(140), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(143), - [anon_sym_lazy] = ACTIONS(146), - [anon_sym_match] = ACTIONS(149), - [sym_number_literal] = ACTIONS(152), - [sym_string_literal] = ACTIONS(152), - [anon_sym_true] = ACTIONS(155), - [anon_sym_false] = ACTIONS(155), - [sym_null_literal] = ACTIONS(158), - [sym_underscore] = ACTIONS(158), - [sym_comment] = ACTIONS(3), - }, - [STATE(8)] = { - [sym__statement_ending_with_brace] = STATE(6), - [sym__statement_require_semicolon_unless_last] = STATE(883), - [sym__statement] = STATE(6), - [sym_local_vars_declaration] = STATE(883), - [sym_block_statement] = STATE(6), - [sym_return_statement] = STATE(883), - [sym_repeat_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_do_while_statement] = STATE(883), - [sym_while_statement] = STATE(6), - [sym_throw_statement] = STATE(883), - [sym_assert_statement] = STATE(883), - [sym_try_catch_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(26), - [sym_assignment] = STATE(26), - [sym_set_assignment] = STATE(26), - [sym_ternary_operator] = STATE(26), - [sym__comparison_lt_gt] = STATE(62), - [sym_binary_operator] = STATE(26), - [sym_unary_operator] = STATE(26), - [sym_lazy_expression] = STATE(26), - [sym_cast_as_operator] = STATE(26), - [sym_is_type_operator] = STATE(26), - [sym_dot_access] = STATE(26), - [sym_not_null_operator] = STATE(26), - [sym_function_call] = STATE(26), - [sym_generic_instantiation] = STATE(26), - [sym_match_statement] = STATE(6), - [sym_match_expression] = STATE(48), - [sym_object_literal] = STATE(26), - [sym_object_literal_body] = STATE(63), - [sym_parenthesized_expression] = STATE(26), - [sym_tensor_expression] = STATE(26), - [sym_typed_tuple] = STATE(26), - [sym__type_hint] = STATE(771), - [sym_type_instantiatedTs] = STATE(771), - [sym_tensor_type] = STATE(771), - [sym_tuple_type] = STATE(771), - [sym_parenthesized_type] = STATE(771), - [sym_fun_callable_type] = STATE(771), - [sym_nullable_type] = STATE(771), - [sym_union_type] = STATE(771), - [sym_boolean_literal] = STATE(26), - [aux_sym_block_statement_repeat1] = STATE(6), + [sym__statement_ending_with_brace] = STATE(8), + [sym__statement_require_semicolon_unless_last] = STATE(907), + [sym__statement] = STATE(8), + [sym_local_vars_declaration] = STATE(907), + [sym_block_statement] = STATE(8), + [sym_return_statement] = STATE(907), + [sym_repeat_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_do_while_statement] = STATE(907), + [sym_while_statement] = STATE(8), + [sym_throw_statement] = STATE(907), + [sym_assert_statement] = STATE(907), + [sym_try_catch_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(8), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(8), [sym_identifier] = ACTIONS(79), [anon_sym_SEMI] = ACTIONS(29), [anon_sym_PIPE] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_var] = ACTIONS(41), [anon_sym_val] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), @@ -5776,15 +5719,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_underscore] = ACTIONS(73), [sym_comment] = ACTIONS(3), }, + [STATE(8)] = { + [sym__statement_ending_with_brace] = STATE(5), + [sym__statement_require_semicolon_unless_last] = STATE(905), + [sym__statement] = STATE(5), + [sym_local_vars_declaration] = STATE(905), + [sym_block_statement] = STATE(5), + [sym_return_statement] = STATE(905), + [sym_repeat_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_do_while_statement] = STATE(905), + [sym_while_statement] = STATE(5), + [sym_throw_statement] = STATE(905), + [sym_assert_statement] = STATE(905), + [sym_try_catch_statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(445), + [sym__expression] = STATE(12), + [sym_assignment] = STATE(12), + [sym_set_assignment] = STATE(12), + [sym_ternary_operator] = STATE(12), + [sym__comparison_lt_gt] = STATE(70), + [sym_binary_operator] = STATE(12), + [sym_unary_operator] = STATE(12), + [sym_lazy_expression] = STATE(12), + [sym_cast_as_operator] = STATE(12), + [sym_is_type_operator] = STATE(12), + [sym_dot_access] = STATE(12), + [sym_not_null_operator] = STATE(12), + [sym_function_call] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_match_statement] = STATE(5), + [sym_match_expression] = STATE(69), + [sym_object_literal] = STATE(12), + [sym_object_literal_body] = STATE(72), + [sym_parenthesized_expression] = STATE(12), + [sym_tensor_expression] = STATE(12), + [sym_typed_tuple] = STATE(12), + [sym__type_hint] = STATE(788), + [sym_type_instantiatedTs] = STATE(788), + [sym_tensor_type] = STATE(788), + [sym_tuple_type] = STATE(788), + [sym_parenthesized_type] = STATE(788), + [sym_fun_callable_type] = STATE(788), + [sym_nullable_type] = STATE(788), + [sym_union_type] = STATE(788), + [sym_boolean_literal] = STATE(12), + [aux_sym_block_statement_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_var] = ACTIONS(41), + [anon_sym_val] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [sym_break_statement] = ACTIONS(161), + [sym_continue_statement] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_assert] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_lazy] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [sym_string_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [sym_null_literal] = ACTIONS(73), + [sym_underscore] = ACTIONS(73), + [sym_comment] = ACTIONS(3), + }, [STATE(9)] = { - [sym__type_hint] = STATE(44), - [sym_type_instantiatedTs] = STATE(44), - [sym_tensor_type] = STATE(44), - [sym_tuple_type] = STATE(44), - [sym_parenthesized_type] = STATE(44), - [sym_fun_callable_type] = STATE(44), - [sym_nullable_type] = STATE(44), - [sym_union_type] = STATE(44), + [sym__type_hint] = STATE(43), + [sym_type_instantiatedTs] = STATE(43), + [sym_tensor_type] = STATE(43), + [sym_tuple_type] = STATE(43), + [sym_parenthesized_type] = STATE(43), + [sym_fun_callable_type] = STATE(43), + [sym_nullable_type] = STATE(43), + [sym_union_type] = STATE(43), [sym_identifier] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_EQ] = ACTIONS(167), @@ -5856,14 +5879,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(10)] = { - [sym__type_hint] = STATE(44), - [sym_type_instantiatedTs] = STATE(44), - [sym_tensor_type] = STATE(44), - [sym_tuple_type] = STATE(44), - [sym_parenthesized_type] = STATE(44), - [sym_fun_callable_type] = STATE(44), - [sym_nullable_type] = STATE(44), - [sym_union_type] = STATE(44), + [sym__type_hint] = STATE(43), + [sym_type_instantiatedTs] = STATE(43), + [sym_tensor_type] = STATE(43), + [sym_tuple_type] = STATE(43), + [sym_parenthesized_type] = STATE(43), + [sym_fun_callable_type] = STATE(43), + [sym_nullable_type] = STATE(43), + [sym_union_type] = STATE(43), [sym_identifier] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_EQ] = ACTIONS(177), @@ -5935,7 +5958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(11)] = { - [sym_instantiationT_list] = STATE(456), + [sym_instantiationT_list] = STATE(461), [sym_identifier] = ACTIONS(182), [anon_sym_COLON] = ACTIONS(184), [anon_sym_SEMI] = ACTIONS(186), @@ -6009,19 +6032,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(12)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), [sym_identifier] = ACTIONS(204), [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_PIPE] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_LBRACE] = ACTIONS(206), [anon_sym_RBRACE] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(218), [anon_sym_var] = ACTIONS(204), [anon_sym_val] = ACTIONS(204), [anon_sym_LBRACK] = ACTIONS(206), @@ -6035,43 +6058,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(204), [anon_sym_assert] = ACTIONS(204), [anon_sym_try] = ACTIONS(204), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_STAR_EQ] = ACTIONS(206), - [anon_sym_SLASH_EQ] = ACTIONS(206), - [anon_sym_PERCENT_EQ] = ACTIONS(206), - [anon_sym_LT_LT_EQ] = ACTIONS(206), - [anon_sym_GT_GT_EQ] = ACTIONS(206), - [anon_sym_AMP_EQ] = ACTIONS(206), - [anon_sym_PIPE_EQ] = ACTIONS(206), - [anon_sym_CARET_EQ] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(206), - [anon_sym_BANG_EQ] = ACTIONS(206), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(206), - [anon_sym_LT_EQ_GT] = ACTIONS(206), - [anon_sym_LT_LT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(204), - [anon_sym_TILDE_GT_GT] = ACTIONS(206), - [anon_sym_CARET_GT_GT] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_STAR_EQ] = ACTIONS(220), + [anon_sym_SLASH_EQ] = ACTIONS(220), + [anon_sym_PERCENT_EQ] = ACTIONS(220), + [anon_sym_LT_LT_EQ] = ACTIONS(220), + [anon_sym_GT_GT_EQ] = ACTIONS(220), + [anon_sym_AMP_EQ] = ACTIONS(220), + [anon_sym_PIPE_EQ] = ACTIONS(220), + [anon_sym_CARET_EQ] = ACTIONS(220), + [anon_sym_QMARK] = ACTIONS(222), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_AMP] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), [anon_sym_TILDE] = ACTIONS(204), [anon_sym_lazy] = ACTIONS(204), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), [anon_sym_match] = ACTIONS(204), [sym_number_literal] = ACTIONS(206), [sym_string_literal] = ACTIONS(206), @@ -6082,92 +6105,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(13)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(226), - [anon_sym_SEMI] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(230), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_var] = ACTIONS(226), - [anon_sym_val] = ACTIONS(226), - [anon_sym_LBRACK] = ACTIONS(228), - [anon_sym_return] = ACTIONS(226), - [anon_sym_repeat] = ACTIONS(226), - [anon_sym_if] = ACTIONS(226), - [anon_sym_do] = ACTIONS(226), - [anon_sym_while] = ACTIONS(226), - [sym_break_statement] = ACTIONS(226), - [sym_continue_statement] = ACTIONS(226), - [anon_sym_throw] = ACTIONS(226), - [anon_sym_assert] = ACTIONS(226), - [anon_sym_try] = ACTIONS(226), - [anon_sym_PLUS_EQ] = ACTIONS(238), - [anon_sym_DASH_EQ] = ACTIONS(238), - [anon_sym_STAR_EQ] = ACTIONS(238), - [anon_sym_SLASH_EQ] = ACTIONS(238), - [anon_sym_PERCENT_EQ] = ACTIONS(238), - [anon_sym_LT_LT_EQ] = ACTIONS(238), - [anon_sym_GT_GT_EQ] = ACTIONS(238), - [anon_sym_AMP_EQ] = ACTIONS(238), - [anon_sym_PIPE_EQ] = ACTIONS(238), - [anon_sym_CARET_EQ] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_CARET] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(248), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_var] = ACTIONS(248), + [anon_sym_val] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_return] = ACTIONS(248), + [anon_sym_repeat] = ACTIONS(248), + [anon_sym_if] = ACTIONS(248), + [anon_sym_do] = ACTIONS(248), + [anon_sym_while] = ACTIONS(248), + [sym_break_statement] = ACTIONS(248), + [sym_continue_statement] = ACTIONS(248), + [anon_sym_throw] = ACTIONS(248), + [anon_sym_assert] = ACTIONS(248), + [anon_sym_try] = ACTIONS(248), + [anon_sym_PLUS_EQ] = ACTIONS(250), + [anon_sym_DASH_EQ] = ACTIONS(250), + [anon_sym_STAR_EQ] = ACTIONS(250), + [anon_sym_SLASH_EQ] = ACTIONS(250), + [anon_sym_PERCENT_EQ] = ACTIONS(250), + [anon_sym_LT_LT_EQ] = ACTIONS(250), + [anon_sym_GT_GT_EQ] = ACTIONS(250), + [anon_sym_AMP_EQ] = ACTIONS(250), + [anon_sym_PIPE_EQ] = ACTIONS(250), + [anon_sym_CARET_EQ] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT_EQ] = ACTIONS(248), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_LT_EQ_GT] = ACTIONS(250), [anon_sym_LT_LT] = ACTIONS(248), [anon_sym_GT_GT] = ACTIONS(248), [anon_sym_TILDE_GT_GT] = ACTIONS(250), [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lazy] = ACTIONS(226), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(226), - [sym_number_literal] = ACTIONS(228), - [sym_string_literal] = ACTIONS(228), - [anon_sym_true] = ACTIONS(226), - [anon_sym_false] = ACTIONS(226), - [sym_null_literal] = ACTIONS(226), - [sym_underscore] = ACTIONS(226), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_TILDE_SLASH] = ACTIONS(250), + [anon_sym_CARET_SLASH] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_lazy] = ACTIONS(248), + [anon_sym_as] = ACTIONS(248), + [anon_sym_is] = ACTIONS(248), + [anon_sym_BANGis] = ACTIONS(250), + [anon_sym_match] = ACTIONS(248), + [sym_number_literal] = ACTIONS(250), + [sym_string_literal] = ACTIONS(250), + [anon_sym_true] = ACTIONS(248), + [anon_sym_false] = ACTIONS(248), + [sym_null_literal] = ACTIONS(248), + [sym_underscore] = ACTIONS(248), [sym_comment] = ACTIONS(3), }, [STATE(14)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), [sym_identifier] = ACTIONS(252), [anon_sym_SEMI] = ACTIONS(254), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_LBRACE] = ACTIONS(254), [anon_sym_RBRACE] = ACTIONS(254), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(218), [anon_sym_var] = ACTIONS(252), [anon_sym_val] = ACTIONS(252), [anon_sym_LBRACK] = ACTIONS(254), @@ -6181,43 +6204,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(252), [anon_sym_assert] = ACTIONS(252), [anon_sym_try] = ACTIONS(252), - [anon_sym_PLUS_EQ] = ACTIONS(254), - [anon_sym_DASH_EQ] = ACTIONS(254), - [anon_sym_STAR_EQ] = ACTIONS(254), - [anon_sym_SLASH_EQ] = ACTIONS(254), - [anon_sym_PERCENT_EQ] = ACTIONS(254), - [anon_sym_LT_LT_EQ] = ACTIONS(254), - [anon_sym_GT_GT_EQ] = ACTIONS(254), - [anon_sym_AMP_EQ] = ACTIONS(254), - [anon_sym_PIPE_EQ] = ACTIONS(254), - [anon_sym_CARET_EQ] = ACTIONS(254), - [anon_sym_QMARK] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_AMP] = ACTIONS(252), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(254), - [anon_sym_BANG_EQ] = ACTIONS(254), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(254), - [anon_sym_LT_EQ_GT] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(254), - [anon_sym_CARET_GT_GT] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_TILDE_SLASH] = ACTIONS(254), - [anon_sym_CARET_SLASH] = ACTIONS(254), - [anon_sym_BANG] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_STAR_EQ] = ACTIONS(220), + [anon_sym_SLASH_EQ] = ACTIONS(220), + [anon_sym_PERCENT_EQ] = ACTIONS(220), + [anon_sym_LT_LT_EQ] = ACTIONS(220), + [anon_sym_GT_GT_EQ] = ACTIONS(220), + [anon_sym_AMP_EQ] = ACTIONS(220), + [anon_sym_PIPE_EQ] = ACTIONS(220), + [anon_sym_CARET_EQ] = ACTIONS(220), + [anon_sym_QMARK] = ACTIONS(222), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_AMP] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), [anon_sym_TILDE] = ACTIONS(252), [anon_sym_lazy] = ACTIONS(252), - [anon_sym_as] = ACTIONS(252), - [anon_sym_is] = ACTIONS(252), - [anon_sym_BANGis] = ACTIONS(254), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), [anon_sym_match] = ACTIONS(252), [sym_number_literal] = ACTIONS(254), [sym_string_literal] = ACTIONS(254), @@ -6228,19 +6251,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(15)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), [sym_identifier] = ACTIONS(256), [anon_sym_SEMI] = ACTIONS(258), - [anon_sym_EQ] = ACTIONS(230), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_LBRACE] = ACTIONS(258), [anon_sym_RBRACE] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(218), [anon_sym_var] = ACTIONS(256), [anon_sym_val] = ACTIONS(256), [anon_sym_LBRACK] = ACTIONS(258), @@ -6254,43 +6277,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(256), [anon_sym_assert] = ACTIONS(256), [anon_sym_try] = ACTIONS(256), - [anon_sym_PLUS_EQ] = ACTIONS(238), - [anon_sym_DASH_EQ] = ACTIONS(238), - [anon_sym_STAR_EQ] = ACTIONS(238), - [anon_sym_SLASH_EQ] = ACTIONS(238), - [anon_sym_PERCENT_EQ] = ACTIONS(238), - [anon_sym_LT_LT_EQ] = ACTIONS(238), - [anon_sym_GT_GT_EQ] = ACTIONS(238), - [anon_sym_AMP_EQ] = ACTIONS(238), - [anon_sym_PIPE_EQ] = ACTIONS(238), - [anon_sym_CARET_EQ] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_CARET] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_STAR_EQ] = ACTIONS(220), + [anon_sym_SLASH_EQ] = ACTIONS(220), + [anon_sym_PERCENT_EQ] = ACTIONS(220), + [anon_sym_LT_LT_EQ] = ACTIONS(220), + [anon_sym_GT_GT_EQ] = ACTIONS(220), + [anon_sym_AMP_EQ] = ACTIONS(220), + [anon_sym_PIPE_EQ] = ACTIONS(220), + [anon_sym_CARET_EQ] = ACTIONS(220), + [anon_sym_QMARK] = ACTIONS(222), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_AMP] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), [anon_sym_TILDE] = ACTIONS(256), [anon_sym_lazy] = ACTIONS(256), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), [anon_sym_match] = ACTIONS(256), [sym_number_literal] = ACTIONS(258), [sym_string_literal] = ACTIONS(258), @@ -6301,311 +6324,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(16)] = { - [sym__type_hint] = STATE(79), - [sym_type_instantiatedTs] = STATE(79), - [sym_tensor_type] = STATE(79), - [sym_tuple_type] = STATE(79), - [sym_parenthesized_type] = STATE(79), - [sym_fun_callable_type] = STATE(79), - [sym_nullable_type] = STATE(79), - [sym_union_type] = STATE(79), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), [sym_identifier] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(167), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(167), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_else] = ACTIONS(167), - [anon_sym_PLUS_EQ] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(165), - [anon_sym_STAR_EQ] = ACTIONS(165), - [anon_sym_SLASH_EQ] = ACTIONS(165), - [anon_sym_PERCENT_EQ] = ACTIONS(165), - [anon_sym_LT_LT_EQ] = ACTIONS(165), - [anon_sym_GT_GT_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(165), - [anon_sym_PIPE_EQ] = ACTIONS(165), - [anon_sym_CARET_EQ] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_LT_EQ_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(167), - [anon_sym_GT_GT] = ACTIONS(167), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_CARET_GT_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(167), - [anon_sym_PERCENT] = ACTIONS(167), - [anon_sym_TILDE_SLASH] = ACTIONS(165), - [anon_sym_CARET_SLASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_lazy] = ACTIONS(167), - [anon_sym_as] = ACTIONS(167), - [anon_sym_is] = ACTIONS(167), - [anon_sym_BANGis] = ACTIONS(165), - [anon_sym_match] = ACTIONS(167), - [anon_sym_EQ_GT] = ACTIONS(165), - [sym_number_literal] = ACTIONS(165), - [sym_string_literal] = ACTIONS(165), - [anon_sym_true] = ACTIONS(167), - [anon_sym_false] = ACTIONS(167), - [sym_null_literal] = ACTIONS(167), - [sym_underscore] = ACTIONS(167), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_var] = ACTIONS(260), + [anon_sym_val] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_return] = ACTIONS(260), + [anon_sym_repeat] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym_break_statement] = ACTIONS(260), + [sym_continue_statement] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(262), + [anon_sym_DASH_EQ] = ACTIONS(262), + [anon_sym_STAR_EQ] = ACTIONS(262), + [anon_sym_SLASH_EQ] = ACTIONS(262), + [anon_sym_PERCENT_EQ] = ACTIONS(262), + [anon_sym_LT_LT_EQ] = ACTIONS(262), + [anon_sym_GT_GT_EQ] = ACTIONS(262), + [anon_sym_AMP_EQ] = ACTIONS(262), + [anon_sym_PIPE_EQ] = ACTIONS(262), + [anon_sym_CARET_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lazy] = ACTIONS(260), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(260), + [sym_number_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [sym_null_literal] = ACTIONS(260), + [sym_underscore] = ACTIONS(260), [sym_comment] = ACTIONS(3), }, [STATE(17)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_PIPE] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_var] = ACTIONS(204), - [anon_sym_val] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_return] = ACTIONS(204), - [anon_sym_repeat] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_do] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [sym_break_statement] = ACTIONS(204), - [sym_continue_statement] = ACTIONS(204), - [anon_sym_throw] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_try] = ACTIONS(204), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_STAR_EQ] = ACTIONS(206), - [anon_sym_SLASH_EQ] = ACTIONS(206), - [anon_sym_PERCENT_EQ] = ACTIONS(206), - [anon_sym_LT_LT_EQ] = ACTIONS(206), - [anon_sym_GT_GT_EQ] = ACTIONS(206), - [anon_sym_AMP_EQ] = ACTIONS(206), - [anon_sym_PIPE_EQ] = ACTIONS(206), - [anon_sym_CARET_EQ] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(206), - [anon_sym_BANG_EQ] = ACTIONS(206), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(206), - [anon_sym_LT_EQ_GT] = ACTIONS(206), - [anon_sym_LT_LT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(204), - [anon_sym_TILDE_GT_GT] = ACTIONS(206), - [anon_sym_CARET_GT_GT] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(204), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_TILDE_SLASH] = ACTIONS(206), - [anon_sym_CARET_SLASH] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_lazy] = ACTIONS(204), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(204), - [sym_number_literal] = ACTIONS(206), - [sym_string_literal] = ACTIONS(206), - [anon_sym_true] = ACTIONS(204), - [anon_sym_false] = ACTIONS(204), - [sym_null_literal] = ACTIONS(204), - [sym_underscore] = ACTIONS(204), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_var] = ACTIONS(267), + [anon_sym_val] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_return] = ACTIONS(267), + [anon_sym_repeat] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [sym_break_statement] = ACTIONS(267), + [sym_continue_statement] = ACTIONS(267), + [anon_sym_throw] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_STAR_EQ] = ACTIONS(220), + [anon_sym_SLASH_EQ] = ACTIONS(220), + [anon_sym_PERCENT_EQ] = ACTIONS(220), + [anon_sym_LT_LT_EQ] = ACTIONS(220), + [anon_sym_GT_GT_EQ] = ACTIONS(220), + [anon_sym_AMP_EQ] = ACTIONS(220), + [anon_sym_PIPE_EQ] = ACTIONS(220), + [anon_sym_CARET_EQ] = ACTIONS(220), + [anon_sym_QMARK] = ACTIONS(222), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_AMP] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_lazy] = ACTIONS(267), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(267), + [sym_number_literal] = ACTIONS(269), + [sym_string_literal] = ACTIONS(269), + [anon_sym_true] = ACTIONS(267), + [anon_sym_false] = ACTIONS(267), + [sym_null_literal] = ACTIONS(267), + [sym_underscore] = ACTIONS(267), [sym_comment] = ACTIONS(3), }, [STATE(18)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(268), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_EQ] = ACTIONS(230), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_RBRACE] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_var] = ACTIONS(268), - [anon_sym_val] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(270), - [anon_sym_return] = ACTIONS(268), - [anon_sym_repeat] = ACTIONS(268), - [anon_sym_if] = ACTIONS(268), - [anon_sym_do] = ACTIONS(268), - [anon_sym_while] = ACTIONS(268), - [sym_break_statement] = ACTIONS(268), - [sym_continue_statement] = ACTIONS(268), - [anon_sym_throw] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(268), - [anon_sym_try] = ACTIONS(268), - [anon_sym_PLUS_EQ] = ACTIONS(238), - [anon_sym_DASH_EQ] = ACTIONS(238), - [anon_sym_STAR_EQ] = ACTIONS(238), - [anon_sym_SLASH_EQ] = ACTIONS(238), - [anon_sym_PERCENT_EQ] = ACTIONS(238), - [anon_sym_LT_LT_EQ] = ACTIONS(238), - [anon_sym_GT_GT_EQ] = ACTIONS(238), - [anon_sym_AMP_EQ] = ACTIONS(238), - [anon_sym_PIPE_EQ] = ACTIONS(238), - [anon_sym_CARET_EQ] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_CARET] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_lazy] = ACTIONS(268), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(268), - [sym_number_literal] = ACTIONS(270), - [sym_string_literal] = ACTIONS(270), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [sym_null_literal] = ACTIONS(268), - [sym_underscore] = ACTIONS(268), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_var] = ACTIONS(260), + [anon_sym_val] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_return] = ACTIONS(260), + [anon_sym_repeat] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym_break_statement] = ACTIONS(260), + [sym_continue_statement] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(262), + [anon_sym_DASH_EQ] = ACTIONS(262), + [anon_sym_STAR_EQ] = ACTIONS(262), + [anon_sym_SLASH_EQ] = ACTIONS(262), + [anon_sym_PERCENT_EQ] = ACTIONS(262), + [anon_sym_LT_LT_EQ] = ACTIONS(262), + [anon_sym_GT_GT_EQ] = ACTIONS(262), + [anon_sym_AMP_EQ] = ACTIONS(262), + [anon_sym_PIPE_EQ] = ACTIONS(262), + [anon_sym_CARET_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lazy] = ACTIONS(260), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(260), + [sym_number_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [sym_null_literal] = ACTIONS(260), + [sym_underscore] = ACTIONS(260), [sym_comment] = ACTIONS(3), }, [STATE(19)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_PIPE] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_var] = ACTIONS(204), - [anon_sym_val] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_return] = ACTIONS(204), - [anon_sym_repeat] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_do] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [sym_break_statement] = ACTIONS(204), - [sym_continue_statement] = ACTIONS(204), - [anon_sym_throw] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_try] = ACTIONS(204), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_STAR_EQ] = ACTIONS(206), - [anon_sym_SLASH_EQ] = ACTIONS(206), - [anon_sym_PERCENT_EQ] = ACTIONS(206), - [anon_sym_LT_LT_EQ] = ACTIONS(206), - [anon_sym_GT_GT_EQ] = ACTIONS(206), - [anon_sym_AMP_EQ] = ACTIONS(206), - [anon_sym_PIPE_EQ] = ACTIONS(206), - [anon_sym_CARET_EQ] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_lazy] = ACTIONS(204), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(204), - [sym_number_literal] = ACTIONS(206), - [sym_string_literal] = ACTIONS(206), - [anon_sym_true] = ACTIONS(204), - [anon_sym_false] = ACTIONS(204), - [sym_null_literal] = ACTIONS(204), - [sym_underscore] = ACTIONS(204), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_var] = ACTIONS(271), + [anon_sym_val] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_return] = ACTIONS(271), + [anon_sym_repeat] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [sym_break_statement] = ACTIONS(271), + [sym_continue_statement] = ACTIONS(271), + [anon_sym_throw] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_PLUS_EQ] = ACTIONS(273), + [anon_sym_DASH_EQ] = ACTIONS(273), + [anon_sym_STAR_EQ] = ACTIONS(273), + [anon_sym_SLASH_EQ] = ACTIONS(273), + [anon_sym_PERCENT_EQ] = ACTIONS(273), + [anon_sym_LT_LT_EQ] = ACTIONS(273), + [anon_sym_GT_GT_EQ] = ACTIONS(273), + [anon_sym_AMP_EQ] = ACTIONS(273), + [anon_sym_PIPE_EQ] = ACTIONS(273), + [anon_sym_CARET_EQ] = ACTIONS(273), + [anon_sym_QMARK] = ACTIONS(273), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ] = ACTIONS(273), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_LT_EQ_GT] = ACTIONS(273), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_lazy] = ACTIONS(271), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(271), + [sym_number_literal] = ACTIONS(273), + [sym_string_literal] = ACTIONS(273), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [sym_null_literal] = ACTIONS(271), + [sym_underscore] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [STATE(20)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(230), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_LBRACE] = ACTIONS(277), [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(218), [anon_sym_var] = ACTIONS(275), [anon_sym_val] = ACTIONS(275), [anon_sym_LBRACK] = ACTIONS(277), @@ -6619,43 +6642,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(275), [anon_sym_assert] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), - [anon_sym_PLUS_EQ] = ACTIONS(238), - [anon_sym_DASH_EQ] = ACTIONS(238), - [anon_sym_STAR_EQ] = ACTIONS(238), - [anon_sym_SLASH_EQ] = ACTIONS(238), - [anon_sym_PERCENT_EQ] = ACTIONS(238), - [anon_sym_LT_LT_EQ] = ACTIONS(238), - [anon_sym_GT_GT_EQ] = ACTIONS(238), - [anon_sym_AMP_EQ] = ACTIONS(238), - [anon_sym_PIPE_EQ] = ACTIONS(238), - [anon_sym_CARET_EQ] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_CARET] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_STAR_EQ] = ACTIONS(220), + [anon_sym_SLASH_EQ] = ACTIONS(220), + [anon_sym_PERCENT_EQ] = ACTIONS(220), + [anon_sym_LT_LT_EQ] = ACTIONS(220), + [anon_sym_GT_GT_EQ] = ACTIONS(220), + [anon_sym_AMP_EQ] = ACTIONS(220), + [anon_sym_PIPE_EQ] = ACTIONS(220), + [anon_sym_CARET_EQ] = ACTIONS(220), + [anon_sym_QMARK] = ACTIONS(222), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_AMP] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ_GT] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), [anon_sym_TILDE] = ACTIONS(275), [anon_sym_lazy] = ACTIONS(275), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), [anon_sym_match] = ACTIONS(275), [sym_number_literal] = ACTIONS(277), [sym_string_literal] = ACTIONS(277), @@ -6666,241 +6689,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(21)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_var] = ACTIONS(204), - [anon_sym_val] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_return] = ACTIONS(204), - [anon_sym_repeat] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_do] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [sym_break_statement] = ACTIONS(204), - [sym_continue_statement] = ACTIONS(204), - [anon_sym_throw] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_try] = ACTIONS(204), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_STAR_EQ] = ACTIONS(206), - [anon_sym_SLASH_EQ] = ACTIONS(206), - [anon_sym_PERCENT_EQ] = ACTIONS(206), - [anon_sym_LT_LT_EQ] = ACTIONS(206), - [anon_sym_GT_GT_EQ] = ACTIONS(206), - [anon_sym_AMP_EQ] = ACTIONS(206), - [anon_sym_PIPE_EQ] = ACTIONS(206), - [anon_sym_CARET_EQ] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_CARET] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_lazy] = ACTIONS(204), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(204), - [sym_number_literal] = ACTIONS(206), - [sym_string_literal] = ACTIONS(206), - [anon_sym_true] = ACTIONS(204), - [anon_sym_false] = ACTIONS(204), - [sym_null_literal] = ACTIONS(204), - [sym_underscore] = ACTIONS(204), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [anon_sym_val] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_return] = ACTIONS(260), + [anon_sym_repeat] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym_break_statement] = ACTIONS(260), + [sym_continue_statement] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(262), + [anon_sym_DASH_EQ] = ACTIONS(262), + [anon_sym_STAR_EQ] = ACTIONS(262), + [anon_sym_SLASH_EQ] = ACTIONS(262), + [anon_sym_PERCENT_EQ] = ACTIONS(262), + [anon_sym_LT_LT_EQ] = ACTIONS(262), + [anon_sym_GT_GT_EQ] = ACTIONS(262), + [anon_sym_AMP_EQ] = ACTIONS(262), + [anon_sym_PIPE_EQ] = ACTIONS(262), + [anon_sym_CARET_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_LT_EQ] = ACTIONS(260), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_LT_EQ_GT] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_TILDE_GT_GT] = ACTIONS(262), + [anon_sym_CARET_GT_GT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_TILDE_SLASH] = ACTIONS(262), + [anon_sym_CARET_SLASH] = ACTIONS(262), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lazy] = ACTIONS(260), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(260), + [sym_number_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [sym_null_literal] = ACTIONS(260), + [sym_underscore] = ACTIONS(260), [sym_comment] = ACTIONS(3), }, [STATE(22)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_PIPE] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_var] = ACTIONS(204), - [anon_sym_val] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_return] = ACTIONS(204), - [anon_sym_repeat] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_do] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [sym_break_statement] = ACTIONS(204), - [sym_continue_statement] = ACTIONS(204), - [anon_sym_throw] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_try] = ACTIONS(204), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_STAR_EQ] = ACTIONS(206), - [anon_sym_SLASH_EQ] = ACTIONS(206), - [anon_sym_PERCENT_EQ] = ACTIONS(206), - [anon_sym_LT_LT_EQ] = ACTIONS(206), - [anon_sym_GT_GT_EQ] = ACTIONS(206), - [anon_sym_AMP_EQ] = ACTIONS(206), - [anon_sym_PIPE_EQ] = ACTIONS(206), - [anon_sym_CARET_EQ] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(206), - [anon_sym_BANG_EQ] = ACTIONS(206), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(206), - [anon_sym_LT_EQ_GT] = ACTIONS(206), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_lazy] = ACTIONS(204), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(204), - [sym_number_literal] = ACTIONS(206), - [sym_string_literal] = ACTIONS(206), - [anon_sym_true] = ACTIONS(204), - [anon_sym_false] = ACTIONS(204), - [sym_null_literal] = ACTIONS(204), - [sym_underscore] = ACTIONS(204), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [anon_sym_val] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_return] = ACTIONS(260), + [anon_sym_repeat] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym_break_statement] = ACTIONS(260), + [sym_continue_statement] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(262), + [anon_sym_DASH_EQ] = ACTIONS(262), + [anon_sym_STAR_EQ] = ACTIONS(262), + [anon_sym_SLASH_EQ] = ACTIONS(262), + [anon_sym_PERCENT_EQ] = ACTIONS(262), + [anon_sym_LT_LT_EQ] = ACTIONS(262), + [anon_sym_GT_GT_EQ] = ACTIONS(262), + [anon_sym_AMP_EQ] = ACTIONS(262), + [anon_sym_PIPE_EQ] = ACTIONS(262), + [anon_sym_CARET_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_LT_EQ] = ACTIONS(260), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_LT_EQ_GT] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_TILDE_GT_GT] = ACTIONS(262), + [anon_sym_CARET_GT_GT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lazy] = ACTIONS(260), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(260), + [sym_number_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [sym_null_literal] = ACTIONS(260), + [sym_underscore] = ACTIONS(260), [sym_comment] = ACTIONS(3), }, [STATE(23)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_PIPE] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_var] = ACTIONS(204), - [anon_sym_val] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_return] = ACTIONS(204), - [anon_sym_repeat] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_do] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [sym_break_statement] = ACTIONS(204), - [sym_continue_statement] = ACTIONS(204), - [anon_sym_throw] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_try] = ACTIONS(204), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_STAR_EQ] = ACTIONS(206), - [anon_sym_SLASH_EQ] = ACTIONS(206), - [anon_sym_PERCENT_EQ] = ACTIONS(206), - [anon_sym_LT_LT_EQ] = ACTIONS(206), - [anon_sym_GT_GT_EQ] = ACTIONS(206), - [anon_sym_AMP_EQ] = ACTIONS(206), - [anon_sym_PIPE_EQ] = ACTIONS(206), - [anon_sym_CARET_EQ] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(206), - [anon_sym_BANG_EQ] = ACTIONS(206), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(206), - [anon_sym_LT_EQ_GT] = ACTIONS(206), - [anon_sym_LT_LT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(204), - [anon_sym_TILDE_GT_GT] = ACTIONS(206), - [anon_sym_CARET_GT_GT] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_lazy] = ACTIONS(204), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(204), - [sym_number_literal] = ACTIONS(206), - [sym_string_literal] = ACTIONS(206), - [anon_sym_true] = ACTIONS(204), - [anon_sym_false] = ACTIONS(204), - [sym_null_literal] = ACTIONS(204), - [sym_underscore] = ACTIONS(204), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [anon_sym_val] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_return] = ACTIONS(260), + [anon_sym_repeat] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym_break_statement] = ACTIONS(260), + [sym_continue_statement] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(262), + [anon_sym_DASH_EQ] = ACTIONS(262), + [anon_sym_STAR_EQ] = ACTIONS(262), + [anon_sym_SLASH_EQ] = ACTIONS(262), + [anon_sym_PERCENT_EQ] = ACTIONS(262), + [anon_sym_LT_LT_EQ] = ACTIONS(262), + [anon_sym_GT_GT_EQ] = ACTIONS(262), + [anon_sym_AMP_EQ] = ACTIONS(262), + [anon_sym_PIPE_EQ] = ACTIONS(262), + [anon_sym_CARET_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_LT_EQ] = ACTIONS(260), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_LT_EQ_GT] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_TILDE_GT_GT] = ACTIONS(262), + [anon_sym_CARET_GT_GT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lazy] = ACTIONS(260), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(260), + [sym_number_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [sym_null_literal] = ACTIONS(260), + [sym_underscore] = ACTIONS(260), [sym_comment] = ACTIONS(3), }, [STATE(24)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), + [sym__brackets_lt_gt] = STATE(373), + [sym_argument_list] = STATE(60), + [sym_instantiationT_list] = STATE(61), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [anon_sym_val] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_return] = ACTIONS(260), + [anon_sym_repeat] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym_break_statement] = ACTIONS(260), + [sym_continue_statement] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(262), + [anon_sym_DASH_EQ] = ACTIONS(262), + [anon_sym_STAR_EQ] = ACTIONS(262), + [anon_sym_SLASH_EQ] = ACTIONS(262), + [anon_sym_PERCENT_EQ] = ACTIONS(262), + [anon_sym_LT_LT_EQ] = ACTIONS(262), + [anon_sym_GT_GT_EQ] = ACTIONS(262), + [anon_sym_AMP_EQ] = ACTIONS(262), + [anon_sym_PIPE_EQ] = ACTIONS(262), + [anon_sym_CARET_EQ] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_LT_EQ] = ACTIONS(260), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_LT_EQ_GT] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(230), + [anon_sym_GT_GT] = ACTIONS(230), + [anon_sym_TILDE_GT_GT] = ACTIONS(232), + [anon_sym_CARET_GT_GT] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_TILDE_SLASH] = ACTIONS(238), + [anon_sym_CARET_SLASH] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lazy] = ACTIONS(260), + [anon_sym_as] = ACTIONS(242), + [anon_sym_is] = ACTIONS(244), + [anon_sym_BANGis] = ACTIONS(246), + [anon_sym_match] = ACTIONS(260), + [sym_number_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [sym_null_literal] = ACTIONS(260), + [sym_underscore] = ACTIONS(260), + [sym_comment] = ACTIONS(3), + }, + [STATE(25)] = { + [sym_instantiationT_list] = STATE(27), [sym_identifier] = ACTIONS(279), - [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_SEMI] = ACTIONS(202), [anon_sym_EQ] = ACTIONS(279), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(202), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(202), + [anon_sym_LT] = ACTIONS(281), [anon_sym_GT] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(202), [anon_sym_var] = ACTIONS(279), [anon_sym_val] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(202), [anon_sym_return] = ACTIONS(279), [anon_sym_repeat] = ACTIONS(279), [anon_sym_if] = ACTIONS(279), @@ -6911,200 +7006,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(279), [anon_sym_assert] = ACTIONS(279), [anon_sym_try] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_PERCENT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_CARET_EQ] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_QMARK] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(202), + [anon_sym_PIPE_PIPE] = ACTIONS(202), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(202), + [anon_sym_BANG_EQ] = ACTIONS(202), [anon_sym_LT_EQ] = ACTIONS(279), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_LT_EQ_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(202), + [anon_sym_LT_EQ_GT] = ACTIONS(202), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_TILDE_GT_GT] = ACTIONS(202), + [anon_sym_CARET_GT_GT] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_TILDE_SLASH] = ACTIONS(202), + [anon_sym_CARET_SLASH] = ACTIONS(202), + [anon_sym_BANG] = ACTIONS(279), [anon_sym_TILDE] = ACTIONS(279), [anon_sym_lazy] = ACTIONS(279), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), + [anon_sym_as] = ACTIONS(279), + [anon_sym_is] = ACTIONS(279), + [anon_sym_BANGis] = ACTIONS(202), [anon_sym_match] = ACTIONS(279), - [sym_number_literal] = ACTIONS(281), - [sym_string_literal] = ACTIONS(281), + [sym_number_literal] = ACTIONS(202), + [sym_string_literal] = ACTIONS(202), [anon_sym_true] = ACTIONS(279), [anon_sym_false] = ACTIONS(279), [sym_null_literal] = ACTIONS(279), [sym_underscore] = ACTIONS(279), [sym_comment] = ACTIONS(3), }, - [STATE(25)] = { - [sym__type_hint] = STATE(79), - [sym_type_instantiatedTs] = STATE(79), - [sym_tensor_type] = STATE(79), - [sym_tuple_type] = STATE(79), - [sym_parenthesized_type] = STATE(79), - [sym_fun_callable_type] = STATE(79), - [sym_nullable_type] = STATE(79), - [sym_union_type] = STATE(79), - [sym_identifier] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(175), - [anon_sym_EQ] = ACTIONS(177), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(175), - [anon_sym_DOT] = ACTIONS(175), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_GT] = ACTIONS(177), - [anon_sym_DASH_GT] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_RBRACK] = ACTIONS(175), - [anon_sym_else] = ACTIONS(177), - [anon_sym_PLUS_EQ] = ACTIONS(175), - [anon_sym_DASH_EQ] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(175), - [anon_sym_SLASH_EQ] = ACTIONS(175), - [anon_sym_PERCENT_EQ] = ACTIONS(175), - [anon_sym_LT_LT_EQ] = ACTIONS(175), - [anon_sym_GT_GT_EQ] = ACTIONS(175), - [anon_sym_AMP_EQ] = ACTIONS(175), - [anon_sym_PIPE_EQ] = ACTIONS(175), - [anon_sym_CARET_EQ] = ACTIONS(175), - [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_AMP_AMP] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(175), - [anon_sym_AMP] = ACTIONS(177), - [anon_sym_CARET] = ACTIONS(177), - [anon_sym_EQ_EQ] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(175), - [anon_sym_LT_EQ] = ACTIONS(177), - [anon_sym_GT_EQ] = ACTIONS(175), - [anon_sym_LT_EQ_GT] = ACTIONS(175), - [anon_sym_LT_LT] = ACTIONS(177), - [anon_sym_GT_GT] = ACTIONS(177), - [anon_sym_TILDE_GT_GT] = ACTIONS(175), - [anon_sym_CARET_GT_GT] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_STAR] = ACTIONS(177), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(177), - [anon_sym_TILDE_SLASH] = ACTIONS(175), - [anon_sym_CARET_SLASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_lazy] = ACTIONS(177), - [anon_sym_as] = ACTIONS(177), - [anon_sym_is] = ACTIONS(177), - [anon_sym_BANGis] = ACTIONS(175), - [anon_sym_match] = ACTIONS(177), - [anon_sym_EQ_GT] = ACTIONS(175), - [sym_number_literal] = ACTIONS(175), - [sym_string_literal] = ACTIONS(175), - [anon_sym_true] = ACTIONS(177), - [anon_sym_false] = ACTIONS(177), - [sym_null_literal] = ACTIONS(177), - [sym_underscore] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - }, [STATE(26)] = { - [sym__brackets_lt_gt] = STATE(324), - [sym_argument_list] = STATE(67), - [sym_instantiationT_list] = STATE(68), - [sym_identifier] = ACTIONS(283), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(230), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_var] = ACTIONS(283), - [anon_sym_val] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_return] = ACTIONS(283), - [anon_sym_repeat] = ACTIONS(283), - [anon_sym_if] = ACTIONS(283), - [anon_sym_do] = ACTIONS(283), - [anon_sym_while] = ACTIONS(283), - [sym_break_statement] = ACTIONS(283), - [sym_continue_statement] = ACTIONS(283), - [anon_sym_throw] = ACTIONS(283), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_try] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(238), - [anon_sym_DASH_EQ] = ACTIONS(238), - [anon_sym_STAR_EQ] = ACTIONS(238), - [anon_sym_SLASH_EQ] = ACTIONS(238), - [anon_sym_PERCENT_EQ] = ACTIONS(238), - [anon_sym_LT_LT_EQ] = ACTIONS(238), - [anon_sym_GT_GT_EQ] = ACTIONS(238), - [anon_sym_AMP_EQ] = ACTIONS(238), - [anon_sym_PIPE_EQ] = ACTIONS(238), - [anon_sym_CARET_EQ] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_CARET] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ_GT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_TILDE_GT_GT] = ACTIONS(250), - [anon_sym_CARET_GT_GT] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_TILDE_SLASH] = ACTIONS(216), - [anon_sym_CARET_SLASH] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(283), - [anon_sym_lazy] = ACTIONS(283), - [anon_sym_as] = ACTIONS(220), - [anon_sym_is] = ACTIONS(222), - [anon_sym_BANGis] = ACTIONS(224), - [anon_sym_match] = ACTIONS(283), - [sym_number_literal] = ACTIONS(285), - [sym_string_literal] = ACTIONS(285), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [sym_null_literal] = ACTIONS(283), - [sym_underscore] = ACTIONS(283), - [sym_comment] = ACTIONS(3), - }, - [STATE(27)] = { - [sym_instantiationT_list] = STATE(456), + [sym_instantiationT_list] = STATE(461), [sym_identifier] = ACTIONS(182), [anon_sym_SEMI] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(182), @@ -7175,1354 +7124,1422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_underscore] = ACTIONS(182), [sym_comment] = ACTIONS(3), }, - [STATE(28)] = { - [sym_instantiationT_list] = STATE(43), - [sym_identifier] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(202), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_RBRACE] = ACTIONS(202), - [anon_sym_DOT] = ACTIONS(202), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_GT] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(202), - [anon_sym_var] = ACTIONS(287), - [anon_sym_val] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(202), - [anon_sym_return] = ACTIONS(287), - [anon_sym_repeat] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [sym_break_statement] = ACTIONS(287), - [sym_continue_statement] = ACTIONS(287), - [anon_sym_throw] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_QMARK] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(202), - [anon_sym_PIPE_PIPE] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(202), - [anon_sym_BANG_EQ] = ACTIONS(202), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(202), - [anon_sym_LT_EQ_GT] = ACTIONS(202), - [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_TILDE_GT_GT] = ACTIONS(202), - [anon_sym_CARET_GT_GT] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_TILDE_SLASH] = ACTIONS(202), - [anon_sym_CARET_SLASH] = ACTIONS(202), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(287), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_as] = ACTIONS(287), - [anon_sym_is] = ACTIONS(287), - [anon_sym_BANGis] = ACTIONS(202), - [anon_sym_match] = ACTIONS(287), - [sym_number_literal] = ACTIONS(202), - [sym_string_literal] = ACTIONS(202), - [anon_sym_true] = ACTIONS(287), - [anon_sym_false] = ACTIONS(287), - [sym_null_literal] = ACTIONS(287), - [sym_underscore] = ACTIONS(287), + [STATE(27)] = { + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(286), + [anon_sym_var] = ACTIONS(284), + [anon_sym_val] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_return] = ACTIONS(284), + [anon_sym_repeat] = ACTIONS(284), + [anon_sym_if] = ACTIONS(284), + [anon_sym_do] = ACTIONS(284), + [anon_sym_while] = ACTIONS(284), + [sym_break_statement] = ACTIONS(284), + [sym_continue_statement] = ACTIONS(284), + [anon_sym_throw] = ACTIONS(284), + [anon_sym_assert] = ACTIONS(284), + [anon_sym_try] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(286), + [anon_sym_DASH_EQ] = ACTIONS(286), + [anon_sym_STAR_EQ] = ACTIONS(286), + [anon_sym_SLASH_EQ] = ACTIONS(286), + [anon_sym_PERCENT_EQ] = ACTIONS(286), + [anon_sym_LT_LT_EQ] = ACTIONS(286), + [anon_sym_GT_GT_EQ] = ACTIONS(286), + [anon_sym_AMP_EQ] = ACTIONS(286), + [anon_sym_PIPE_EQ] = ACTIONS(286), + [anon_sym_CARET_EQ] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_LT_EQ_GT] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_TILDE_GT_GT] = ACTIONS(286), + [anon_sym_CARET_GT_GT] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_TILDE_SLASH] = ACTIONS(286), + [anon_sym_CARET_SLASH] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_lazy] = ACTIONS(284), + [anon_sym_as] = ACTIONS(284), + [anon_sym_is] = ACTIONS(284), + [anon_sym_BANGis] = ACTIONS(286), + [anon_sym_match] = ACTIONS(284), + [sym_number_literal] = ACTIONS(286), + [sym_string_literal] = ACTIONS(286), + [anon_sym_true] = ACTIONS(284), + [anon_sym_false] = ACTIONS(284), + [sym_null_literal] = ACTIONS(284), + [sym_underscore] = ACTIONS(284), [sym_comment] = ACTIONS(3), }, - [STATE(29)] = { - [sym_identifier] = ACTIONS(292), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_EQ] = ACTIONS(292), + [STATE(28)] = { + [sym_identifier] = ACTIONS(288), + [anon_sym_SEMI] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(288), [anon_sym_PIPE] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(294), - [anon_sym_RBRACE] = ACTIONS(294), - [anon_sym_DOT] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_RBRACE] = ACTIONS(290), + [anon_sym_DOT] = ACTIONS(290), + [anon_sym_LT] = ACTIONS(288), + [anon_sym_GT] = ACTIONS(288), [anon_sym_DASH_GT] = ACTIONS(294), - [anon_sym_var] = ACTIONS(292), - [anon_sym_val] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(294), - [anon_sym_return] = ACTIONS(292), - [anon_sym_repeat] = ACTIONS(292), - [anon_sym_if] = ACTIONS(292), - [anon_sym_do] = ACTIONS(292), - [anon_sym_while] = ACTIONS(292), - [sym_break_statement] = ACTIONS(292), - [sym_continue_statement] = ACTIONS(292), - [anon_sym_throw] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(292), - [anon_sym_try] = ACTIONS(292), - [anon_sym_PLUS_EQ] = ACTIONS(294), - [anon_sym_DASH_EQ] = ACTIONS(294), - [anon_sym_STAR_EQ] = ACTIONS(294), - [anon_sym_SLASH_EQ] = ACTIONS(294), - [anon_sym_PERCENT_EQ] = ACTIONS(294), - [anon_sym_LT_LT_EQ] = ACTIONS(294), - [anon_sym_GT_GT_EQ] = ACTIONS(294), - [anon_sym_AMP_EQ] = ACTIONS(294), - [anon_sym_PIPE_EQ] = ACTIONS(294), - [anon_sym_CARET_EQ] = ACTIONS(294), - [anon_sym_QMARK] = ACTIONS(294), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_PIPE_PIPE] = ACTIONS(294), - [anon_sym_AMP] = ACTIONS(292), - [anon_sym_CARET] = ACTIONS(292), - [anon_sym_EQ_EQ] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(292), - [anon_sym_GT_EQ] = ACTIONS(294), - [anon_sym_LT_EQ_GT] = ACTIONS(294), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_TILDE_GT_GT] = ACTIONS(294), - [anon_sym_CARET_GT_GT] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(292), - [anon_sym_SLASH] = ACTIONS(292), - [anon_sym_PERCENT] = ACTIONS(292), - [anon_sym_TILDE_SLASH] = ACTIONS(294), - [anon_sym_CARET_SLASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_lazy] = ACTIONS(292), - [anon_sym_as] = ACTIONS(292), - [anon_sym_is] = ACTIONS(292), - [anon_sym_BANGis] = ACTIONS(294), - [anon_sym_match] = ACTIONS(292), - [sym_number_literal] = ACTIONS(294), - [sym_string_literal] = ACTIONS(294), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [sym_null_literal] = ACTIONS(292), - [sym_underscore] = ACTIONS(292), + [anon_sym_var] = ACTIONS(288), + [anon_sym_val] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(290), + [anon_sym_return] = ACTIONS(288), + [anon_sym_repeat] = ACTIONS(288), + [anon_sym_if] = ACTIONS(288), + [anon_sym_do] = ACTIONS(288), + [anon_sym_while] = ACTIONS(288), + [sym_break_statement] = ACTIONS(288), + [sym_continue_statement] = ACTIONS(288), + [anon_sym_throw] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(288), + [anon_sym_try] = ACTIONS(288), + [anon_sym_PLUS_EQ] = ACTIONS(290), + [anon_sym_DASH_EQ] = ACTIONS(290), + [anon_sym_STAR_EQ] = ACTIONS(290), + [anon_sym_SLASH_EQ] = ACTIONS(290), + [anon_sym_PERCENT_EQ] = ACTIONS(290), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_CARET_EQ] = ACTIONS(290), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(288), + [anon_sym_EQ_EQ] = ACTIONS(290), + [anon_sym_BANG_EQ] = ACTIONS(290), + [anon_sym_LT_EQ] = ACTIONS(288), + [anon_sym_GT_EQ] = ACTIONS(290), + [anon_sym_LT_EQ_GT] = ACTIONS(290), + [anon_sym_LT_LT] = ACTIONS(288), + [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_TILDE_GT_GT] = ACTIONS(290), + [anon_sym_CARET_GT_GT] = ACTIONS(290), + [anon_sym_DASH] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_SLASH] = ACTIONS(288), + [anon_sym_PERCENT] = ACTIONS(288), + [anon_sym_TILDE_SLASH] = ACTIONS(290), + [anon_sym_CARET_SLASH] = ACTIONS(290), + [anon_sym_BANG] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(288), + [anon_sym_lazy] = ACTIONS(288), + [anon_sym_as] = ACTIONS(288), + [anon_sym_is] = ACTIONS(288), + [anon_sym_BANGis] = ACTIONS(290), + [anon_sym_match] = ACTIONS(288), + [sym_number_literal] = ACTIONS(290), + [sym_string_literal] = ACTIONS(290), + [anon_sym_true] = ACTIONS(288), + [anon_sym_false] = ACTIONS(288), + [sym_null_literal] = ACTIONS(288), + [sym_underscore] = ACTIONS(288), + [sym_comment] = ACTIONS(3), + }, + [STATE(29)] = { + [sym_identifier] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(301), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(301), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(305), + [anon_sym_var] = ACTIONS(299), + [anon_sym_val] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(301), + [anon_sym_return] = ACTIONS(299), + [anon_sym_repeat] = ACTIONS(299), + [anon_sym_if] = ACTIONS(299), + [anon_sym_do] = ACTIONS(299), + [anon_sym_while] = ACTIONS(299), + [sym_break_statement] = ACTIONS(299), + [sym_continue_statement] = ACTIONS(299), + [anon_sym_throw] = ACTIONS(299), + [anon_sym_assert] = ACTIONS(299), + [anon_sym_try] = ACTIONS(299), + [anon_sym_PLUS_EQ] = ACTIONS(301), + [anon_sym_DASH_EQ] = ACTIONS(301), + [anon_sym_STAR_EQ] = ACTIONS(301), + [anon_sym_SLASH_EQ] = ACTIONS(301), + [anon_sym_PERCENT_EQ] = ACTIONS(301), + [anon_sym_LT_LT_EQ] = ACTIONS(301), + [anon_sym_GT_GT_EQ] = ACTIONS(301), + [anon_sym_AMP_EQ] = ACTIONS(301), + [anon_sym_PIPE_EQ] = ACTIONS(301), + [anon_sym_CARET_EQ] = ACTIONS(301), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(301), + [anon_sym_PIPE_PIPE] = ACTIONS(301), + [anon_sym_AMP] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(301), + [anon_sym_BANG_EQ] = ACTIONS(301), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [anon_sym_LT_EQ_GT] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(299), + [anon_sym_GT_GT] = ACTIONS(299), + [anon_sym_TILDE_GT_GT] = ACTIONS(301), + [anon_sym_CARET_GT_GT] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(299), + [anon_sym_PERCENT] = ACTIONS(299), + [anon_sym_TILDE_SLASH] = ACTIONS(301), + [anon_sym_CARET_SLASH] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_lazy] = ACTIONS(299), + [anon_sym_as] = ACTIONS(299), + [anon_sym_is] = ACTIONS(299), + [anon_sym_BANGis] = ACTIONS(301), + [anon_sym_match] = ACTIONS(299), + [sym_number_literal] = ACTIONS(301), + [sym_string_literal] = ACTIONS(301), + [anon_sym_true] = ACTIONS(299), + [anon_sym_false] = ACTIONS(299), + [sym_null_literal] = ACTIONS(299), + [sym_underscore] = ACTIONS(299), [sym_comment] = ACTIONS(3), }, [STATE(30)] = { - [sym_identifier] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(298), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(296), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_RBRACE] = ACTIONS(298), - [anon_sym_DOT] = ACTIONS(298), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(298), - [anon_sym_var] = ACTIONS(296), - [anon_sym_val] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_return] = ACTIONS(296), - [anon_sym_repeat] = ACTIONS(296), - [anon_sym_if] = ACTIONS(296), - [anon_sym_do] = ACTIONS(296), - [anon_sym_while] = ACTIONS(296), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), - [anon_sym_throw] = ACTIONS(296), - [anon_sym_assert] = ACTIONS(296), - [anon_sym_try] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_QMARK] = ACTIONS(298), - [anon_sym_AMP_AMP] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(296), - [anon_sym_EQ_EQ] = ACTIONS(298), - [anon_sym_BANG_EQ] = ACTIONS(298), - [anon_sym_LT_EQ] = ACTIONS(296), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_LT_EQ_GT] = ACTIONS(298), - [anon_sym_LT_LT] = ACTIONS(296), - [anon_sym_GT_GT] = ACTIONS(296), - [anon_sym_TILDE_GT_GT] = ACTIONS(298), - [anon_sym_CARET_GT_GT] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(296), - [anon_sym_PERCENT] = ACTIONS(296), - [anon_sym_TILDE_SLASH] = ACTIONS(298), - [anon_sym_CARET_SLASH] = ACTIONS(298), - [anon_sym_BANG] = ACTIONS(296), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_lazy] = ACTIONS(296), - [anon_sym_as] = ACTIONS(296), - [anon_sym_is] = ACTIONS(296), - [anon_sym_BANGis] = ACTIONS(298), - [anon_sym_match] = ACTIONS(296), - [sym_number_literal] = ACTIONS(298), - [sym_string_literal] = ACTIONS(298), - [anon_sym_true] = ACTIONS(296), - [anon_sym_false] = ACTIONS(296), - [sym_null_literal] = ACTIONS(296), - [sym_underscore] = ACTIONS(296), + [sym_identifier] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(305), + [anon_sym_var] = ACTIONS(307), + [anon_sym_val] = ACTIONS(307), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_return] = ACTIONS(307), + [anon_sym_repeat] = ACTIONS(307), + [anon_sym_if] = ACTIONS(307), + [anon_sym_do] = ACTIONS(307), + [anon_sym_while] = ACTIONS(307), + [sym_break_statement] = ACTIONS(307), + [sym_continue_statement] = ACTIONS(307), + [anon_sym_throw] = ACTIONS(307), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_try] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(307), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_EQ_GT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_TILDE_GT_GT] = ACTIONS(309), + [anon_sym_CARET_GT_GT] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_TILDE_SLASH] = ACTIONS(309), + [anon_sym_CARET_SLASH] = ACTIONS(309), + [anon_sym_BANG] = ACTIONS(307), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_lazy] = ACTIONS(307), + [anon_sym_as] = ACTIONS(307), + [anon_sym_is] = ACTIONS(307), + [anon_sym_BANGis] = ACTIONS(309), + [anon_sym_match] = ACTIONS(307), + [sym_number_literal] = ACTIONS(309), + [sym_string_literal] = ACTIONS(309), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [sym_null_literal] = ACTIONS(307), + [sym_underscore] = ACTIONS(307), [sym_comment] = ACTIONS(3), }, [STATE(31)] = { - [sym_identifier] = ACTIONS(300), - [anon_sym_SEMI] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_RBRACE] = ACTIONS(302), - [anon_sym_DOT] = ACTIONS(302), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_DASH_GT] = ACTIONS(302), - [anon_sym_var] = ACTIONS(300), - [anon_sym_val] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(302), - [anon_sym_return] = ACTIONS(300), - [anon_sym_repeat] = ACTIONS(300), - [anon_sym_if] = ACTIONS(300), - [anon_sym_do] = ACTIONS(300), - [anon_sym_while] = ACTIONS(300), - [sym_break_statement] = ACTIONS(300), - [sym_continue_statement] = ACTIONS(300), - [anon_sym_throw] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(300), - [anon_sym_try] = ACTIONS(300), - [anon_sym_PLUS_EQ] = ACTIONS(302), - [anon_sym_DASH_EQ] = ACTIONS(302), - [anon_sym_STAR_EQ] = ACTIONS(302), - [anon_sym_SLASH_EQ] = ACTIONS(302), - [anon_sym_PERCENT_EQ] = ACTIONS(302), - [anon_sym_LT_LT_EQ] = ACTIONS(302), - [anon_sym_GT_GT_EQ] = ACTIONS(302), - [anon_sym_AMP_EQ] = ACTIONS(302), - [anon_sym_PIPE_EQ] = ACTIONS(302), - [anon_sym_CARET_EQ] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(302), - [anon_sym_PIPE_PIPE] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(302), - [anon_sym_BANG_EQ] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(302), - [anon_sym_LT_EQ_GT] = ACTIONS(302), - [anon_sym_LT_LT] = ACTIONS(300), - [anon_sym_GT_GT] = ACTIONS(300), - [anon_sym_TILDE_GT_GT] = ACTIONS(302), - [anon_sym_CARET_GT_GT] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(300), - [anon_sym_PERCENT] = ACTIONS(300), - [anon_sym_TILDE_SLASH] = ACTIONS(302), - [anon_sym_CARET_SLASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_lazy] = ACTIONS(300), - [anon_sym_as] = ACTIONS(300), - [anon_sym_is] = ACTIONS(300), - [anon_sym_BANGis] = ACTIONS(302), - [anon_sym_match] = ACTIONS(300), - [sym_number_literal] = ACTIONS(302), - [sym_string_literal] = ACTIONS(302), - [anon_sym_true] = ACTIONS(300), - [anon_sym_false] = ACTIONS(300), - [sym_null_literal] = ACTIONS(300), - [sym_underscore] = ACTIONS(300), + [sym_match_body] = STATE(55), + [sym_identifier] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), + [anon_sym_var] = ACTIONS(311), + [anon_sym_val] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_return] = ACTIONS(311), + [anon_sym_repeat] = ACTIONS(311), + [anon_sym_if] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [sym_break_statement] = ACTIONS(311), + [sym_continue_statement] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(313), + [anon_sym_DASH_EQ] = ACTIONS(313), + [anon_sym_STAR_EQ] = ACTIONS(313), + [anon_sym_SLASH_EQ] = ACTIONS(313), + [anon_sym_PERCENT_EQ] = ACTIONS(313), + [anon_sym_LT_LT_EQ] = ACTIONS(313), + [anon_sym_GT_GT_EQ] = ACTIONS(313), + [anon_sym_AMP_EQ] = ACTIONS(313), + [anon_sym_PIPE_EQ] = ACTIONS(313), + [anon_sym_CARET_EQ] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(313), + [anon_sym_BANG_EQ] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(313), + [anon_sym_LT_EQ_GT] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_TILDE_GT_GT] = ACTIONS(313), + [anon_sym_CARET_GT_GT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_TILDE_SLASH] = ACTIONS(313), + [anon_sym_CARET_SLASH] = ACTIONS(313), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_lazy] = ACTIONS(311), + [anon_sym_as] = ACTIONS(311), + [anon_sym_is] = ACTIONS(311), + [anon_sym_BANGis] = ACTIONS(313), + [anon_sym_match] = ACTIONS(311), + [sym_number_literal] = ACTIONS(313), + [sym_string_literal] = ACTIONS(313), + [anon_sym_true] = ACTIONS(311), + [anon_sym_false] = ACTIONS(311), + [sym_null_literal] = ACTIONS(311), + [sym_underscore] = ACTIONS(311), [sym_comment] = ACTIONS(3), }, [STATE(32)] = { - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_PIPE] = ACTIONS(304), - [anon_sym_LPAREN] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(306), - [anon_sym_RBRACE] = ACTIONS(306), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_var] = ACTIONS(304), - [anon_sym_val] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_return] = ACTIONS(304), - [anon_sym_repeat] = ACTIONS(304), - [anon_sym_if] = ACTIONS(304), - [anon_sym_do] = ACTIONS(304), - [anon_sym_while] = ACTIONS(304), - [sym_break_statement] = ACTIONS(304), - [sym_continue_statement] = ACTIONS(304), - [anon_sym_throw] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(304), - [anon_sym_try] = ACTIONS(304), - [anon_sym_PLUS_EQ] = ACTIONS(306), - [anon_sym_DASH_EQ] = ACTIONS(306), - [anon_sym_STAR_EQ] = ACTIONS(306), - [anon_sym_SLASH_EQ] = ACTIONS(306), - [anon_sym_PERCENT_EQ] = ACTIONS(306), - [anon_sym_LT_LT_EQ] = ACTIONS(306), - [anon_sym_GT_GT_EQ] = ACTIONS(306), - [anon_sym_AMP_EQ] = ACTIONS(306), - [anon_sym_PIPE_EQ] = ACTIONS(306), - [anon_sym_CARET_EQ] = ACTIONS(306), - [anon_sym_QMARK] = ACTIONS(306), - [anon_sym_AMP_AMP] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(306), - [anon_sym_AMP] = ACTIONS(304), - [anon_sym_CARET] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(304), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_LT_EQ_GT] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_TILDE_GT_GT] = ACTIONS(306), - [anon_sym_CARET_GT_GT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_SLASH] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_TILDE_SLASH] = ACTIONS(306), - [anon_sym_CARET_SLASH] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_lazy] = ACTIONS(304), - [anon_sym_as] = ACTIONS(304), - [anon_sym_is] = ACTIONS(304), - [anon_sym_BANGis] = ACTIONS(306), - [anon_sym_match] = ACTIONS(304), - [sym_number_literal] = ACTIONS(306), - [sym_string_literal] = ACTIONS(306), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [sym_null_literal] = ACTIONS(304), - [sym_underscore] = ACTIONS(304), + [sym_identifier] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_LPAREN] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_DOT] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(319), + [anon_sym_var] = ACTIONS(317), + [anon_sym_val] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_return] = ACTIONS(317), + [anon_sym_repeat] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_do] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [sym_break_statement] = ACTIONS(317), + [sym_continue_statement] = ACTIONS(317), + [anon_sym_throw] = ACTIONS(317), + [anon_sym_assert] = ACTIONS(317), + [anon_sym_try] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_QMARK] = ACTIONS(319), + [anon_sym_AMP_AMP] = ACTIONS(319), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(319), + [anon_sym_BANG_EQ] = ACTIONS(319), + [anon_sym_LT_EQ] = ACTIONS(317), + [anon_sym_GT_EQ] = ACTIONS(319), + [anon_sym_LT_EQ_GT] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_TILDE_GT_GT] = ACTIONS(319), + [anon_sym_CARET_GT_GT] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_TILDE_SLASH] = ACTIONS(319), + [anon_sym_CARET_SLASH] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(317), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_lazy] = ACTIONS(317), + [anon_sym_as] = ACTIONS(317), + [anon_sym_is] = ACTIONS(317), + [anon_sym_BANGis] = ACTIONS(319), + [anon_sym_match] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [anon_sym_true] = ACTIONS(317), + [anon_sym_false] = ACTIONS(317), + [sym_null_literal] = ACTIONS(317), + [sym_underscore] = ACTIONS(317), [sym_comment] = ACTIONS(3), }, [STATE(33)] = { - [sym_identifier] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_DASH_GT] = ACTIONS(310), - [anon_sym_var] = ACTIONS(308), - [anon_sym_val] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_return] = ACTIONS(308), - [anon_sym_repeat] = ACTIONS(308), - [anon_sym_if] = ACTIONS(308), - [anon_sym_do] = ACTIONS(308), - [anon_sym_while] = ACTIONS(308), - [sym_break_statement] = ACTIONS(308), - [sym_continue_statement] = ACTIONS(308), - [anon_sym_throw] = ACTIONS(308), - [anon_sym_assert] = ACTIONS(308), - [anon_sym_try] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(310), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_AMP] = ACTIONS(308), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_EQ_GT] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(308), - [anon_sym_TILDE_GT_GT] = ACTIONS(310), - [anon_sym_CARET_GT_GT] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_TILDE_SLASH] = ACTIONS(310), - [anon_sym_CARET_SLASH] = ACTIONS(310), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_lazy] = ACTIONS(308), - [anon_sym_as] = ACTIONS(308), - [anon_sym_is] = ACTIONS(308), - [anon_sym_BANGis] = ACTIONS(310), - [anon_sym_match] = ACTIONS(308), - [sym_number_literal] = ACTIONS(310), - [sym_string_literal] = ACTIONS(310), - [anon_sym_true] = ACTIONS(308), - [anon_sym_false] = ACTIONS(308), - [sym_null_literal] = ACTIONS(308), - [sym_underscore] = ACTIONS(308), + [sym_identifier] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_LBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(321), + [anon_sym_GT] = ACTIONS(321), + [anon_sym_DASH_GT] = ACTIONS(323), + [anon_sym_var] = ACTIONS(321), + [anon_sym_val] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_return] = ACTIONS(321), + [anon_sym_repeat] = ACTIONS(321), + [anon_sym_if] = ACTIONS(321), + [anon_sym_do] = ACTIONS(321), + [anon_sym_while] = ACTIONS(321), + [sym_break_statement] = ACTIONS(321), + [sym_continue_statement] = ACTIONS(321), + [anon_sym_throw] = ACTIONS(321), + [anon_sym_assert] = ACTIONS(321), + [anon_sym_try] = ACTIONS(321), + [anon_sym_PLUS_EQ] = ACTIONS(323), + [anon_sym_DASH_EQ] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(323), + [anon_sym_SLASH_EQ] = ACTIONS(323), + [anon_sym_PERCENT_EQ] = ACTIONS(323), + [anon_sym_LT_LT_EQ] = ACTIONS(323), + [anon_sym_GT_GT_EQ] = ACTIONS(323), + [anon_sym_AMP_EQ] = ACTIONS(323), + [anon_sym_PIPE_EQ] = ACTIONS(323), + [anon_sym_CARET_EQ] = ACTIONS(323), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_AMP] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_EQ_EQ] = ACTIONS(323), + [anon_sym_BANG_EQ] = ACTIONS(323), + [anon_sym_LT_EQ] = ACTIONS(321), + [anon_sym_GT_EQ] = ACTIONS(323), + [anon_sym_LT_EQ_GT] = ACTIONS(323), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_GT_GT] = ACTIONS(321), + [anon_sym_TILDE_GT_GT] = ACTIONS(323), + [anon_sym_CARET_GT_GT] = ACTIONS(323), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(321), + [anon_sym_PERCENT] = ACTIONS(321), + [anon_sym_TILDE_SLASH] = ACTIONS(323), + [anon_sym_CARET_SLASH] = ACTIONS(323), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_lazy] = ACTIONS(321), + [anon_sym_as] = ACTIONS(321), + [anon_sym_is] = ACTIONS(321), + [anon_sym_BANGis] = ACTIONS(323), + [anon_sym_match] = ACTIONS(321), + [sym_number_literal] = ACTIONS(323), + [sym_string_literal] = ACTIONS(323), + [anon_sym_true] = ACTIONS(321), + [anon_sym_false] = ACTIONS(321), + [sym_null_literal] = ACTIONS(321), + [sym_underscore] = ACTIONS(321), [sym_comment] = ACTIONS(3), }, [STATE(34)] = { - [sym_identifier] = ACTIONS(312), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_DASH_GT] = ACTIONS(314), - [anon_sym_var] = ACTIONS(312), - [anon_sym_val] = ACTIONS(312), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_return] = ACTIONS(312), - [anon_sym_repeat] = ACTIONS(312), - [anon_sym_if] = ACTIONS(312), - [anon_sym_do] = ACTIONS(312), - [anon_sym_while] = ACTIONS(312), - [sym_break_statement] = ACTIONS(312), - [sym_continue_statement] = ACTIONS(312), - [anon_sym_throw] = ACTIONS(312), - [anon_sym_assert] = ACTIONS(312), - [anon_sym_try] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(314), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(312), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_EQ_GT] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_TILDE_GT_GT] = ACTIONS(314), - [anon_sym_CARET_GT_GT] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_TILDE_SLASH] = ACTIONS(314), - [anon_sym_CARET_SLASH] = ACTIONS(314), - [anon_sym_BANG] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_lazy] = ACTIONS(312), - [anon_sym_as] = ACTIONS(312), - [anon_sym_is] = ACTIONS(312), - [anon_sym_BANGis] = ACTIONS(314), - [anon_sym_match] = ACTIONS(312), - [sym_number_literal] = ACTIONS(314), - [sym_string_literal] = ACTIONS(314), - [anon_sym_true] = ACTIONS(312), - [anon_sym_false] = ACTIONS(312), - [sym_null_literal] = ACTIONS(312), - [sym_underscore] = ACTIONS(312), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_DOT] = ACTIONS(327), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_DASH_GT] = ACTIONS(327), + [anon_sym_var] = ACTIONS(325), + [anon_sym_val] = ACTIONS(325), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_return] = ACTIONS(325), + [anon_sym_repeat] = ACTIONS(325), + [anon_sym_if] = ACTIONS(325), + [anon_sym_do] = ACTIONS(325), + [anon_sym_while] = ACTIONS(325), + [sym_break_statement] = ACTIONS(325), + [sym_continue_statement] = ACTIONS(325), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_assert] = ACTIONS(325), + [anon_sym_try] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_CARET] = ACTIONS(325), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(325), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_EQ_GT] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_TILDE_GT_GT] = ACTIONS(327), + [anon_sym_CARET_GT_GT] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(325), + [anon_sym_PERCENT] = ACTIONS(325), + [anon_sym_TILDE_SLASH] = ACTIONS(327), + [anon_sym_CARET_SLASH] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_TILDE] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(325), + [anon_sym_as] = ACTIONS(325), + [anon_sym_is] = ACTIONS(325), + [anon_sym_BANGis] = ACTIONS(327), + [anon_sym_match] = ACTIONS(325), + [sym_number_literal] = ACTIONS(327), + [sym_string_literal] = ACTIONS(327), + [anon_sym_true] = ACTIONS(325), + [anon_sym_false] = ACTIONS(325), + [sym_null_literal] = ACTIONS(325), + [sym_underscore] = ACTIONS(325), [sym_comment] = ACTIONS(3), }, [STATE(35)] = { - [sym_identifier] = ACTIONS(316), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(318), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_DOT] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_DASH_GT] = ACTIONS(326), - [anon_sym_var] = ACTIONS(316), - [anon_sym_val] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(318), - [anon_sym_return] = ACTIONS(316), - [anon_sym_repeat] = ACTIONS(316), - [anon_sym_if] = ACTIONS(316), - [anon_sym_do] = ACTIONS(316), - [anon_sym_while] = ACTIONS(316), - [sym_break_statement] = ACTIONS(316), - [sym_continue_statement] = ACTIONS(316), - [anon_sym_throw] = ACTIONS(316), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_try] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(318), - [anon_sym_DASH_EQ] = ACTIONS(318), - [anon_sym_STAR_EQ] = ACTIONS(318), - [anon_sym_SLASH_EQ] = ACTIONS(318), - [anon_sym_PERCENT_EQ] = ACTIONS(318), - [anon_sym_LT_LT_EQ] = ACTIONS(318), - [anon_sym_GT_GT_EQ] = ACTIONS(318), - [anon_sym_AMP_EQ] = ACTIONS(318), - [anon_sym_PIPE_EQ] = ACTIONS(318), - [anon_sym_CARET_EQ] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ_GT] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_TILDE_GT_GT] = ACTIONS(318), - [anon_sym_CARET_GT_GT] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_TILDE_SLASH] = ACTIONS(318), - [anon_sym_CARET_SLASH] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(316), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_lazy] = ACTIONS(316), - [anon_sym_as] = ACTIONS(316), - [anon_sym_is] = ACTIONS(316), - [anon_sym_BANGis] = ACTIONS(318), - [anon_sym_match] = ACTIONS(316), - [sym_number_literal] = ACTIONS(318), - [sym_string_literal] = ACTIONS(318), - [anon_sym_true] = ACTIONS(316), - [anon_sym_false] = ACTIONS(316), - [sym_null_literal] = ACTIONS(316), - [sym_underscore] = ACTIONS(316), + [sym_identifier] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_DOT] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DASH_GT] = ACTIONS(331), + [anon_sym_var] = ACTIONS(329), + [anon_sym_val] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_return] = ACTIONS(329), + [anon_sym_repeat] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [sym_break_statement] = ACTIONS(329), + [sym_continue_statement] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(331), + [anon_sym_DASH_EQ] = ACTIONS(331), + [anon_sym_STAR_EQ] = ACTIONS(331), + [anon_sym_SLASH_EQ] = ACTIONS(331), + [anon_sym_PERCENT_EQ] = ACTIONS(331), + [anon_sym_LT_LT_EQ] = ACTIONS(331), + [anon_sym_GT_GT_EQ] = ACTIONS(331), + [anon_sym_AMP_EQ] = ACTIONS(331), + [anon_sym_PIPE_EQ] = ACTIONS(331), + [anon_sym_CARET_EQ] = ACTIONS(331), + [anon_sym_QMARK] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ] = ACTIONS(331), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_LT_EQ_GT] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_TILDE_GT_GT] = ACTIONS(331), + [anon_sym_CARET_GT_GT] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_TILDE_SLASH] = ACTIONS(331), + [anon_sym_CARET_SLASH] = ACTIONS(331), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_lazy] = ACTIONS(329), + [anon_sym_as] = ACTIONS(329), + [anon_sym_is] = ACTIONS(329), + [anon_sym_BANGis] = ACTIONS(331), + [anon_sym_match] = ACTIONS(329), + [sym_number_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(331), + [anon_sym_true] = ACTIONS(329), + [anon_sym_false] = ACTIONS(329), + [sym_null_literal] = ACTIONS(329), + [sym_underscore] = ACTIONS(329), [sym_comment] = ACTIONS(3), }, [STATE(36)] = { - [sym_identifier] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(330), - [anon_sym_EQ] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_DOT] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(334), - [anon_sym_var] = ACTIONS(328), - [anon_sym_val] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_return] = ACTIONS(328), - [anon_sym_repeat] = ACTIONS(328), - [anon_sym_if] = ACTIONS(328), - [anon_sym_do] = ACTIONS(328), - [anon_sym_while] = ACTIONS(328), - [sym_break_statement] = ACTIONS(328), - [sym_continue_statement] = ACTIONS(328), - [anon_sym_throw] = ACTIONS(328), - [anon_sym_assert] = ACTIONS(328), - [anon_sym_try] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_EQ_GT] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_TILDE_GT_GT] = ACTIONS(330), - [anon_sym_CARET_GT_GT] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_TILDE_SLASH] = ACTIONS(330), - [anon_sym_CARET_SLASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lazy] = ACTIONS(328), - [anon_sym_as] = ACTIONS(328), - [anon_sym_is] = ACTIONS(328), - [anon_sym_BANGis] = ACTIONS(330), - [anon_sym_match] = ACTIONS(328), - [sym_number_literal] = ACTIONS(330), - [sym_string_literal] = ACTIONS(330), - [anon_sym_true] = ACTIONS(328), - [anon_sym_false] = ACTIONS(328), - [sym_null_literal] = ACTIONS(328), - [sym_underscore] = ACTIONS(328), + [sym_identifier] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(335), + [anon_sym_EQ] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_LPAREN] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_DASH_GT] = ACTIONS(335), + [anon_sym_var] = ACTIONS(333), + [anon_sym_val] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_return] = ACTIONS(333), + [anon_sym_repeat] = ACTIONS(333), + [anon_sym_if] = ACTIONS(333), + [anon_sym_do] = ACTIONS(333), + [anon_sym_while] = ACTIONS(333), + [sym_break_statement] = ACTIONS(333), + [sym_continue_statement] = ACTIONS(333), + [anon_sym_throw] = ACTIONS(333), + [anon_sym_assert] = ACTIONS(333), + [anon_sym_try] = ACTIONS(333), + [anon_sym_PLUS_EQ] = ACTIONS(335), + [anon_sym_DASH_EQ] = ACTIONS(335), + [anon_sym_STAR_EQ] = ACTIONS(335), + [anon_sym_SLASH_EQ] = ACTIONS(335), + [anon_sym_PERCENT_EQ] = ACTIONS(335), + [anon_sym_LT_LT_EQ] = ACTIONS(335), + [anon_sym_GT_GT_EQ] = ACTIONS(335), + [anon_sym_AMP_EQ] = ACTIONS(335), + [anon_sym_PIPE_EQ] = ACTIONS(335), + [anon_sym_CARET_EQ] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT_EQ] = ACTIONS(335), + [anon_sym_LT_EQ_GT] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_TILDE_GT_GT] = ACTIONS(335), + [anon_sym_CARET_GT_GT] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_PERCENT] = ACTIONS(333), + [anon_sym_TILDE_SLASH] = ACTIONS(335), + [anon_sym_CARET_SLASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(333), + [anon_sym_lazy] = ACTIONS(333), + [anon_sym_as] = ACTIONS(333), + [anon_sym_is] = ACTIONS(333), + [anon_sym_BANGis] = ACTIONS(335), + [anon_sym_match] = ACTIONS(333), + [sym_number_literal] = ACTIONS(335), + [sym_string_literal] = ACTIONS(335), + [anon_sym_true] = ACTIONS(333), + [anon_sym_false] = ACTIONS(333), + [sym_null_literal] = ACTIONS(333), + [sym_underscore] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(37)] = { - [sym_identifier] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_EQ] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(338), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(336), - [anon_sym_DASH_GT] = ACTIONS(342), - [anon_sym_var] = ACTIONS(336), - [anon_sym_val] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_return] = ACTIONS(336), - [anon_sym_repeat] = ACTIONS(336), - [anon_sym_if] = ACTIONS(336), - [anon_sym_do] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [sym_break_statement] = ACTIONS(336), - [sym_continue_statement] = ACTIONS(336), - [anon_sym_throw] = ACTIONS(336), - [anon_sym_assert] = ACTIONS(336), - [anon_sym_try] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(338), - [anon_sym_DASH_EQ] = ACTIONS(338), - [anon_sym_STAR_EQ] = ACTIONS(338), - [anon_sym_SLASH_EQ] = ACTIONS(338), - [anon_sym_PERCENT_EQ] = ACTIONS(338), - [anon_sym_LT_LT_EQ] = ACTIONS(338), - [anon_sym_GT_GT_EQ] = ACTIONS(338), - [anon_sym_AMP_EQ] = ACTIONS(338), - [anon_sym_PIPE_EQ] = ACTIONS(338), - [anon_sym_CARET_EQ] = ACTIONS(338), + [sym_identifier] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(344), + [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(319), + [anon_sym_var] = ACTIONS(337), + [anon_sym_val] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_return] = ACTIONS(337), + [anon_sym_repeat] = ACTIONS(337), + [anon_sym_if] = ACTIONS(337), + [anon_sym_do] = ACTIONS(337), + [anon_sym_while] = ACTIONS(337), + [sym_break_statement] = ACTIONS(337), + [sym_continue_statement] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(337), + [anon_sym_assert] = ACTIONS(337), + [anon_sym_try] = ACTIONS(337), + [anon_sym_PLUS_EQ] = ACTIONS(339), + [anon_sym_DASH_EQ] = ACTIONS(339), + [anon_sym_STAR_EQ] = ACTIONS(339), + [anon_sym_SLASH_EQ] = ACTIONS(339), + [anon_sym_PERCENT_EQ] = ACTIONS(339), + [anon_sym_LT_LT_EQ] = ACTIONS(339), + [anon_sym_GT_GT_EQ] = ACTIONS(339), + [anon_sym_AMP_EQ] = ACTIONS(339), + [anon_sym_PIPE_EQ] = ACTIONS(339), + [anon_sym_CARET_EQ] = ACTIONS(339), [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(338), - [anon_sym_PIPE_PIPE] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(336), - [anon_sym_CARET] = ACTIONS(336), - [anon_sym_EQ_EQ] = ACTIONS(338), - [anon_sym_BANG_EQ] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(338), - [anon_sym_LT_EQ_GT] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(336), - [anon_sym_TILDE_GT_GT] = ACTIONS(338), - [anon_sym_CARET_GT_GT] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_SLASH] = ACTIONS(336), - [anon_sym_PERCENT] = ACTIONS(336), - [anon_sym_TILDE_SLASH] = ACTIONS(338), - [anon_sym_CARET_SLASH] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(336), - [anon_sym_lazy] = ACTIONS(336), - [anon_sym_as] = ACTIONS(336), - [anon_sym_is] = ACTIONS(336), - [anon_sym_BANGis] = ACTIONS(338), - [anon_sym_match] = ACTIONS(336), - [sym_number_literal] = ACTIONS(338), - [sym_string_literal] = ACTIONS(338), - [anon_sym_true] = ACTIONS(336), - [anon_sym_false] = ACTIONS(336), - [sym_null_literal] = ACTIONS(336), - [sym_underscore] = ACTIONS(336), + [anon_sym_AMP_AMP] = ACTIONS(339), + [anon_sym_PIPE_PIPE] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_LT_EQ_GT] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(337), + [anon_sym_TILDE_GT_GT] = ACTIONS(339), + [anon_sym_CARET_GT_GT] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_TILDE_SLASH] = ACTIONS(339), + [anon_sym_CARET_SLASH] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_lazy] = ACTIONS(337), + [anon_sym_as] = ACTIONS(337), + [anon_sym_is] = ACTIONS(337), + [anon_sym_BANGis] = ACTIONS(339), + [anon_sym_match] = ACTIONS(337), + [sym_number_literal] = ACTIONS(339), + [sym_string_literal] = ACTIONS(339), + [anon_sym_true] = ACTIONS(337), + [anon_sym_false] = ACTIONS(337), + [sym_null_literal] = ACTIONS(337), + [sym_underscore] = ACTIONS(337), [sym_comment] = ACTIONS(3), }, [STATE(38)] = { - [sym_match_body] = STATE(56), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(346), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE] = ACTIONS(348), - [anon_sym_DOT] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_var] = ACTIONS(346), - [anon_sym_val] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_return] = ACTIONS(346), - [anon_sym_repeat] = ACTIONS(346), - [anon_sym_if] = ACTIONS(346), - [anon_sym_do] = ACTIONS(346), - [anon_sym_while] = ACTIONS(346), - [sym_break_statement] = ACTIONS(346), - [sym_continue_statement] = ACTIONS(346), - [anon_sym_throw] = ACTIONS(346), - [anon_sym_assert] = ACTIONS(346), - [anon_sym_try] = ACTIONS(346), - [anon_sym_PLUS_EQ] = ACTIONS(348), - [anon_sym_DASH_EQ] = ACTIONS(348), - [anon_sym_STAR_EQ] = ACTIONS(348), - [anon_sym_SLASH_EQ] = ACTIONS(348), - [anon_sym_PERCENT_EQ] = ACTIONS(348), - [anon_sym_LT_LT_EQ] = ACTIONS(348), - [anon_sym_GT_GT_EQ] = ACTIONS(348), - [anon_sym_AMP_EQ] = ACTIONS(348), - [anon_sym_PIPE_EQ] = ACTIONS(348), - [anon_sym_CARET_EQ] = ACTIONS(348), - [anon_sym_QMARK] = ACTIONS(348), - [anon_sym_AMP_AMP] = ACTIONS(348), - [anon_sym_PIPE_PIPE] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(346), - [anon_sym_CARET] = ACTIONS(346), - [anon_sym_EQ_EQ] = ACTIONS(348), - [anon_sym_BANG_EQ] = ACTIONS(348), - [anon_sym_LT_EQ] = ACTIONS(346), - [anon_sym_GT_EQ] = ACTIONS(348), - [anon_sym_LT_EQ_GT] = ACTIONS(348), - [anon_sym_LT_LT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_TILDE_GT_GT] = ACTIONS(348), - [anon_sym_CARET_GT_GT] = ACTIONS(348), - [anon_sym_DASH] = ACTIONS(346), - [anon_sym_PLUS] = ACTIONS(346), - [anon_sym_STAR] = ACTIONS(346), - [anon_sym_SLASH] = ACTIONS(346), - [anon_sym_PERCENT] = ACTIONS(346), - [anon_sym_TILDE_SLASH] = ACTIONS(348), - [anon_sym_CARET_SLASH] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(346), - [anon_sym_TILDE] = ACTIONS(346), - [anon_sym_lazy] = ACTIONS(346), - [anon_sym_as] = ACTIONS(346), - [anon_sym_is] = ACTIONS(346), - [anon_sym_BANGis] = ACTIONS(348), - [anon_sym_match] = ACTIONS(346), - [sym_number_literal] = ACTIONS(348), - [sym_string_literal] = ACTIONS(348), - [anon_sym_true] = ACTIONS(346), - [anon_sym_false] = ACTIONS(346), - [sym_null_literal] = ACTIONS(346), - [sym_underscore] = ACTIONS(346), + [sym_identifier] = ACTIONS(347), + [anon_sym_SEMI] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_DASH_GT] = ACTIONS(323), + [anon_sym_var] = ACTIONS(347), + [anon_sym_val] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_return] = ACTIONS(347), + [anon_sym_repeat] = ACTIONS(347), + [anon_sym_if] = ACTIONS(347), + [anon_sym_do] = ACTIONS(347), + [anon_sym_while] = ACTIONS(347), + [sym_break_statement] = ACTIONS(347), + [sym_continue_statement] = ACTIONS(347), + [anon_sym_throw] = ACTIONS(347), + [anon_sym_assert] = ACTIONS(347), + [anon_sym_try] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_SLASH_EQ] = ACTIONS(349), + [anon_sym_PERCENT_EQ] = ACTIONS(349), + [anon_sym_LT_LT_EQ] = ACTIONS(349), + [anon_sym_GT_GT_EQ] = ACTIONS(349), + [anon_sym_AMP_EQ] = ACTIONS(349), + [anon_sym_PIPE_EQ] = ACTIONS(349), + [anon_sym_CARET_EQ] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_LT_EQ_GT] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_TILDE_GT_GT] = ACTIONS(349), + [anon_sym_CARET_GT_GT] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_TILDE_SLASH] = ACTIONS(349), + [anon_sym_CARET_SLASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), + [anon_sym_lazy] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_is] = ACTIONS(347), + [anon_sym_BANGis] = ACTIONS(349), + [anon_sym_match] = ACTIONS(347), + [sym_number_literal] = ACTIONS(349), + [sym_string_literal] = ACTIONS(349), + [anon_sym_true] = ACTIONS(347), + [anon_sym_false] = ACTIONS(347), + [sym_null_literal] = ACTIONS(347), + [sym_underscore] = ACTIONS(347), [sym_comment] = ACTIONS(3), }, [STATE(39)] = { - [sym_identifier] = ACTIONS(352), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_EQ] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(354), - [anon_sym_RBRACE] = ACTIONS(354), - [anon_sym_DOT] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_DASH_GT] = ACTIONS(342), - [anon_sym_var] = ACTIONS(352), - [anon_sym_val] = ACTIONS(352), - [anon_sym_LBRACK] = ACTIONS(354), - [anon_sym_return] = ACTIONS(352), - [anon_sym_repeat] = ACTIONS(352), - [anon_sym_if] = ACTIONS(352), - [anon_sym_do] = ACTIONS(352), - [anon_sym_while] = ACTIONS(352), - [sym_break_statement] = ACTIONS(352), - [sym_continue_statement] = ACTIONS(352), - [anon_sym_throw] = ACTIONS(352), - [anon_sym_assert] = ACTIONS(352), - [anon_sym_try] = ACTIONS(352), - [anon_sym_PLUS_EQ] = ACTIONS(354), - [anon_sym_DASH_EQ] = ACTIONS(354), - [anon_sym_STAR_EQ] = ACTIONS(354), - [anon_sym_SLASH_EQ] = ACTIONS(354), - [anon_sym_PERCENT_EQ] = ACTIONS(354), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_CARET_EQ] = ACTIONS(354), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(352), - [anon_sym_EQ_EQ] = ACTIONS(354), - [anon_sym_BANG_EQ] = ACTIONS(354), - [anon_sym_LT_EQ] = ACTIONS(352), - [anon_sym_GT_EQ] = ACTIONS(354), - [anon_sym_LT_EQ_GT] = ACTIONS(354), - [anon_sym_LT_LT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_TILDE_GT_GT] = ACTIONS(354), - [anon_sym_CARET_GT_GT] = ACTIONS(354), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_PERCENT] = ACTIONS(352), - [anon_sym_TILDE_SLASH] = ACTIONS(354), - [anon_sym_CARET_SLASH] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(352), - [anon_sym_TILDE] = ACTIONS(352), - [anon_sym_lazy] = ACTIONS(352), - [anon_sym_as] = ACTIONS(352), - [anon_sym_is] = ACTIONS(352), - [anon_sym_BANGis] = ACTIONS(354), - [anon_sym_match] = ACTIONS(352), - [sym_number_literal] = ACTIONS(354), - [sym_string_literal] = ACTIONS(354), - [anon_sym_true] = ACTIONS(352), - [anon_sym_false] = ACTIONS(352), - [sym_null_literal] = ACTIONS(352), - [sym_underscore] = ACTIONS(352), + [sym_identifier] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(353), + [anon_sym_var] = ACTIONS(351), + [anon_sym_val] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(353), + [anon_sym_return] = ACTIONS(351), + [anon_sym_repeat] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [sym_break_statement] = ACTIONS(351), + [sym_continue_statement] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_try] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(353), + [anon_sym_DASH_EQ] = ACTIONS(353), + [anon_sym_STAR_EQ] = ACTIONS(353), + [anon_sym_SLASH_EQ] = ACTIONS(353), + [anon_sym_PERCENT_EQ] = ACTIONS(353), + [anon_sym_LT_LT_EQ] = ACTIONS(353), + [anon_sym_GT_GT_EQ] = ACTIONS(353), + [anon_sym_AMP_EQ] = ACTIONS(353), + [anon_sym_PIPE_EQ] = ACTIONS(353), + [anon_sym_CARET_EQ] = ACTIONS(353), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(353), + [anon_sym_BANG_EQ] = ACTIONS(353), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(353), + [anon_sym_LT_EQ_GT] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_TILDE_GT_GT] = ACTIONS(353), + [anon_sym_CARET_GT_GT] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_TILDE_SLASH] = ACTIONS(353), + [anon_sym_CARET_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_lazy] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_is] = ACTIONS(351), + [anon_sym_BANGis] = ACTIONS(353), + [anon_sym_match] = ACTIONS(351), + [sym_number_literal] = ACTIONS(353), + [sym_string_literal] = ACTIONS(353), + [anon_sym_true] = ACTIONS(351), + [anon_sym_false] = ACTIONS(351), + [sym_null_literal] = ACTIONS(351), + [sym_underscore] = ACTIONS(351), [sym_comment] = ACTIONS(3), }, [STATE(40)] = { - [sym_identifier] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(356), - [anon_sym_PIPE] = ACTIONS(356), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(356), - [anon_sym_GT] = ACTIONS(356), - [anon_sym_DASH_GT] = ACTIONS(326), - [anon_sym_var] = ACTIONS(356), - [anon_sym_val] = ACTIONS(356), - [anon_sym_LBRACK] = ACTIONS(326), - [anon_sym_return] = ACTIONS(356), - [anon_sym_repeat] = ACTIONS(356), - [anon_sym_if] = ACTIONS(356), - [anon_sym_do] = ACTIONS(356), - [anon_sym_while] = ACTIONS(356), - [sym_break_statement] = ACTIONS(356), - [sym_continue_statement] = ACTIONS(356), - [anon_sym_throw] = ACTIONS(356), - [anon_sym_assert] = ACTIONS(356), - [anon_sym_try] = ACTIONS(356), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(326), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(356), - [anon_sym_CARET] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(356), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_EQ_GT] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(356), - [anon_sym_GT_GT] = ACTIONS(356), - [anon_sym_TILDE_GT_GT] = ACTIONS(326), - [anon_sym_CARET_GT_GT] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_SLASH] = ACTIONS(356), - [anon_sym_PERCENT] = ACTIONS(356), - [anon_sym_TILDE_SLASH] = ACTIONS(326), - [anon_sym_CARET_SLASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_lazy] = ACTIONS(356), - [anon_sym_as] = ACTIONS(356), - [anon_sym_is] = ACTIONS(356), - [anon_sym_BANGis] = ACTIONS(326), - [anon_sym_match] = ACTIONS(356), - [sym_number_literal] = ACTIONS(326), - [sym_string_literal] = ACTIONS(326), - [anon_sym_true] = ACTIONS(356), - [anon_sym_false] = ACTIONS(356), - [sym_null_literal] = ACTIONS(356), - [sym_underscore] = ACTIONS(356), + [sym_identifier] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_DASH_GT] = ACTIONS(357), + [anon_sym_var] = ACTIONS(355), + [anon_sym_val] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_return] = ACTIONS(355), + [anon_sym_repeat] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_do] = ACTIONS(355), + [anon_sym_while] = ACTIONS(355), + [sym_break_statement] = ACTIONS(355), + [sym_continue_statement] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(355), + [anon_sym_assert] = ACTIONS(355), + [anon_sym_try] = ACTIONS(355), + [anon_sym_PLUS_EQ] = ACTIONS(357), + [anon_sym_DASH_EQ] = ACTIONS(357), + [anon_sym_STAR_EQ] = ACTIONS(357), + [anon_sym_SLASH_EQ] = ACTIONS(357), + [anon_sym_PERCENT_EQ] = ACTIONS(357), + [anon_sym_LT_LT_EQ] = ACTIONS(357), + [anon_sym_GT_GT_EQ] = ACTIONS(357), + [anon_sym_AMP_EQ] = ACTIONS(357), + [anon_sym_PIPE_EQ] = ACTIONS(357), + [anon_sym_CARET_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_LT_EQ_GT] = ACTIONS(357), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_TILDE_GT_GT] = ACTIONS(357), + [anon_sym_CARET_GT_GT] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_TILDE_SLASH] = ACTIONS(357), + [anon_sym_CARET_SLASH] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_lazy] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_is] = ACTIONS(355), + [anon_sym_BANGis] = ACTIONS(357), + [anon_sym_match] = ACTIONS(355), + [sym_number_literal] = ACTIONS(357), + [sym_string_literal] = ACTIONS(357), + [anon_sym_true] = ACTIONS(355), + [anon_sym_false] = ACTIONS(355), + [sym_null_literal] = ACTIONS(355), + [sym_underscore] = ACTIONS(355), [sym_comment] = ACTIONS(3), }, [STATE(41)] = { - [sym_identifier] = ACTIONS(332), - [anon_sym_SEMI] = ACTIONS(334), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_DASH_GT] = ACTIONS(334), - [anon_sym_var] = ACTIONS(332), - [anon_sym_val] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(334), - [anon_sym_return] = ACTIONS(332), - [anon_sym_repeat] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_do] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [sym_break_statement] = ACTIONS(332), - [sym_continue_statement] = ACTIONS(332), - [anon_sym_throw] = ACTIONS(332), - [anon_sym_assert] = ACTIONS(332), - [anon_sym_try] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(334), - [anon_sym_DASH_EQ] = ACTIONS(334), - [anon_sym_STAR_EQ] = ACTIONS(334), - [anon_sym_SLASH_EQ] = ACTIONS(334), - [anon_sym_PERCENT_EQ] = ACTIONS(334), - [anon_sym_LT_LT_EQ] = ACTIONS(334), - [anon_sym_GT_GT_EQ] = ACTIONS(334), - [anon_sym_AMP_EQ] = ACTIONS(334), - [anon_sym_PIPE_EQ] = ACTIONS(334), - [anon_sym_CARET_EQ] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_PIPE_PIPE] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(334), - [anon_sym_BANG_EQ] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(334), - [anon_sym_LT_EQ_GT] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_TILDE_GT_GT] = ACTIONS(334), - [anon_sym_CARET_GT_GT] = ACTIONS(334), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_TILDE_SLASH] = ACTIONS(334), - [anon_sym_CARET_SLASH] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_lazy] = ACTIONS(332), - [anon_sym_as] = ACTIONS(332), - [anon_sym_is] = ACTIONS(332), - [anon_sym_BANGis] = ACTIONS(334), - [anon_sym_match] = ACTIONS(332), - [sym_number_literal] = ACTIONS(334), - [sym_string_literal] = ACTIONS(334), - [anon_sym_true] = ACTIONS(332), - [anon_sym_false] = ACTIONS(332), - [sym_null_literal] = ACTIONS(332), - [sym_underscore] = ACTIONS(332), + [sym_identifier] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_DASH_GT] = ACTIONS(361), + [anon_sym_var] = ACTIONS(359), + [anon_sym_val] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_return] = ACTIONS(359), + [anon_sym_repeat] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [sym_break_statement] = ACTIONS(359), + [sym_continue_statement] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(359), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_PLUS_EQ] = ACTIONS(361), + [anon_sym_DASH_EQ] = ACTIONS(361), + [anon_sym_STAR_EQ] = ACTIONS(361), + [anon_sym_SLASH_EQ] = ACTIONS(361), + [anon_sym_PERCENT_EQ] = ACTIONS(361), + [anon_sym_LT_LT_EQ] = ACTIONS(361), + [anon_sym_GT_GT_EQ] = ACTIONS(361), + [anon_sym_AMP_EQ] = ACTIONS(361), + [anon_sym_PIPE_EQ] = ACTIONS(361), + [anon_sym_CARET_EQ] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(361), + [anon_sym_AMP_AMP] = ACTIONS(361), + [anon_sym_PIPE_PIPE] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(361), + [anon_sym_BANG_EQ] = ACTIONS(361), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(361), + [anon_sym_LT_EQ_GT] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(359), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_TILDE_GT_GT] = ACTIONS(361), + [anon_sym_CARET_GT_GT] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_PERCENT] = ACTIONS(359), + [anon_sym_TILDE_SLASH] = ACTIONS(361), + [anon_sym_CARET_SLASH] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_as] = ACTIONS(359), + [anon_sym_is] = ACTIONS(359), + [anon_sym_BANGis] = ACTIONS(361), + [anon_sym_match] = ACTIONS(359), + [sym_number_literal] = ACTIONS(361), + [sym_string_literal] = ACTIONS(361), + [anon_sym_true] = ACTIONS(359), + [anon_sym_false] = ACTIONS(359), + [sym_null_literal] = ACTIONS(359), + [sym_underscore] = ACTIONS(359), [sym_comment] = ACTIONS(3), }, [STATE(42)] = { - [sym_identifier] = ACTIONS(358), - [anon_sym_SEMI] = ACTIONS(360), - [anon_sym_EQ] = ACTIONS(358), - [anon_sym_PIPE] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(360), - [anon_sym_DOT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_DASH_GT] = ACTIONS(360), - [anon_sym_var] = ACTIONS(358), - [anon_sym_val] = ACTIONS(358), - [anon_sym_LBRACK] = ACTIONS(360), - [anon_sym_return] = ACTIONS(358), - [anon_sym_repeat] = ACTIONS(358), - [anon_sym_if] = ACTIONS(358), - [anon_sym_do] = ACTIONS(358), - [anon_sym_while] = ACTIONS(358), - [sym_break_statement] = ACTIONS(358), - [sym_continue_statement] = ACTIONS(358), - [anon_sym_throw] = ACTIONS(358), - [anon_sym_assert] = ACTIONS(358), - [anon_sym_try] = ACTIONS(358), - [anon_sym_PLUS_EQ] = ACTIONS(360), - [anon_sym_DASH_EQ] = ACTIONS(360), - [anon_sym_STAR_EQ] = ACTIONS(360), - [anon_sym_SLASH_EQ] = ACTIONS(360), - [anon_sym_PERCENT_EQ] = ACTIONS(360), - [anon_sym_LT_LT_EQ] = ACTIONS(360), - [anon_sym_GT_GT_EQ] = ACTIONS(360), - [anon_sym_AMP_EQ] = ACTIONS(360), - [anon_sym_PIPE_EQ] = ACTIONS(360), - [anon_sym_CARET_EQ] = ACTIONS(360), - [anon_sym_QMARK] = ACTIONS(360), - [anon_sym_AMP_AMP] = ACTIONS(360), - [anon_sym_PIPE_PIPE] = ACTIONS(360), - [anon_sym_AMP] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(358), - [anon_sym_EQ_EQ] = ACTIONS(360), - [anon_sym_BANG_EQ] = ACTIONS(360), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(360), - [anon_sym_LT_EQ_GT] = ACTIONS(360), - [anon_sym_LT_LT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_TILDE_GT_GT] = ACTIONS(360), - [anon_sym_CARET_GT_GT] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_SLASH] = ACTIONS(358), - [anon_sym_PERCENT] = ACTIONS(358), - [anon_sym_TILDE_SLASH] = ACTIONS(360), - [anon_sym_CARET_SLASH] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_TILDE] = ACTIONS(358), - [anon_sym_lazy] = ACTIONS(358), - [anon_sym_as] = ACTIONS(358), - [anon_sym_is] = ACTIONS(358), - [anon_sym_BANGis] = ACTIONS(360), - [anon_sym_match] = ACTIONS(358), - [sym_number_literal] = ACTIONS(360), - [sym_string_literal] = ACTIONS(360), - [anon_sym_true] = ACTIONS(358), - [anon_sym_false] = ACTIONS(358), - [sym_null_literal] = ACTIONS(358), - [sym_underscore] = ACTIONS(358), + [sym_identifier] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_DASH_GT] = ACTIONS(365), + [anon_sym_var] = ACTIONS(363), + [anon_sym_val] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(365), + [anon_sym_return] = ACTIONS(363), + [anon_sym_repeat] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [sym_break_statement] = ACTIONS(363), + [sym_continue_statement] = ACTIONS(363), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_PLUS_EQ] = ACTIONS(365), + [anon_sym_DASH_EQ] = ACTIONS(365), + [anon_sym_STAR_EQ] = ACTIONS(365), + [anon_sym_SLASH_EQ] = ACTIONS(365), + [anon_sym_PERCENT_EQ] = ACTIONS(365), + [anon_sym_LT_LT_EQ] = ACTIONS(365), + [anon_sym_GT_GT_EQ] = ACTIONS(365), + [anon_sym_AMP_EQ] = ACTIONS(365), + [anon_sym_PIPE_EQ] = ACTIONS(365), + [anon_sym_CARET_EQ] = ACTIONS(365), + [anon_sym_QMARK] = ACTIONS(365), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ] = ACTIONS(365), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_LT_EQ_GT] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_TILDE_GT_GT] = ACTIONS(365), + [anon_sym_CARET_GT_GT] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(363), + [anon_sym_TILDE_SLASH] = ACTIONS(365), + [anon_sym_CARET_SLASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_lazy] = ACTIONS(363), + [anon_sym_as] = ACTIONS(363), + [anon_sym_is] = ACTIONS(363), + [anon_sym_BANGis] = ACTIONS(365), + [anon_sym_match] = ACTIONS(363), + [sym_number_literal] = ACTIONS(365), + [sym_string_literal] = ACTIONS(365), + [anon_sym_true] = ACTIONS(363), + [anon_sym_false] = ACTIONS(363), + [sym_null_literal] = ACTIONS(363), + [sym_underscore] = ACTIONS(363), [sym_comment] = ACTIONS(3), }, [STATE(43)] = { - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(364), - [anon_sym_EQ] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(364), - [anon_sym_RBRACE] = ACTIONS(364), - [anon_sym_DOT] = ACTIONS(364), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_DASH_GT] = ACTIONS(364), - [anon_sym_var] = ACTIONS(362), - [anon_sym_val] = ACTIONS(362), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_return] = ACTIONS(362), - [anon_sym_repeat] = ACTIONS(362), - [anon_sym_if] = ACTIONS(362), - [anon_sym_do] = ACTIONS(362), - [anon_sym_while] = ACTIONS(362), - [sym_break_statement] = ACTIONS(362), - [sym_continue_statement] = ACTIONS(362), - [anon_sym_throw] = ACTIONS(362), - [anon_sym_assert] = ACTIONS(362), - [anon_sym_try] = ACTIONS(362), - [anon_sym_PLUS_EQ] = ACTIONS(364), - [anon_sym_DASH_EQ] = ACTIONS(364), - [anon_sym_STAR_EQ] = ACTIONS(364), - [anon_sym_SLASH_EQ] = ACTIONS(364), - [anon_sym_PERCENT_EQ] = ACTIONS(364), - [anon_sym_LT_LT_EQ] = ACTIONS(364), - [anon_sym_GT_GT_EQ] = ACTIONS(364), - [anon_sym_AMP_EQ] = ACTIONS(364), - [anon_sym_PIPE_EQ] = ACTIONS(364), - [anon_sym_CARET_EQ] = ACTIONS(364), - [anon_sym_QMARK] = ACTIONS(364), - [anon_sym_AMP_AMP] = ACTIONS(364), - [anon_sym_PIPE_PIPE] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_CARET] = ACTIONS(362), - [anon_sym_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_LT_EQ_GT] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(362), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_TILDE_GT_GT] = ACTIONS(364), - [anon_sym_CARET_GT_GT] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_PERCENT] = ACTIONS(362), - [anon_sym_TILDE_SLASH] = ACTIONS(364), - [anon_sym_CARET_SLASH] = ACTIONS(364), - [anon_sym_BANG] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_lazy] = ACTIONS(362), - [anon_sym_as] = ACTIONS(362), - [anon_sym_is] = ACTIONS(362), - [anon_sym_BANGis] = ACTIONS(364), - [anon_sym_match] = ACTIONS(362), - [sym_number_literal] = ACTIONS(364), - [sym_string_literal] = ACTIONS(364), - [anon_sym_true] = ACTIONS(362), - [anon_sym_false] = ACTIONS(362), - [sym_null_literal] = ACTIONS(362), - [sym_underscore] = ACTIONS(362), + [sym_identifier] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(367), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_var] = ACTIONS(367), + [anon_sym_val] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(369), + [anon_sym_return] = ACTIONS(367), + [anon_sym_repeat] = ACTIONS(367), + [anon_sym_if] = ACTIONS(367), + [anon_sym_do] = ACTIONS(367), + [anon_sym_while] = ACTIONS(367), + [sym_break_statement] = ACTIONS(367), + [sym_continue_statement] = ACTIONS(367), + [anon_sym_throw] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(367), + [anon_sym_try] = ACTIONS(367), + [anon_sym_PLUS_EQ] = ACTIONS(369), + [anon_sym_DASH_EQ] = ACTIONS(369), + [anon_sym_STAR_EQ] = ACTIONS(369), + [anon_sym_SLASH_EQ] = ACTIONS(369), + [anon_sym_PERCENT_EQ] = ACTIONS(369), + [anon_sym_LT_LT_EQ] = ACTIONS(369), + [anon_sym_GT_GT_EQ] = ACTIONS(369), + [anon_sym_AMP_EQ] = ACTIONS(369), + [anon_sym_PIPE_EQ] = ACTIONS(369), + [anon_sym_CARET_EQ] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(367), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(367), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_TILDE_GT_GT] = ACTIONS(369), + [anon_sym_CARET_GT_GT] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_SLASH] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(367), + [anon_sym_TILDE_SLASH] = ACTIONS(369), + [anon_sym_CARET_SLASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_lazy] = ACTIONS(367), + [anon_sym_as] = ACTIONS(367), + [anon_sym_is] = ACTIONS(367), + [anon_sym_BANGis] = ACTIONS(369), + [anon_sym_match] = ACTIONS(367), + [sym_number_literal] = ACTIONS(369), + [sym_string_literal] = ACTIONS(369), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [sym_null_literal] = ACTIONS(367), + [sym_underscore] = ACTIONS(367), [sym_comment] = ACTIONS(3), }, [STATE(44)] = { - [sym_identifier] = ACTIONS(366), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_DASH_GT] = ACTIONS(368), - [anon_sym_var] = ACTIONS(366), - [anon_sym_val] = ACTIONS(366), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_return] = ACTIONS(366), - [anon_sym_repeat] = ACTIONS(366), - [anon_sym_if] = ACTIONS(366), - [anon_sym_do] = ACTIONS(366), - [anon_sym_while] = ACTIONS(366), - [sym_break_statement] = ACTIONS(366), - [sym_continue_statement] = ACTIONS(366), - [anon_sym_throw] = ACTIONS(366), - [anon_sym_assert] = ACTIONS(366), - [anon_sym_try] = ACTIONS(366), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(366), - [anon_sym_CARET] = ACTIONS(366), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ_GT] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(366), - [anon_sym_GT_GT] = ACTIONS(366), - [anon_sym_TILDE_GT_GT] = ACTIONS(368), - [anon_sym_CARET_GT_GT] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_SLASH] = ACTIONS(366), - [anon_sym_PERCENT] = ACTIONS(366), - [anon_sym_TILDE_SLASH] = ACTIONS(368), - [anon_sym_CARET_SLASH] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_lazy] = ACTIONS(366), - [anon_sym_as] = ACTIONS(366), - [anon_sym_is] = ACTIONS(366), - [anon_sym_BANGis] = ACTIONS(368), - [anon_sym_match] = ACTIONS(366), - [sym_number_literal] = ACTIONS(368), - [sym_string_literal] = ACTIONS(368), - [anon_sym_true] = ACTIONS(366), - [anon_sym_false] = ACTIONS(366), - [sym_null_literal] = ACTIONS(366), - [sym_underscore] = ACTIONS(366), + [sym_identifier] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_DASH_GT] = ACTIONS(305), + [anon_sym_var] = ACTIONS(373), + [anon_sym_val] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_return] = ACTIONS(373), + [anon_sym_repeat] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), + [anon_sym_do] = ACTIONS(373), + [anon_sym_while] = ACTIONS(373), + [sym_break_statement] = ACTIONS(373), + [sym_continue_statement] = ACTIONS(373), + [anon_sym_throw] = ACTIONS(373), + [anon_sym_assert] = ACTIONS(373), + [anon_sym_try] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ_GT] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_TILDE_GT_GT] = ACTIONS(375), + [anon_sym_CARET_GT_GT] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(373), + [anon_sym_TILDE_SLASH] = ACTIONS(375), + [anon_sym_CARET_SLASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(373), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_lazy] = ACTIONS(373), + [anon_sym_as] = ACTIONS(373), + [anon_sym_is] = ACTIONS(373), + [anon_sym_BANGis] = ACTIONS(375), + [anon_sym_match] = ACTIONS(373), + [sym_number_literal] = ACTIONS(375), + [sym_string_literal] = ACTIONS(375), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_null_literal] = ACTIONS(373), + [sym_underscore] = ACTIONS(373), [sym_comment] = ACTIONS(3), }, [STATE(45)] = { - [sym_identifier] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_RBRACE] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(342), - [anon_sym_var] = ACTIONS(372), - [anon_sym_val] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_return] = ACTIONS(372), - [anon_sym_repeat] = ACTIONS(372), - [anon_sym_if] = ACTIONS(372), - [anon_sym_do] = ACTIONS(372), - [anon_sym_while] = ACTIONS(372), - [sym_break_statement] = ACTIONS(372), - [sym_continue_statement] = ACTIONS(372), - [anon_sym_throw] = ACTIONS(372), - [anon_sym_assert] = ACTIONS(372), - [anon_sym_try] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(372), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ_GT] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_TILDE_GT_GT] = ACTIONS(374), - [anon_sym_CARET_GT_GT] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PERCENT] = ACTIONS(372), - [anon_sym_TILDE_SLASH] = ACTIONS(374), - [anon_sym_CARET_SLASH] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_TILDE] = ACTIONS(372), - [anon_sym_lazy] = ACTIONS(372), - [anon_sym_as] = ACTIONS(372), - [anon_sym_is] = ACTIONS(372), - [anon_sym_BANGis] = ACTIONS(374), - [anon_sym_match] = ACTIONS(372), - [sym_number_literal] = ACTIONS(374), - [sym_string_literal] = ACTIONS(374), - [anon_sym_true] = ACTIONS(372), - [anon_sym_false] = ACTIONS(372), - [sym_null_literal] = ACTIONS(372), - [sym_underscore] = ACTIONS(372), + [sym_identifier] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_var] = ACTIONS(377), + [anon_sym_val] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_return] = ACTIONS(377), + [anon_sym_repeat] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_do] = ACTIONS(377), + [anon_sym_while] = ACTIONS(377), + [sym_break_statement] = ACTIONS(377), + [sym_continue_statement] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_assert] = ACTIONS(377), + [anon_sym_try] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ_GT] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_TILDE_GT_GT] = ACTIONS(379), + [anon_sym_CARET_GT_GT] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_TILDE_SLASH] = ACTIONS(379), + [anon_sym_CARET_SLASH] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(377), + [anon_sym_lazy] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_is] = ACTIONS(377), + [anon_sym_BANGis] = ACTIONS(379), + [anon_sym_match] = ACTIONS(377), + [sym_number_literal] = ACTIONS(379), + [sym_string_literal] = ACTIONS(379), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_null_literal] = ACTIONS(377), + [sym_underscore] = ACTIONS(377), [sym_comment] = ACTIONS(3), }, [STATE(46)] = { - [sym_identifier] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_LPAREN] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(382), - [anon_sym_var] = ACTIONS(376), - [anon_sym_val] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_return] = ACTIONS(376), - [anon_sym_repeat] = ACTIONS(376), - [anon_sym_if] = ACTIONS(376), - [anon_sym_do] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - [sym_break_statement] = ACTIONS(376), - [sym_continue_statement] = ACTIONS(376), - [anon_sym_throw] = ACTIONS(376), - [anon_sym_assert] = ACTIONS(376), - [anon_sym_try] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ_GT] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_TILDE_GT_GT] = ACTIONS(378), - [anon_sym_CARET_GT_GT] = ACTIONS(378), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_TILDE_SLASH] = ACTIONS(378), - [anon_sym_CARET_SLASH] = ACTIONS(378), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lazy] = ACTIONS(376), - [anon_sym_as] = ACTIONS(376), - [anon_sym_is] = ACTIONS(376), - [anon_sym_BANGis] = ACTIONS(378), - [anon_sym_match] = ACTIONS(376), - [sym_number_literal] = ACTIONS(378), - [sym_string_literal] = ACTIONS(378), - [anon_sym_true] = ACTIONS(376), - [anon_sym_false] = ACTIONS(376), - [sym_null_literal] = ACTIONS(376), - [sym_underscore] = ACTIONS(376), + [sym_identifier] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_var] = ACTIONS(381), + [anon_sym_val] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_return] = ACTIONS(381), + [anon_sym_repeat] = ACTIONS(381), + [anon_sym_if] = ACTIONS(381), + [anon_sym_do] = ACTIONS(381), + [anon_sym_while] = ACTIONS(381), + [sym_break_statement] = ACTIONS(381), + [sym_continue_statement] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_assert] = ACTIONS(381), + [anon_sym_try] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ_GT] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_TILDE_GT_GT] = ACTIONS(383), + [anon_sym_CARET_GT_GT] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_TILDE_SLASH] = ACTIONS(383), + [anon_sym_CARET_SLASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_lazy] = ACTIONS(381), + [anon_sym_as] = ACTIONS(381), + [anon_sym_is] = ACTIONS(381), + [anon_sym_BANGis] = ACTIONS(383), + [anon_sym_match] = ACTIONS(381), + [sym_number_literal] = ACTIONS(383), + [sym_string_literal] = ACTIONS(383), + [anon_sym_true] = ACTIONS(381), + [anon_sym_false] = ACTIONS(381), + [sym_null_literal] = ACTIONS(381), + [sym_underscore] = ACTIONS(381), [sym_comment] = ACTIONS(3), }, [STATE(47)] = { @@ -8598,14 +8615,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(48)] = { [sym_identifier] = ACTIONS(389), [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(389), [anon_sym_PIPE] = ACTIONS(389), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(391), [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), [anon_sym_var] = ACTIONS(389), [anon_sym_val] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(391), @@ -8619,43 +8636,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(389), [anon_sym_assert] = ACTIONS(389), [anon_sym_try] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(186), - [anon_sym_DASH_EQ] = ACTIONS(186), - [anon_sym_STAR_EQ] = ACTIONS(186), - [anon_sym_SLASH_EQ] = ACTIONS(186), - [anon_sym_PERCENT_EQ] = ACTIONS(186), - [anon_sym_LT_LT_EQ] = ACTIONS(186), - [anon_sym_GT_GT_EQ] = ACTIONS(186), - [anon_sym_AMP_EQ] = ACTIONS(186), - [anon_sym_PIPE_EQ] = ACTIONS(186), - [anon_sym_CARET_EQ] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_AMP_AMP] = ACTIONS(186), - [anon_sym_PIPE_PIPE] = ACTIONS(186), - [anon_sym_AMP] = ACTIONS(182), - [anon_sym_CARET] = ACTIONS(182), - [anon_sym_EQ_EQ] = ACTIONS(186), - [anon_sym_BANG_EQ] = ACTIONS(186), - [anon_sym_LT_EQ] = ACTIONS(182), - [anon_sym_GT_EQ] = ACTIONS(186), - [anon_sym_LT_EQ_GT] = ACTIONS(186), - [anon_sym_LT_LT] = ACTIONS(182), - [anon_sym_GT_GT] = ACTIONS(182), - [anon_sym_TILDE_GT_GT] = ACTIONS(186), - [anon_sym_CARET_GT_GT] = ACTIONS(186), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ_GT] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_TILDE_GT_GT] = ACTIONS(391), + [anon_sym_CARET_GT_GT] = ACTIONS(391), [anon_sym_DASH] = ACTIONS(389), [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_PERCENT] = ACTIONS(182), - [anon_sym_TILDE_SLASH] = ACTIONS(186), - [anon_sym_CARET_SLASH] = ACTIONS(186), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_TILDE_SLASH] = ACTIONS(391), + [anon_sym_CARET_SLASH] = ACTIONS(391), [anon_sym_BANG] = ACTIONS(389), [anon_sym_TILDE] = ACTIONS(389), [anon_sym_lazy] = ACTIONS(389), - [anon_sym_as] = ACTIONS(182), - [anon_sym_is] = ACTIONS(182), - [anon_sym_BANGis] = ACTIONS(186), + [anon_sym_as] = ACTIONS(389), + [anon_sym_is] = ACTIONS(389), + [anon_sym_BANGis] = ACTIONS(391), [anon_sym_match] = ACTIONS(389), [sym_number_literal] = ACTIONS(391), [sym_string_literal] = ACTIONS(391), @@ -9577,18 +9594,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(62)] = { [sym_identifier] = ACTIONS(445), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(397), [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_GT] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), [anon_sym_var] = ACTIONS(445), [anon_sym_val] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(448), [anon_sym_return] = ACTIONS(445), [anon_sym_repeat] = ACTIONS(445), [anon_sym_if] = ACTIONS(445), @@ -9599,46 +9616,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(445), [anon_sym_assert] = ACTIONS(445), [anon_sym_try] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(447), - [anon_sym_DASH_EQ] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(447), - [anon_sym_SLASH_EQ] = ACTIONS(447), - [anon_sym_PERCENT_EQ] = ACTIONS(447), - [anon_sym_LT_LT_EQ] = ACTIONS(447), - [anon_sym_GT_GT_EQ] = ACTIONS(447), - [anon_sym_AMP_EQ] = ACTIONS(447), - [anon_sym_PIPE_EQ] = ACTIONS(447), - [anon_sym_CARET_EQ] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(445), - [anon_sym_CARET] = ACTIONS(445), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(447), - [anon_sym_LT_EQ_GT] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_TILDE_GT_GT] = ACTIONS(447), - [anon_sym_CARET_GT_GT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ_GT] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_TILDE_GT_GT] = ACTIONS(399), + [anon_sym_CARET_GT_GT] = ACTIONS(399), [anon_sym_DASH] = ACTIONS(445), [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_TILDE_SLASH] = ACTIONS(447), - [anon_sym_CARET_SLASH] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_TILDE_SLASH] = ACTIONS(399), + [anon_sym_CARET_SLASH] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(445), [anon_sym_TILDE] = ACTIONS(445), [anon_sym_lazy] = ACTIONS(445), - [anon_sym_as] = ACTIONS(445), - [anon_sym_is] = ACTIONS(445), - [anon_sym_BANGis] = ACTIONS(447), + [anon_sym_as] = ACTIONS(397), + [anon_sym_is] = ACTIONS(397), + [anon_sym_BANGis] = ACTIONS(399), [anon_sym_match] = ACTIONS(445), - [sym_number_literal] = ACTIONS(447), - [sym_string_literal] = ACTIONS(447), + [sym_number_literal] = ACTIONS(448), + [sym_string_literal] = ACTIONS(448), [anon_sym_true] = ACTIONS(445), [anon_sym_false] = ACTIONS(445), [sym_null_literal] = ACTIONS(445), @@ -9646,930 +9663,858 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(63)] = { - [sym_identifier] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_var] = ACTIONS(449), - [anon_sym_val] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_return] = ACTIONS(449), - [anon_sym_repeat] = ACTIONS(449), - [anon_sym_if] = ACTIONS(449), - [anon_sym_do] = ACTIONS(449), - [anon_sym_while] = ACTIONS(449), - [sym_break_statement] = ACTIONS(449), - [sym_continue_statement] = ACTIONS(449), - [anon_sym_throw] = ACTIONS(449), - [anon_sym_assert] = ACTIONS(449), - [anon_sym_try] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_EQ_GT] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(449), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_TILDE_GT_GT] = ACTIONS(451), - [anon_sym_CARET_GT_GT] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_TILDE_SLASH] = ACTIONS(451), - [anon_sym_CARET_SLASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_lazy] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_is] = ACTIONS(449), - [anon_sym_BANGis] = ACTIONS(451), - [anon_sym_match] = ACTIONS(449), - [sym_number_literal] = ACTIONS(451), - [sym_string_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [sym_null_literal] = ACTIONS(449), - [sym_underscore] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_var] = ACTIONS(451), + [anon_sym_val] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_return] = ACTIONS(451), + [anon_sym_repeat] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_do] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [sym_break_statement] = ACTIONS(451), + [sym_continue_statement] = ACTIONS(451), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_assert] = ACTIONS(451), + [anon_sym_try] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_EQ_GT] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_TILDE_GT_GT] = ACTIONS(453), + [anon_sym_CARET_GT_GT] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_CARET_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_lazy] = ACTIONS(451), + [anon_sym_as] = ACTIONS(451), + [anon_sym_is] = ACTIONS(451), + [anon_sym_BANGis] = ACTIONS(453), + [anon_sym_match] = ACTIONS(451), + [sym_number_literal] = ACTIONS(453), + [sym_string_literal] = ACTIONS(453), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_null_literal] = ACTIONS(451), + [sym_underscore] = ACTIONS(451), [sym_comment] = ACTIONS(3), }, [STATE(64)] = { - [sym_identifier] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_var] = ACTIONS(453), - [anon_sym_val] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_return] = ACTIONS(453), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_if] = ACTIONS(453), - [anon_sym_do] = ACTIONS(453), - [anon_sym_while] = ACTIONS(453), - [sym_break_statement] = ACTIONS(453), - [sym_continue_statement] = ACTIONS(453), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_assert] = ACTIONS(453), - [anon_sym_try] = ACTIONS(453), - [anon_sym_PLUS_EQ] = ACTIONS(455), - [anon_sym_DASH_EQ] = ACTIONS(455), - [anon_sym_STAR_EQ] = ACTIONS(455), - [anon_sym_SLASH_EQ] = ACTIONS(455), - [anon_sym_PERCENT_EQ] = ACTIONS(455), - [anon_sym_LT_LT_EQ] = ACTIONS(455), - [anon_sym_GT_GT_EQ] = ACTIONS(455), - [anon_sym_AMP_EQ] = ACTIONS(455), - [anon_sym_PIPE_EQ] = ACTIONS(455), - [anon_sym_CARET_EQ] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_BANG_EQ] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(455), - [anon_sym_LT_EQ_GT] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_TILDE_GT_GT] = ACTIONS(455), - [anon_sym_CARET_GT_GT] = ACTIONS(455), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_TILDE_SLASH] = ACTIONS(455), - [anon_sym_CARET_SLASH] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_lazy] = ACTIONS(453), - [anon_sym_as] = ACTIONS(453), - [anon_sym_is] = ACTIONS(453), - [anon_sym_BANGis] = ACTIONS(455), - [anon_sym_match] = ACTIONS(453), - [sym_number_literal] = ACTIONS(455), - [sym_string_literal] = ACTIONS(455), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [sym_null_literal] = ACTIONS(453), - [sym_underscore] = ACTIONS(453), + [sym_identifier] = ACTIONS(455), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_DOT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_var] = ACTIONS(455), + [anon_sym_val] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_return] = ACTIONS(455), + [anon_sym_repeat] = ACTIONS(455), + [anon_sym_if] = ACTIONS(455), + [anon_sym_do] = ACTIONS(455), + [anon_sym_while] = ACTIONS(455), + [sym_break_statement] = ACTIONS(455), + [sym_continue_statement] = ACTIONS(455), + [anon_sym_throw] = ACTIONS(455), + [anon_sym_assert] = ACTIONS(455), + [anon_sym_try] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(457), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(455), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_LT_EQ_GT] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_TILDE_GT_GT] = ACTIONS(457), + [anon_sym_CARET_GT_GT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_TILDE_SLASH] = ACTIONS(457), + [anon_sym_CARET_SLASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_lazy] = ACTIONS(455), + [anon_sym_as] = ACTIONS(455), + [anon_sym_is] = ACTIONS(455), + [anon_sym_BANGis] = ACTIONS(457), + [anon_sym_match] = ACTIONS(455), + [sym_number_literal] = ACTIONS(457), + [sym_string_literal] = ACTIONS(457), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [sym_null_literal] = ACTIONS(455), + [sym_underscore] = ACTIONS(455), [sym_comment] = ACTIONS(3), }, [STATE(65)] = { - [sym_identifier] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(459), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_var] = ACTIONS(457), - [anon_sym_val] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_return] = ACTIONS(457), - [anon_sym_repeat] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_do] = ACTIONS(457), - [anon_sym_while] = ACTIONS(457), - [sym_break_statement] = ACTIONS(457), - [sym_continue_statement] = ACTIONS(457), - [anon_sym_throw] = ACTIONS(457), - [anon_sym_assert] = ACTIONS(457), - [anon_sym_try] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_EQ_GT] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_TILDE_GT_GT] = ACTIONS(459), - [anon_sym_CARET_GT_GT] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(457), - [anon_sym_PERCENT] = ACTIONS(457), - [anon_sym_TILDE_SLASH] = ACTIONS(459), - [anon_sym_CARET_SLASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_lazy] = ACTIONS(457), - [anon_sym_as] = ACTIONS(457), - [anon_sym_is] = ACTIONS(457), - [anon_sym_BANGis] = ACTIONS(459), - [anon_sym_match] = ACTIONS(457), - [sym_number_literal] = ACTIONS(459), - [sym_string_literal] = ACTIONS(459), - [anon_sym_true] = ACTIONS(457), - [anon_sym_false] = ACTIONS(457), - [sym_null_literal] = ACTIONS(457), - [sym_underscore] = ACTIONS(457), + [sym_identifier] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_var] = ACTIONS(459), + [anon_sym_val] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_return] = ACTIONS(459), + [anon_sym_repeat] = ACTIONS(459), + [anon_sym_if] = ACTIONS(459), + [anon_sym_do] = ACTIONS(459), + [anon_sym_while] = ACTIONS(459), + [sym_break_statement] = ACTIONS(459), + [sym_continue_statement] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(459), + [anon_sym_assert] = ACTIONS(459), + [anon_sym_try] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_STAR_EQ] = ACTIONS(461), + [anon_sym_SLASH_EQ] = ACTIONS(461), + [anon_sym_PERCENT_EQ] = ACTIONS(461), + [anon_sym_LT_LT_EQ] = ACTIONS(461), + [anon_sym_GT_GT_EQ] = ACTIONS(461), + [anon_sym_AMP_EQ] = ACTIONS(461), + [anon_sym_PIPE_EQ] = ACTIONS(461), + [anon_sym_CARET_EQ] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_LT_EQ_GT] = ACTIONS(461), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(459), + [anon_sym_TILDE_GT_GT] = ACTIONS(461), + [anon_sym_CARET_GT_GT] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(459), + [anon_sym_TILDE_SLASH] = ACTIONS(461), + [anon_sym_CARET_SLASH] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_lazy] = ACTIONS(459), + [anon_sym_as] = ACTIONS(459), + [anon_sym_is] = ACTIONS(459), + [anon_sym_BANGis] = ACTIONS(461), + [anon_sym_match] = ACTIONS(459), + [sym_number_literal] = ACTIONS(461), + [sym_string_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [sym_null_literal] = ACTIONS(459), + [sym_underscore] = ACTIONS(459), [sym_comment] = ACTIONS(3), }, [STATE(66)] = { - [sym_identifier] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_var] = ACTIONS(461), - [anon_sym_val] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_return] = ACTIONS(461), - [anon_sym_repeat] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_do] = ACTIONS(461), - [anon_sym_while] = ACTIONS(461), - [sym_break_statement] = ACTIONS(461), - [sym_continue_statement] = ACTIONS(461), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_assert] = ACTIONS(461), - [anon_sym_try] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_LT_EQ_GT] = ACTIONS(463), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_TILDE_GT_GT] = ACTIONS(463), - [anon_sym_CARET_GT_GT] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_TILDE_SLASH] = ACTIONS(463), - [anon_sym_CARET_SLASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_lazy] = ACTIONS(461), - [anon_sym_as] = ACTIONS(461), - [anon_sym_is] = ACTIONS(461), - [anon_sym_BANGis] = ACTIONS(463), - [anon_sym_match] = ACTIONS(461), - [sym_number_literal] = ACTIONS(463), - [sym_string_literal] = ACTIONS(463), - [anon_sym_true] = ACTIONS(461), - [anon_sym_false] = ACTIONS(461), - [sym_null_literal] = ACTIONS(461), - [sym_underscore] = ACTIONS(461), + [sym_identifier] = ACTIONS(463), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_var] = ACTIONS(463), + [anon_sym_val] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_return] = ACTIONS(463), + [anon_sym_repeat] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_do] = ACTIONS(463), + [anon_sym_while] = ACTIONS(463), + [sym_break_statement] = ACTIONS(463), + [sym_continue_statement] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(463), + [anon_sym_assert] = ACTIONS(463), + [anon_sym_try] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_STAR_EQ] = ACTIONS(465), + [anon_sym_SLASH_EQ] = ACTIONS(465), + [anon_sym_PERCENT_EQ] = ACTIONS(465), + [anon_sym_LT_LT_EQ] = ACTIONS(465), + [anon_sym_GT_GT_EQ] = ACTIONS(465), + [anon_sym_AMP_EQ] = ACTIONS(465), + [anon_sym_PIPE_EQ] = ACTIONS(465), + [anon_sym_CARET_EQ] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_LT_EQ_GT] = ACTIONS(465), + [anon_sym_LT_LT] = ACTIONS(463), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_TILDE_GT_GT] = ACTIONS(465), + [anon_sym_CARET_GT_GT] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_PERCENT] = ACTIONS(463), + [anon_sym_TILDE_SLASH] = ACTIONS(465), + [anon_sym_CARET_SLASH] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_lazy] = ACTIONS(463), + [anon_sym_as] = ACTIONS(463), + [anon_sym_is] = ACTIONS(463), + [anon_sym_BANGis] = ACTIONS(465), + [anon_sym_match] = ACTIONS(463), + [sym_number_literal] = ACTIONS(465), + [sym_string_literal] = ACTIONS(465), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [sym_null_literal] = ACTIONS(463), + [sym_underscore] = ACTIONS(463), [sym_comment] = ACTIONS(3), }, [STATE(67)] = { - [sym_identifier] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_EQ] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_var] = ACTIONS(465), - [anon_sym_val] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_return] = ACTIONS(465), - [anon_sym_repeat] = ACTIONS(465), - [anon_sym_if] = ACTIONS(465), - [anon_sym_do] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [sym_break_statement] = ACTIONS(465), - [sym_continue_statement] = ACTIONS(465), - [anon_sym_throw] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(465), - [anon_sym_try] = ACTIONS(465), - [anon_sym_PLUS_EQ] = ACTIONS(467), - [anon_sym_DASH_EQ] = ACTIONS(467), - [anon_sym_STAR_EQ] = ACTIONS(467), - [anon_sym_SLASH_EQ] = ACTIONS(467), - [anon_sym_PERCENT_EQ] = ACTIONS(467), - [anon_sym_LT_LT_EQ] = ACTIONS(467), - [anon_sym_GT_GT_EQ] = ACTIONS(467), - [anon_sym_AMP_EQ] = ACTIONS(467), - [anon_sym_PIPE_EQ] = ACTIONS(467), - [anon_sym_CARET_EQ] = ACTIONS(467), - [anon_sym_QMARK] = ACTIONS(467), - [anon_sym_AMP_AMP] = ACTIONS(467), - [anon_sym_PIPE_PIPE] = ACTIONS(467), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(467), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(467), - [anon_sym_LT_EQ_GT] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_GT_GT] = ACTIONS(465), - [anon_sym_TILDE_GT_GT] = ACTIONS(467), - [anon_sym_CARET_GT_GT] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_TILDE_SLASH] = ACTIONS(467), - [anon_sym_CARET_SLASH] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_lazy] = ACTIONS(465), - [anon_sym_as] = ACTIONS(465), - [anon_sym_is] = ACTIONS(465), - [anon_sym_BANGis] = ACTIONS(467), - [anon_sym_match] = ACTIONS(465), - [sym_number_literal] = ACTIONS(467), - [sym_string_literal] = ACTIONS(467), - [anon_sym_true] = ACTIONS(465), - [anon_sym_false] = ACTIONS(465), - [sym_null_literal] = ACTIONS(465), - [sym_underscore] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_val] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_return] = ACTIONS(467), + [anon_sym_repeat] = ACTIONS(467), + [anon_sym_if] = ACTIONS(467), + [anon_sym_do] = ACTIONS(467), + [anon_sym_while] = ACTIONS(467), + [sym_break_statement] = ACTIONS(467), + [sym_continue_statement] = ACTIONS(467), + [anon_sym_throw] = ACTIONS(467), + [anon_sym_assert] = ACTIONS(467), + [anon_sym_try] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_LT_EQ_GT] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_TILDE_GT_GT] = ACTIONS(469), + [anon_sym_CARET_GT_GT] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(467), + [anon_sym_PERCENT] = ACTIONS(467), + [anon_sym_TILDE_SLASH] = ACTIONS(469), + [anon_sym_CARET_SLASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(467), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_lazy] = ACTIONS(467), + [anon_sym_as] = ACTIONS(467), + [anon_sym_is] = ACTIONS(467), + [anon_sym_BANGis] = ACTIONS(469), + [anon_sym_match] = ACTIONS(467), + [sym_number_literal] = ACTIONS(469), + [sym_string_literal] = ACTIONS(469), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [sym_null_literal] = ACTIONS(467), + [sym_underscore] = ACTIONS(467), [sym_comment] = ACTIONS(3), }, [STATE(68)] = { - [sym_identifier] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(471), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_val] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_return] = ACTIONS(469), - [anon_sym_repeat] = ACTIONS(469), - [anon_sym_if] = ACTIONS(469), - [anon_sym_do] = ACTIONS(469), - [anon_sym_while] = ACTIONS(469), - [sym_break_statement] = ACTIONS(469), - [sym_continue_statement] = ACTIONS(469), - [anon_sym_throw] = ACTIONS(469), - [anon_sym_assert] = ACTIONS(469), - [anon_sym_try] = ACTIONS(469), - [anon_sym_PLUS_EQ] = ACTIONS(471), - [anon_sym_DASH_EQ] = ACTIONS(471), - [anon_sym_STAR_EQ] = ACTIONS(471), - [anon_sym_SLASH_EQ] = ACTIONS(471), - [anon_sym_PERCENT_EQ] = ACTIONS(471), - [anon_sym_LT_LT_EQ] = ACTIONS(471), - [anon_sym_GT_GT_EQ] = ACTIONS(471), - [anon_sym_AMP_EQ] = ACTIONS(471), - [anon_sym_PIPE_EQ] = ACTIONS(471), - [anon_sym_CARET_EQ] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(471), - [anon_sym_AMP_AMP] = ACTIONS(471), - [anon_sym_PIPE_PIPE] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(469), - [anon_sym_CARET] = ACTIONS(469), - [anon_sym_EQ_EQ] = ACTIONS(471), - [anon_sym_BANG_EQ] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT_EQ] = ACTIONS(471), - [anon_sym_LT_EQ_GT] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_GT_GT] = ACTIONS(469), - [anon_sym_TILDE_GT_GT] = ACTIONS(471), - [anon_sym_CARET_GT_GT] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(469), - [anon_sym_TILDE_SLASH] = ACTIONS(471), - [anon_sym_CARET_SLASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(469), - [anon_sym_lazy] = ACTIONS(469), - [anon_sym_as] = ACTIONS(469), - [anon_sym_is] = ACTIONS(469), - [anon_sym_BANGis] = ACTIONS(471), - [anon_sym_match] = ACTIONS(469), - [sym_number_literal] = ACTIONS(471), - [sym_string_literal] = ACTIONS(471), - [anon_sym_true] = ACTIONS(469), - [anon_sym_false] = ACTIONS(469), - [sym_null_literal] = ACTIONS(469), - [sym_underscore] = ACTIONS(469), + [sym_identifier] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_var] = ACTIONS(471), + [anon_sym_val] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_return] = ACTIONS(471), + [anon_sym_repeat] = ACTIONS(471), + [anon_sym_if] = ACTIONS(471), + [anon_sym_do] = ACTIONS(471), + [anon_sym_while] = ACTIONS(471), + [sym_break_statement] = ACTIONS(471), + [sym_continue_statement] = ACTIONS(471), + [anon_sym_throw] = ACTIONS(471), + [anon_sym_assert] = ACTIONS(471), + [anon_sym_try] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(473), + [anon_sym_PIPE_PIPE] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(473), + [anon_sym_BANG_EQ] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_EQ_GT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_TILDE_GT_GT] = ACTIONS(473), + [anon_sym_CARET_GT_GT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(471), + [anon_sym_SLASH] = ACTIONS(471), + [anon_sym_PERCENT] = ACTIONS(471), + [anon_sym_TILDE_SLASH] = ACTIONS(473), + [anon_sym_CARET_SLASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_lazy] = ACTIONS(471), + [anon_sym_as] = ACTIONS(471), + [anon_sym_is] = ACTIONS(471), + [anon_sym_BANGis] = ACTIONS(473), + [anon_sym_match] = ACTIONS(471), + [sym_number_literal] = ACTIONS(473), + [sym_string_literal] = ACTIONS(473), + [anon_sym_true] = ACTIONS(471), + [anon_sym_false] = ACTIONS(471), + [sym_null_literal] = ACTIONS(471), + [sym_underscore] = ACTIONS(471), [sym_comment] = ACTIONS(3), }, [STATE(69)] = { - [sym_identifier] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(473), - [anon_sym_var] = ACTIONS(473), - [anon_sym_val] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_return] = ACTIONS(473), - [anon_sym_repeat] = ACTIONS(473), - [anon_sym_if] = ACTIONS(473), - [anon_sym_do] = ACTIONS(473), - [anon_sym_while] = ACTIONS(473), - [sym_break_statement] = ACTIONS(473), - [sym_continue_statement] = ACTIONS(473), - [anon_sym_throw] = ACTIONS(473), - [anon_sym_assert] = ACTIONS(473), - [anon_sym_try] = ACTIONS(473), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), - [anon_sym_STAR_EQ] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(475), - [anon_sym_PERCENT_EQ] = ACTIONS(475), - [anon_sym_LT_LT_EQ] = ACTIONS(475), - [anon_sym_GT_GT_EQ] = ACTIONS(475), - [anon_sym_AMP_EQ] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(475), - [anon_sym_CARET_EQ] = ACTIONS(475), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(473), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_LT_EQ_GT] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_TILDE_GT_GT] = ACTIONS(475), - [anon_sym_CARET_GT_GT] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(473), - [anon_sym_PERCENT] = ACTIONS(473), - [anon_sym_TILDE_SLASH] = ACTIONS(475), - [anon_sym_CARET_SLASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_TILDE] = ACTIONS(473), - [anon_sym_lazy] = ACTIONS(473), - [anon_sym_as] = ACTIONS(473), - [anon_sym_is] = ACTIONS(473), - [anon_sym_BANGis] = ACTIONS(475), - [anon_sym_match] = ACTIONS(473), - [sym_number_literal] = ACTIONS(475), - [sym_string_literal] = ACTIONS(475), - [anon_sym_true] = ACTIONS(473), - [anon_sym_false] = ACTIONS(473), - [sym_null_literal] = ACTIONS(473), - [sym_underscore] = ACTIONS(473), + [sym_identifier] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(182), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_var] = ACTIONS(475), + [anon_sym_val] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_return] = ACTIONS(475), + [anon_sym_repeat] = ACTIONS(475), + [anon_sym_if] = ACTIONS(475), + [anon_sym_do] = ACTIONS(475), + [anon_sym_while] = ACTIONS(475), + [sym_break_statement] = ACTIONS(475), + [sym_continue_statement] = ACTIONS(475), + [anon_sym_throw] = ACTIONS(475), + [anon_sym_assert] = ACTIONS(475), + [anon_sym_try] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(186), + [anon_sym_DASH_EQ] = ACTIONS(186), + [anon_sym_STAR_EQ] = ACTIONS(186), + [anon_sym_SLASH_EQ] = ACTIONS(186), + [anon_sym_PERCENT_EQ] = ACTIONS(186), + [anon_sym_LT_LT_EQ] = ACTIONS(186), + [anon_sym_GT_GT_EQ] = ACTIONS(186), + [anon_sym_AMP_EQ] = ACTIONS(186), + [anon_sym_PIPE_EQ] = ACTIONS(186), + [anon_sym_CARET_EQ] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_AMP_AMP] = ACTIONS(186), + [anon_sym_PIPE_PIPE] = ACTIONS(186), + [anon_sym_AMP] = ACTIONS(182), + [anon_sym_CARET] = ACTIONS(182), + [anon_sym_EQ_EQ] = ACTIONS(186), + [anon_sym_BANG_EQ] = ACTIONS(186), + [anon_sym_LT_EQ] = ACTIONS(182), + [anon_sym_GT_EQ] = ACTIONS(186), + [anon_sym_LT_EQ_GT] = ACTIONS(186), + [anon_sym_LT_LT] = ACTIONS(182), + [anon_sym_GT_GT] = ACTIONS(182), + [anon_sym_TILDE_GT_GT] = ACTIONS(186), + [anon_sym_CARET_GT_GT] = ACTIONS(186), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_STAR] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_PERCENT] = ACTIONS(182), + [anon_sym_TILDE_SLASH] = ACTIONS(186), + [anon_sym_CARET_SLASH] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_lazy] = ACTIONS(475), + [anon_sym_as] = ACTIONS(182), + [anon_sym_is] = ACTIONS(182), + [anon_sym_BANGis] = ACTIONS(186), + [anon_sym_match] = ACTIONS(475), + [sym_number_literal] = ACTIONS(477), + [sym_string_literal] = ACTIONS(477), + [anon_sym_true] = ACTIONS(475), + [anon_sym_false] = ACTIONS(475), + [sym_null_literal] = ACTIONS(475), + [sym_underscore] = ACTIONS(475), [sym_comment] = ACTIONS(3), }, [STATE(70)] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_var] = ACTIONS(477), - [anon_sym_val] = ACTIONS(477), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_return] = ACTIONS(477), - [anon_sym_repeat] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_do] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [sym_break_statement] = ACTIONS(477), - [sym_continue_statement] = ACTIONS(477), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_assert] = ACTIONS(477), - [anon_sym_try] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(479), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_EQ_GT] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_TILDE_GT_GT] = ACTIONS(479), - [anon_sym_CARET_GT_GT] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_PERCENT] = ACTIONS(477), - [anon_sym_TILDE_SLASH] = ACTIONS(479), - [anon_sym_CARET_SLASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_lazy] = ACTIONS(477), - [anon_sym_as] = ACTIONS(477), - [anon_sym_is] = ACTIONS(477), - [anon_sym_BANGis] = ACTIONS(479), - [anon_sym_match] = ACTIONS(477), - [sym_number_literal] = ACTIONS(479), - [sym_string_literal] = ACTIONS(479), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [sym_null_literal] = ACTIONS(477), - [sym_underscore] = ACTIONS(477), + [sym_identifier] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_var] = ACTIONS(479), + [anon_sym_val] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_return] = ACTIONS(479), + [anon_sym_repeat] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_do] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [sym_break_statement] = ACTIONS(479), + [sym_continue_statement] = ACTIONS(479), + [anon_sym_throw] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(479), + [anon_sym_try] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_LT_EQ_GT] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_TILDE_GT_GT] = ACTIONS(481), + [anon_sym_CARET_GT_GT] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(479), + [anon_sym_PERCENT] = ACTIONS(479), + [anon_sym_TILDE_SLASH] = ACTIONS(481), + [anon_sym_CARET_SLASH] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_lazy] = ACTIONS(479), + [anon_sym_as] = ACTIONS(479), + [anon_sym_is] = ACTIONS(479), + [anon_sym_BANGis] = ACTIONS(481), + [anon_sym_match] = ACTIONS(479), + [sym_number_literal] = ACTIONS(481), + [sym_string_literal] = ACTIONS(481), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [sym_null_literal] = ACTIONS(479), + [sym_underscore] = ACTIONS(479), [sym_comment] = ACTIONS(3), }, [STATE(71)] = { - [sym_identifier] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_var] = ACTIONS(481), - [anon_sym_val] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_return] = ACTIONS(481), - [anon_sym_repeat] = ACTIONS(481), - [anon_sym_if] = ACTIONS(481), - [anon_sym_do] = ACTIONS(481), - [anon_sym_while] = ACTIONS(481), - [sym_break_statement] = ACTIONS(481), - [sym_continue_statement] = ACTIONS(481), - [anon_sym_throw] = ACTIONS(481), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_try] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_STAR_EQ] = ACTIONS(483), - [anon_sym_SLASH_EQ] = ACTIONS(483), - [anon_sym_PERCENT_EQ] = ACTIONS(483), - [anon_sym_LT_LT_EQ] = ACTIONS(483), - [anon_sym_GT_GT_EQ] = ACTIONS(483), - [anon_sym_AMP_EQ] = ACTIONS(483), - [anon_sym_PIPE_EQ] = ACTIONS(483), - [anon_sym_CARET_EQ] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_LT_EQ_GT] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_TILDE_GT_GT] = ACTIONS(483), - [anon_sym_CARET_GT_GT] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_TILDE_SLASH] = ACTIONS(483), - [anon_sym_CARET_SLASH] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_lazy] = ACTIONS(481), - [anon_sym_as] = ACTIONS(481), - [anon_sym_is] = ACTIONS(481), - [anon_sym_BANGis] = ACTIONS(483), - [anon_sym_match] = ACTIONS(481), - [sym_number_literal] = ACTIONS(483), - [sym_string_literal] = ACTIONS(483), - [anon_sym_true] = ACTIONS(481), - [anon_sym_false] = ACTIONS(481), - [sym_null_literal] = ACTIONS(481), - [sym_underscore] = ACTIONS(481), + [sym_identifier] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_var] = ACTIONS(483), + [anon_sym_val] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_return] = ACTIONS(483), + [anon_sym_repeat] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_do] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [sym_break_statement] = ACTIONS(483), + [sym_continue_statement] = ACTIONS(483), + [anon_sym_throw] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(483), + [anon_sym_try] = ACTIONS(483), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(483), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_LT_EQ_GT] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(483), + [anon_sym_TILDE_GT_GT] = ACTIONS(485), + [anon_sym_CARET_GT_GT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_SLASH] = ACTIONS(483), + [anon_sym_PERCENT] = ACTIONS(483), + [anon_sym_TILDE_SLASH] = ACTIONS(485), + [anon_sym_CARET_SLASH] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_lazy] = ACTIONS(483), + [anon_sym_as] = ACTIONS(483), + [anon_sym_is] = ACTIONS(483), + [anon_sym_BANGis] = ACTIONS(485), + [anon_sym_match] = ACTIONS(483), + [sym_number_literal] = ACTIONS(485), + [sym_string_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [sym_null_literal] = ACTIONS(483), + [sym_underscore] = ACTIONS(483), [sym_comment] = ACTIONS(3), }, [STATE(72)] = { - [sym_identifier] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(487), - [anon_sym_RBRACE] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(485), - [anon_sym_GT] = ACTIONS(485), - [anon_sym_var] = ACTIONS(485), - [anon_sym_val] = ACTIONS(485), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_return] = ACTIONS(485), - [anon_sym_repeat] = ACTIONS(485), - [anon_sym_if] = ACTIONS(485), - [anon_sym_do] = ACTIONS(485), - [anon_sym_while] = ACTIONS(485), - [sym_break_statement] = ACTIONS(485), - [sym_continue_statement] = ACTIONS(485), - [anon_sym_throw] = ACTIONS(485), - [anon_sym_assert] = ACTIONS(485), - [anon_sym_try] = ACTIONS(485), - [anon_sym_PLUS_EQ] = ACTIONS(487), - [anon_sym_DASH_EQ] = ACTIONS(487), - [anon_sym_STAR_EQ] = ACTIONS(487), - [anon_sym_SLASH_EQ] = ACTIONS(487), - [anon_sym_PERCENT_EQ] = ACTIONS(487), - [anon_sym_LT_LT_EQ] = ACTIONS(487), - [anon_sym_GT_GT_EQ] = ACTIONS(487), - [anon_sym_AMP_EQ] = ACTIONS(487), - [anon_sym_PIPE_EQ] = ACTIONS(487), - [anon_sym_CARET_EQ] = ACTIONS(487), - [anon_sym_QMARK] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(487), - [anon_sym_PIPE_PIPE] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(485), - [anon_sym_CARET] = ACTIONS(485), - [anon_sym_EQ_EQ] = ACTIONS(487), - [anon_sym_BANG_EQ] = ACTIONS(487), - [anon_sym_LT_EQ] = ACTIONS(485), - [anon_sym_GT_EQ] = ACTIONS(487), - [anon_sym_LT_EQ_GT] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(485), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_TILDE_GT_GT] = ACTIONS(487), - [anon_sym_CARET_GT_GT] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(485), - [anon_sym_PERCENT] = ACTIONS(485), - [anon_sym_TILDE_SLASH] = ACTIONS(487), - [anon_sym_CARET_SLASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_lazy] = ACTIONS(485), - [anon_sym_as] = ACTIONS(485), - [anon_sym_is] = ACTIONS(485), - [anon_sym_BANGis] = ACTIONS(487), - [anon_sym_match] = ACTIONS(485), - [sym_number_literal] = ACTIONS(487), - [sym_string_literal] = ACTIONS(487), - [anon_sym_true] = ACTIONS(485), - [anon_sym_false] = ACTIONS(485), - [sym_null_literal] = ACTIONS(485), - [sym_underscore] = ACTIONS(485), + [sym_identifier] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_val] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_return] = ACTIONS(487), + [anon_sym_repeat] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [sym_break_statement] = ACTIONS(487), + [sym_continue_statement] = ACTIONS(487), + [anon_sym_throw] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_LT_LT_EQ] = ACTIONS(489), + [anon_sym_GT_GT_EQ] = ACTIONS(489), + [anon_sym_AMP_EQ] = ACTIONS(489), + [anon_sym_PIPE_EQ] = ACTIONS(489), + [anon_sym_CARET_EQ] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_EQ_GT] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(489), + [anon_sym_CARET_GT_GT] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_PERCENT] = ACTIONS(487), + [anon_sym_TILDE_SLASH] = ACTIONS(489), + [anon_sym_CARET_SLASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(487), + [anon_sym_lazy] = ACTIONS(487), + [anon_sym_as] = ACTIONS(487), + [anon_sym_is] = ACTIONS(487), + [anon_sym_BANGis] = ACTIONS(489), + [anon_sym_match] = ACTIONS(487), + [sym_number_literal] = ACTIONS(489), + [sym_string_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [sym_null_literal] = ACTIONS(487), + [sym_underscore] = ACTIONS(487), [sym_comment] = ACTIONS(3), }, [STATE(73)] = { - [sym_identifier] = ACTIONS(489), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_EQ] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(489), - [anon_sym_LPAREN] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(491), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_var] = ACTIONS(489), - [anon_sym_val] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(491), - [anon_sym_return] = ACTIONS(489), - [anon_sym_repeat] = ACTIONS(489), - [anon_sym_if] = ACTIONS(489), - [anon_sym_do] = ACTIONS(489), - [anon_sym_while] = ACTIONS(489), - [sym_break_statement] = ACTIONS(489), - [sym_continue_statement] = ACTIONS(489), - [anon_sym_throw] = ACTIONS(489), - [anon_sym_assert] = ACTIONS(489), - [anon_sym_try] = ACTIONS(489), - [anon_sym_PLUS_EQ] = ACTIONS(491), - [anon_sym_DASH_EQ] = ACTIONS(491), - [anon_sym_STAR_EQ] = ACTIONS(491), - [anon_sym_SLASH_EQ] = ACTIONS(491), - [anon_sym_PERCENT_EQ] = ACTIONS(491), - [anon_sym_LT_LT_EQ] = ACTIONS(491), - [anon_sym_GT_GT_EQ] = ACTIONS(491), - [anon_sym_AMP_EQ] = ACTIONS(491), - [anon_sym_PIPE_EQ] = ACTIONS(491), - [anon_sym_CARET_EQ] = ACTIONS(491), - [anon_sym_QMARK] = ACTIONS(491), - [anon_sym_AMP_AMP] = ACTIONS(491), - [anon_sym_PIPE_PIPE] = ACTIONS(491), - [anon_sym_AMP] = ACTIONS(489), - [anon_sym_CARET] = ACTIONS(489), - [anon_sym_EQ_EQ] = ACTIONS(491), - [anon_sym_BANG_EQ] = ACTIONS(491), - [anon_sym_LT_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(491), - [anon_sym_LT_EQ_GT] = ACTIONS(491), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_TILDE_GT_GT] = ACTIONS(491), - [anon_sym_CARET_GT_GT] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(489), - [anon_sym_PLUS] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_TILDE_SLASH] = ACTIONS(491), - [anon_sym_CARET_SLASH] = ACTIONS(491), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_lazy] = ACTIONS(489), - [anon_sym_as] = ACTIONS(489), - [anon_sym_is] = ACTIONS(489), - [anon_sym_BANGis] = ACTIONS(491), - [anon_sym_match] = ACTIONS(489), - [sym_number_literal] = ACTIONS(491), - [sym_string_literal] = ACTIONS(491), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [sym_null_literal] = ACTIONS(489), - [sym_underscore] = ACTIONS(489), + [sym__type_hint] = STATE(135), + [sym_type_instantiatedTs] = STATE(135), + [sym_tensor_type] = STATE(135), + [sym_tuple_type] = STATE(135), + [sym_parenthesized_type] = STATE(135), + [sym_fun_callable_type] = STATE(135), + [sym_nullable_type] = STATE(135), + [sym_union_type] = STATE(135), + [sym_identifier] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_DOT] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_DASH_GT] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_else] = ACTIONS(177), + [anon_sym_PLUS_EQ] = ACTIONS(175), + [anon_sym_DASH_EQ] = ACTIONS(175), + [anon_sym_STAR_EQ] = ACTIONS(175), + [anon_sym_SLASH_EQ] = ACTIONS(175), + [anon_sym_PERCENT_EQ] = ACTIONS(175), + [anon_sym_LT_LT_EQ] = ACTIONS(175), + [anon_sym_GT_GT_EQ] = ACTIONS(175), + [anon_sym_AMP_EQ] = ACTIONS(175), + [anon_sym_PIPE_EQ] = ACTIONS(175), + [anon_sym_CARET_EQ] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(179), + [anon_sym_AMP_AMP] = ACTIONS(175), + [anon_sym_PIPE_PIPE] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(177), + [anon_sym_CARET] = ACTIONS(177), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_LT_EQ_GT] = ACTIONS(175), + [anon_sym_LT_LT] = ACTIONS(177), + [anon_sym_GT_GT] = ACTIONS(177), + [anon_sym_TILDE_GT_GT] = ACTIONS(175), + [anon_sym_CARET_GT_GT] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_STAR] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PERCENT] = ACTIONS(177), + [anon_sym_TILDE_SLASH] = ACTIONS(175), + [anon_sym_CARET_SLASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_lazy] = ACTIONS(177), + [anon_sym_as] = ACTIONS(177), + [anon_sym_is] = ACTIONS(177), + [anon_sym_BANGis] = ACTIONS(175), + [anon_sym_match] = ACTIONS(177), + [sym_number_literal] = ACTIONS(175), + [sym_string_literal] = ACTIONS(175), + [anon_sym_true] = ACTIONS(177), + [anon_sym_false] = ACTIONS(177), + [sym_null_literal] = ACTIONS(177), + [sym_underscore] = ACTIONS(177), [sym_comment] = ACTIONS(3), }, [STATE(74)] = { - [sym_identifier] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(453), + [sym__type_hint] = STATE(135), + [sym_type_instantiatedTs] = STATE(135), + [sym_tensor_type] = STATE(135), + [sym_tuple_type] = STATE(135), + [sym_parenthesized_type] = STATE(135), + [sym_fun_callable_type] = STATE(135), + [sym_nullable_type] = STATE(135), + [sym_union_type] = STATE(135), + [sym_identifier] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(167), [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_var] = ACTIONS(493), - [anon_sym_val] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_return] = ACTIONS(493), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_if] = ACTIONS(493), - [anon_sym_do] = ACTIONS(493), - [anon_sym_while] = ACTIONS(493), - [sym_break_statement] = ACTIONS(493), - [sym_continue_statement] = ACTIONS(493), - [anon_sym_throw] = ACTIONS(493), - [anon_sym_assert] = ACTIONS(493), - [anon_sym_try] = ACTIONS(493), - [anon_sym_PLUS_EQ] = ACTIONS(455), - [anon_sym_DASH_EQ] = ACTIONS(455), - [anon_sym_STAR_EQ] = ACTIONS(455), - [anon_sym_SLASH_EQ] = ACTIONS(455), - [anon_sym_PERCENT_EQ] = ACTIONS(455), - [anon_sym_LT_LT_EQ] = ACTIONS(455), - [anon_sym_GT_GT_EQ] = ACTIONS(455), - [anon_sym_AMP_EQ] = ACTIONS(455), - [anon_sym_PIPE_EQ] = ACTIONS(455), - [anon_sym_CARET_EQ] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_BANG_EQ] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(455), - [anon_sym_LT_EQ_GT] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_TILDE_GT_GT] = ACTIONS(455), - [anon_sym_CARET_GT_GT] = ACTIONS(455), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_TILDE_SLASH] = ACTIONS(455), - [anon_sym_CARET_SLASH] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_lazy] = ACTIONS(493), - [anon_sym_as] = ACTIONS(453), - [anon_sym_is] = ACTIONS(453), - [anon_sym_BANGis] = ACTIONS(455), - [anon_sym_match] = ACTIONS(493), - [sym_number_literal] = ACTIONS(496), - [sym_string_literal] = ACTIONS(496), - [anon_sym_true] = ACTIONS(493), - [anon_sym_false] = ACTIONS(493), - [sym_null_literal] = ACTIONS(493), - [sym_underscore] = ACTIONS(493), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [anon_sym_GT] = ACTIONS(167), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_else] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(165), + [anon_sym_DASH_EQ] = ACTIONS(165), + [anon_sym_STAR_EQ] = ACTIONS(165), + [anon_sym_SLASH_EQ] = ACTIONS(165), + [anon_sym_PERCENT_EQ] = ACTIONS(165), + [anon_sym_LT_LT_EQ] = ACTIONS(165), + [anon_sym_GT_GT_EQ] = ACTIONS(165), + [anon_sym_AMP_EQ] = ACTIONS(165), + [anon_sym_PIPE_EQ] = ACTIONS(165), + [anon_sym_CARET_EQ] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(167), + [anon_sym_GT_EQ] = ACTIONS(165), + [anon_sym_LT_EQ_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(167), + [anon_sym_GT_GT] = ACTIONS(167), + [anon_sym_TILDE_GT_GT] = ACTIONS(165), + [anon_sym_CARET_GT_GT] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_STAR] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(167), + [anon_sym_PERCENT] = ACTIONS(167), + [anon_sym_TILDE_SLASH] = ACTIONS(165), + [anon_sym_CARET_SLASH] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_lazy] = ACTIONS(167), + [anon_sym_as] = ACTIONS(167), + [anon_sym_is] = ACTIONS(167), + [anon_sym_BANGis] = ACTIONS(165), + [anon_sym_match] = ACTIONS(167), + [sym_number_literal] = ACTIONS(165), + [sym_string_literal] = ACTIONS(165), + [anon_sym_true] = ACTIONS(167), + [anon_sym_false] = ACTIONS(167), + [sym_null_literal] = ACTIONS(167), + [sym_underscore] = ACTIONS(167), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(499), 1, - anon_sym_LT, - STATE(90), 1, - sym_instantiationT_list, - ACTIONS(287), 25, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(202), 36, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [75] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(502), 1, sym_identifier, - ACTIONS(504), 1, + ACTIONS(501), 1, anon_sym_PIPE, - ACTIONS(506), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - STATE(166), 8, + STATE(201), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -10631,21 +10576,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - [156] = 9, + [81] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(502), 1, + ACTIONS(499), 1, sym_identifier, - ACTIONS(504), 1, + ACTIONS(501), 1, anon_sym_PIPE, - ACTIONS(506), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(505), 1, anon_sym_LBRACK, ACTIONS(179), 2, anon_sym_DASH_GT, anon_sym_QMARK, - STATE(166), 8, + STATE(201), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -10705,15 +10650,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - [239] = 3, + [164] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 26, - anon_sym_EQ, + ACTIONS(188), 1, anon_sym_PIPE, + ACTIONS(199), 1, anon_sym_LT, + STATE(461), 1, + sym_instantiationT_list, + ACTIONS(191), 2, + anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(202), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(182), 13, + anon_sym_EQ, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -10725,27 +10679,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(360), 36, + ACTIONS(186), 41, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -10757,7 +10708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -10768,22 +10718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [309] = 5, + [243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(510), 1, - anon_sym_PIPE, - ACTIONS(512), 1, - anon_sym_QMARK, - ACTIONS(366), 25, + ACTIONS(507), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_match_body, + ACTIONS(311), 15, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -10795,27 +10744,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(368), 35, + ACTIONS(313), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -10827,6 +10773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -10837,24 +10784,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [383] = 6, + [315] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(512), 1, - anon_sym_QMARK, - ACTIONS(514), 1, + ACTIONS(341), 1, anon_sym_PIPE, - ACTIONS(516), 1, + ACTIONS(319), 2, + anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(372), 25, + ACTIONS(344), 2, + anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(337), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -10866,26 +10814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(374), 34, + ACTIONS(339), 41, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -10907,24 +10853,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [459] = 6, + [389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(512), 1, - anon_sym_QMARK, - ACTIONS(514), 1, - anon_sym_PIPE, - ACTIONS(516), 1, - anon_sym_DASH_GT, - ACTIONS(336), 25, - anon_sym_EQ, + ACTIONS(509), 1, anon_sym_LT, + STATE(91), 1, + sym_instantiationT_list, + ACTIONS(279), 14, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -10936,26 +10878,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(338), 34, + ACTIONS(202), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, + anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -10967,6 +10908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -10977,23 +10919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [535] = 5, + [461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(518), 1, + ACTIONS(321), 1, + anon_sym_PIPE, + ACTIONS(323), 4, anon_sym_LBRACE, - STATE(113), 1, - sym_match_body, - ACTIONS(346), 26, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(347), 14, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11005,25 +10948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(348), 34, + ACTIONS(349), 41, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11035,7 +10977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -11046,22 +10987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [609] = 6, + [533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, - anon_sym_DASH_GT, ACTIONS(512), 1, - anon_sym_QMARK, - ACTIONS(520), 1, - anon_sym_PIPE, - ACTIONS(376), 25, - anon_sym_EQ, anon_sym_LT, + STATE(131), 1, + sym_instantiationT_list, + ACTIONS(279), 25, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_GT, anon_sym_else, anon_sym_AMP, @@ -11085,17 +11023,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(378), 34, - anon_sym_COLON, + ACTIONS(202), 32, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -11106,6 +11042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -11117,18 +11054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [685] = 3, + [604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(296), 26, + ACTIONS(351), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11140,27 +11075,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(298), 36, + ACTIONS(353), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11183,19 +11116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [755] = 3, + [671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 26, + ACTIONS(355), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11207,27 +11139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(306), 36, + ACTIONS(357), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11250,19 +11180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [825] = 3, + [738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(356), 26, + ACTIONS(329), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11274,27 +11203,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(326), 36, + ACTIONS(331), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11317,19 +11244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [895] = 3, + [805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 26, + ACTIONS(333), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11341,27 +11267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(310), 36, + ACTIONS(335), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11384,19 +11308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [965] = 3, + [872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 26, + ACTIONS(317), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11408,27 +11331,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(314), 36, + ACTIONS(319), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11451,19 +11372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1035] = 3, + [939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 26, - anon_sym_EQ, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(503), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_LBRACK, + ACTIONS(515), 1, anon_sym_PIPE, + STATE(238), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + ACTIONS(167), 16, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11475,27 +11411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, anon_sym_as, anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(334), 36, + ACTIONS(165), 31, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11520,17 +11445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_SLASH, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1105] = 3, + [1016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(362), 26, + ACTIONS(359), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11542,27 +11464,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(364), 36, + ACTIONS(361), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11585,24 +11505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1175] = 6, + [1083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(512), 1, - anon_sym_QMARK, - ACTIONS(514), 1, - anon_sym_PIPE, - ACTIONS(516), 1, - anon_sym_DASH_GT, - ACTIONS(352), 25, + ACTIONS(321), 15, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11614,26 +11528,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(354), 34, + ACTIONS(323), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, + anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11645,6 +11558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -11655,19 +11569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1251] = 3, + [1150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(292), 26, + ACTIONS(284), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11679,27 +11592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(294), 36, + ACTIONS(286), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11722,19 +11633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1321] = 3, + [1217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(300), 26, + ACTIONS(325), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11746,27 +11656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(302), 36, + ACTIONS(327), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11789,25 +11697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1391] = 5, + [1284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 1, - anon_sym_PIPE, - ACTIONS(334), 4, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(328), 25, + ACTIONS(363), 15, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11819,25 +11720,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(330), 32, + ACTIONS(365), 44, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, + anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11849,6 +11750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -11859,18 +11761,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, - sym_number_literal, - sym_string_literal, - [1465] = 3, + anon_sym_EQ_GT, + [1351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 26, - anon_sym_EQ, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(503), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_LBRACK, + ACTIONS(515), 1, anon_sym_PIPE, + ACTIONS(179), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + STATE(238), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + ACTIONS(177), 16, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -11882,26 +11803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, anon_sym_as, anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(455), 35, + ACTIONS(175), 29, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -11913,7 +11823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -11926,49 +11835,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_SLASH, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1534] = 3, + [1430] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(527), 1, + anon_sym_COMMA, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(525), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(517), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(459), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -11979,62 +11923,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1603] = 3, + [1545] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(565), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(563), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(447), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12045,62 +12010,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1672] = 3, + [1658] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(571), 1, + anon_sym_COMMA, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(569), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(567), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(451), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12111,62 +12098,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1741] = 3, + [1773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(575), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(573), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(479), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12177,62 +12185,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1810] = 3, + [1886] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(581), 1, + anon_sym_COMMA, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(579), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(577), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(475), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12243,62 +12273,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1879] = 3, + [2001] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(258), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(256), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(483), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12309,62 +12360,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [1948] = 3, + [2114] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 26, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(583), 1, + anon_sym_LT, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(260), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(491), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(262), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12378,59 +12440,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2017] = 3, + [2217] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(269), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(267), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(487), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12441,62 +12529,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2086] = 3, + [2330] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 26, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(583), 1, + anon_sym_LT, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(260), 10, + anon_sym_EQ, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(443), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(262), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12510,22 +12610,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2155] = 3, + [2435] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 26, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(551), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 16, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12534,35 +12658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(395), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(262), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12580,18 +12688,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2224] = 3, + [2530] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 26, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(549), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(551), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12602,33 +12732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(399), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(262), 25, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12648,16 +12764,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2293] = 3, + [2621] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 26, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(551), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 20, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12670,31 +12807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(403), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(262), 25, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12714,16 +12839,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2362] = 3, + [2710] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(405), 26, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(260), 23, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12739,28 +12878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(407), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(262), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12782,14 +12912,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2431] = 3, + [2795] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 26, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(551), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(271), 16, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12798,35 +12960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(411), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(273), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12844,55 +12990,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2500] = 3, + [2890] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(277), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(275), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(387), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(535), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12903,25 +13079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2569] = 3, + [3003] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 26, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(248), 25, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12937,7 +13110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, anon_sym_as, @@ -12948,17 +13120,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(415), 35, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(250), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12981,49 +13147,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [2638] = 3, + [3082] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 26, + ACTIONS(519), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, anon_sym_LT, + ACTIONS(533), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(537), 1, + anon_sym_QMARK, + ACTIONS(543), 1, anon_sym_LT_EQ, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(359), 1, + sym__brackets_lt_gt, + ACTIONS(539), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(545), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(547), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(553), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(521), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(551), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(541), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(254), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(252), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, - anon_sym_as, - anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(419), 35, + ACTIONS(535), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [3195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(427), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13046,19 +13295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2707] = 3, + [3261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 26, + ACTIONS(393), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -13070,26 +13318,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(423), 35, + ACTIONS(395), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13112,19 +13358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2776] = 3, + [3327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 26, + ACTIONS(421), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -13136,26 +13381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(427), 35, + ACTIONS(423), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13178,19 +13421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2845] = 3, + [3393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 26, + ACTIONS(451), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -13202,26 +13444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(431), 35, + ACTIONS(453), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13244,19 +13484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2914] = 3, + [3459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 26, + ACTIONS(479), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -13268,26 +13507,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(435), 35, + ACTIONS(481), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13310,19 +13547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [2983] = 3, + [3525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 26, + ACTIONS(487), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -13334,26 +13570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_as, - anon_sym_is, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(439), 35, + ACTIONS(489), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_COLON, anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13376,16 +13610,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - sym_number_literal, - sym_string_literal, - [3052] = 3, + [3591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 26, - anon_sym_EQ, + ACTIONS(586), 1, anon_sym_PIPE, + ACTIONS(588), 1, + anon_sym_DASH_GT, + ACTIONS(590), 1, + anon_sym_QMARK, + ACTIONS(299), 25, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -13410,17 +13649,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(463), 35, - anon_sym_COLON, + ACTIONS(301), 30, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13431,7 +13667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -13443,15 +13678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [3121] = 3, + [3663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 26, - anon_sym_EQ, + ACTIONS(586), 1, anon_sym_PIPE, + ACTIONS(588), 1, + anon_sym_DASH_GT, + ACTIONS(590), 1, + anon_sym_QMARK, + ACTIONS(307), 25, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -13476,17 +13715,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(467), 35, - anon_sym_COLON, + ACTIONS(309), 30, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13497,7 +13733,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -13509,29 +13744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [3190] = 8, + [3735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(188), 1, + ACTIONS(429), 15, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(199), 1, anon_sym_LT, - STATE(456), 1, - sym_instantiationT_list, - ACTIONS(202), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(191), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(182), 13, - anon_sym_EQ, anon_sym_GT, anon_sym_AMP, anon_sym_CARET, @@ -13544,7 +13765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(186), 38, + ACTIONS(431), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13555,11 +13776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_struct, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13570,6 +13794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -13583,10 +13808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [3269] = 3, + anon_sym_EQ_GT, + [3801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 26, + ACTIONS(592), 1, + anon_sym_LBRACE, + STATE(180), 1, + sym_match_body, + ACTIONS(311), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13613,17 +13843,13 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(471), 35, - anon_sym_COLON, + ACTIONS(313), 30, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13646,41 +13872,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - anon_sym_EQ_GT, sym_number_literal, sym_string_literal, - [3338] = 14, + [3871] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(526), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 20, - anon_sym_EQ, + ACTIONS(188), 1, anon_sym_PIPE, + ACTIONS(199), 1, anon_sym_LT, + ACTIONS(202), 1, + anon_sym_DASH_GT, + STATE(461), 1, + sym_instantiationT_list, + ACTIONS(191), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(182), 24, + anon_sym_EQ, anon_sym_GT, anon_sym_else, anon_sym_AMP, @@ -13690,19 +13899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(206), 26, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(186), 28, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13714,7 +13929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -13723,86 +13937,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, sym_number_literal, sym_string_literal, - [3428] = 26, + [3947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(401), 15, anon_sym_EQ, - ACTIONS(542), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(270), 7, + anon_sym_BANG, + ACTIONS(403), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(268), 9, - anon_sym_else, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(546), 10, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13813,74 +13990,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3542] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - ACTIONS(534), 1, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - ACTIONS(544), 1, + anon_sym_EQ_GT, + [4013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(554), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(562), 1, - anon_sym_LT, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(204), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(206), 20, + anon_sym_BANG, + ACTIONS(457), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13894,86 +14056,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_number_literal, - sym_string_literal, - [3646] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - ACTIONS(534), 1, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - ACTIONS(538), 1, + anon_sym_EQ_GT, + [4079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 1, + anon_sym_PIPE, + ACTIONS(323), 3, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_QMARK, + ACTIONS(347), 25, anon_sym_EQ, - ACTIONS(542), 1, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(277), 7, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(275), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(349), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13984,75 +14120,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3760] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [4149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(544), 1, + ACTIONS(463), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(554), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(562), 1, - anon_sym_LT, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(204), 10, - anon_sym_EQ, - anon_sym_else, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(206), 20, + anon_sym_BANG, + ACTIONS(465), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14066,68 +14184,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_number_literal, - sym_string_literal, - [3866] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - ACTIONS(534), 1, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(556), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(526), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 16, + anon_sym_EQ_GT, + [4215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(377), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(206), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(379), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14145,64 +14251,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - sym_number_literal, - sym_string_literal, - [3962] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - ACTIONS(534), 1, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(526), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 18, + anon_sym_EQ_GT, + [4281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(206), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(411), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14222,30 +14316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - sym_number_literal, - sym_string_literal, - [4054] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - ACTIONS(534), 1, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(204), 23, + anon_sym_EQ_GT, + [4347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14261,19 +14341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(206), 28, - anon_sym_RPAREN, + ACTIONS(319), 32, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -14296,46 +14382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_BANGis, sym_number_literal, sym_string_literal, - [4140] = 17, + [4413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(556), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(526), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(279), 16, + ACTIONS(321), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14344,19 +14397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(281), 24, - anon_sym_RPAREN, + ACTIONS(323), 32, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -14375,86 +14441,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, sym_number_literal, sym_string_literal, - [4236] = 26, + [4479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(284), 26, anon_sym_EQ, - ACTIONS(542), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(228), 7, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(226), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(286), 32, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14465,110 +14497,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4350] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, - anon_sym_EQ, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(544), 1, - anon_sym_GT, - ACTIONS(548), 1, anon_sym_QMARK, - ACTIONS(554), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(556), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(526), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(258), 7, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, sym_number_literal, sym_string_literal, - ACTIONS(256), 9, - anon_sym_else, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(546), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [4464] = 9, + [4545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(252), 25, + ACTIONS(325), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14584,6 +14530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, anon_sym_as, @@ -14594,11 +14541,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(254), 29, - anon_sym_RPAREN, + ACTIONS(327), 32, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -14624,24 +14574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [4544] = 6, + [4611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(320), 1, - anon_sym_PIPE, - ACTIONS(326), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(323), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(316), 14, + ACTIONS(329), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -14653,22 +14594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(318), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_COLON, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(331), 32, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_fun, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14679,6 +14623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -14689,25 +14634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [4618] = 8, + sym_number_literal, + sym_string_literal, + [4677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(188), 1, + ACTIONS(333), 26, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(199), 1, anon_sym_LT, - ACTIONS(202), 1, - anon_sym_DASH_GT, - STATE(456), 1, - sym_instantiationT_list, - ACTIONS(191), 2, - anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(182), 24, - anon_sym_EQ, anon_sym_GT, anon_sym_else, anon_sym_AMP, @@ -14731,12 +14667,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(186), 29, + ACTIONS(335), 32, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -14748,6 +14686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -14761,84 +14700,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [4695] = 27, + [4743] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(590), 1, + anon_sym_QMARK, + ACTIONS(594), 1, + anon_sym_PIPE, + ACTIONS(367), 25, anon_sym_EQ, - ACTIONS(542), 1, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(569), 1, - anon_sym_COMMA, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(567), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(565), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(369), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14849,83 +14752,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4810] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [4813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(586), 1, + anon_sym_PIPE, + ACTIONS(588), 1, + anon_sym_DASH_GT, + ACTIONS(590), 1, + anon_sym_QMARK, + ACTIONS(373), 25, anon_sym_EQ, - ACTIONS(542), 1, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(573), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(571), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(375), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14936,84 +14818,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4923] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [4885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(294), 1, + anon_sym_DASH_GT, + ACTIONS(590), 1, + anon_sym_QMARK, + ACTIONS(596), 1, + anon_sym_PIPE, + ACTIONS(288), 25, anon_sym_EQ, - ACTIONS(542), 1, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(579), 1, - anon_sym_COMMA, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(577), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(575), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(290), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15024,84 +14884,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5038] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [4957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(351), 26, anon_sym_EQ, - ACTIONS(542), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(585), 1, - anon_sym_COMMA, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(583), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(581), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(353), 32, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15112,83 +14946,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5153] = 26, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [5023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(355), 26, anon_sym_EQ, - ACTIONS(542), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(589), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(587), 9, - anon_sym_else, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(357), 32, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15199,18 +15009,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5266] = 6, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [5089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(320), 1, - anon_sym_PIPE, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(323), 2, - anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(316), 25, + ACTIONS(359), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -15235,12 +15053,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(318), 29, + ACTIONS(361), 32, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -15252,6 +15072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -15265,82 +15086,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5338] = 26, + [5155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(538), 1, + ACTIONS(467), 15, anon_sym_EQ, - ACTIONS(542), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(544), 1, anon_sym_GT, - ACTIONS(548), 1, - anon_sym_QMARK, - ACTIONS(554), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(294), 1, - sym__brackets_lt_gt, - ACTIONS(528), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(556), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(558), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(552), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(593), 6, + anon_sym_BANG, + ACTIONS(469), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(591), 8, + anon_sym_RBRACE, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [5221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 26, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, anon_sym_TILDE, anon_sym_lazy, + anon_sym_as, + anon_sym_is, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(546), 10, + ACTIONS(365), 32, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15351,20 +15198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5450] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [5287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 1, - anon_sym_PIPE, - ACTIONS(334), 6, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(328), 14, + ACTIONS(405), 15, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -15378,20 +15231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(330), 37, + ACTIONS(407), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15402,6 +15260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -15416,19 +15275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [5520] = 5, + [5353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(496), 7, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(453), 13, + ACTIONS(397), 15, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -15436,27 +15288,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, - anon_sym_is, - ACTIONS(493), 13, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(455), 23, + ACTIONS(399), 43, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15478,38 +15334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_BANGis, - [5588] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, anon_sym_as, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 9, + anon_sym_EQ_GT, + [5419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15519,18 +15351,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(206), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(473), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15550,22 +15395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - [5673] = 9, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [5485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(252), 14, + ACTIONS(483), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15580,18 +15419,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(254), 35, + anon_sym_BANG, + ACTIONS(485), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15616,115 +15463,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [5748] = 24, + anon_sym_EQ_GT, + [5551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, + ACTIONS(385), 15, anon_sym_EQ, - ACTIONS(615), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(617), 1, anon_sym_GT, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(627), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(619), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(258), 11, + anon_sym_BANG, + ACTIONS(387), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, - [5853] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(603), 2, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(609), 2, + anon_sym_as, anon_sym_is, anon_sym_BANGis, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 11, + anon_sym_EQ_GT, + [5617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15736,18 +15542,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(206), 30, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(391), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15767,43 +15584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - [5936] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(609), 2, + anon_sym_as, anon_sym_is, anon_sym_BANGis, - ACTIONS(629), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(279), 7, + anon_sym_EQ_GT, + [5683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15811,18 +15601,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(281), 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(419), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15840,27 +15645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [6025] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(609), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(204), 14, + anon_sym_EQ_GT, + [5749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15875,18 +15671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 32, + anon_sym_BANG, + ACTIONS(415), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15908,152 +15712,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - [6104] = 24, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [5815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, + ACTIONS(433), 15, anon_sym_EQ, - ACTIONS(615), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(617), 1, anon_sym_GT, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(627), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(619), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(270), 11, + anon_sym_BANG, + ACTIONS(435), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, - [6209] = 21, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [5881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, + ACTIONS(437), 15, anon_sym_EQ, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(617), 1, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(627), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(633), 1, - anon_sym_LT, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(206), 24, + anon_sym_BANG, + ACTIONS(439), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16067,147 +15830,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6308] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [5947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, + ACTIONS(441), 15, anon_sym_EQ, - ACTIONS(615), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(617), 1, anon_sym_GT, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(627), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(638), 1, - anon_sym_SEMI, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(619), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(636), 10, + anon_sym_BANG, + ACTIONS(443), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, + anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, - [6415] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, - anon_sym_EQ, - ACTIONS(615), 1, - anon_sym_LT, - ACTIONS(617), 1, - anon_sym_GT, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(627), 1, - anon_sym_LT_EQ, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(629), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(619), 10, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16218,164 +15890,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(228), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [6520] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, - anon_sym_EQ, - ACTIONS(615), 1, - anon_sym_LT, - ACTIONS(617), 1, - anon_sym_GT, - ACTIONS(621), 1, anon_sym_QMARK, - ACTIONS(627), 1, - anon_sym_LT_EQ, - ACTIONS(642), 1, - anon_sym_SEMI, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(629), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(619), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(640), 10, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [6627] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(617), 1, - anon_sym_GT, - ACTIONS(627), 1, - anon_sym_LT_EQ, - ACTIONS(633), 1, - anon_sym_LT, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(609), 2, + anon_sym_as, anon_sym_is, anon_sym_BANGis, - ACTIONS(629), 2, + anon_sym_EQ_GT, + [6013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(381), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(206), 24, + anon_sym_BANG, + ACTIONS(383), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16389,124 +15956,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6724] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, - anon_sym_EQ, - ACTIONS(615), 1, - anon_sym_LT, - ACTIONS(617), 1, - anon_sym_GT, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(627), 1, - anon_sym_LT_EQ, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(629), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(619), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(277), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [6829] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(609), 2, + anon_sym_as, anon_sym_is, anon_sym_BANGis, - ACTIONS(629), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 7, + anon_sym_EQ_GT, + [6079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(459), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16514,18 +15979,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(206), 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(461), 43, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16543,67 +16023,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [6918] = 25, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [6145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, + ACTIONS(451), 26, anon_sym_EQ, - ACTIONS(615), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(617), 1, anon_sym_GT, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(627), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(646), 1, - anon_sym_SEMI, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(619), 10, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(453), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16614,111 +16079,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 10, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [7025] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - anon_sym_DOT, - ACTIONS(605), 1, - anon_sym_BANG, - ACTIONS(607), 1, - anon_sym_as, - ACTIONS(611), 1, - anon_sym_EQ, - ACTIONS(615), 1, - anon_sym_LT, - ACTIONS(617), 1, - anon_sym_GT, - ACTIONS(621), 1, anon_sym_QMARK, - ACTIONS(627), 1, - anon_sym_LT_EQ, - ACTIONS(650), 1, - anon_sym_SEMI, - STATE(180), 1, - sym_instantiationT_list, - STATE(197), 1, - sym_argument_list, - STATE(315), 1, - sym__brackets_lt_gt, - ACTIONS(599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(603), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(609), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(623), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(629), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(631), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(601), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(613), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(619), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(648), 10, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [7132] = 5, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + sym_number_literal, + sym_string_literal, + [6210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(652), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_match_body, - ACTIONS(346), 15, + ACTIONS(413), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -16730,20 +16113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(348), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(415), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16765,20 +16152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7198] = 5, + sym_number_literal, + sym_string_literal, + [6275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - anon_sym_LT, - STATE(174), 1, - sym_instantiationT_list, - ACTIONS(287), 14, + ACTIONS(425), 26, anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -16790,21 +16175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(202), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(427), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16826,17 +16214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7264] = 3, + sym_number_literal, + sym_string_literal, + [6340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 15, + ACTIONS(421), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -16848,21 +16237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(360), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(423), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16884,22 +16276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7325] = 6, + sym_number_literal, + sym_string_literal, + [6405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(657), 1, - anon_sym_PIPE, - ACTIONS(659), 1, - anon_sym_DASH_GT, - ACTIONS(661), 1, - anon_sym_QMARK, - ACTIONS(336), 14, + ACTIONS(429), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -16911,20 +16299,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(338), 36, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(431), 31, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16935,6 +16327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -16945,22 +16338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7392] = 6, + sym_number_literal, + sym_string_literal, + [6470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(657), 1, - anon_sym_PIPE, - ACTIONS(659), 1, - anon_sym_DASH_GT, - ACTIONS(661), 1, - anon_sym_QMARK, - ACTIONS(352), 14, + ACTIONS(471), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -16972,20 +16361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(354), 36, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(473), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16996,6 +16389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -17006,20 +16400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7459] = 5, + sym_number_literal, + sym_string_literal, + [6535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 1, - anon_sym_QMARK, - ACTIONS(663), 1, - anon_sym_PIPE, - ACTIONS(366), 14, + ACTIONS(455), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17031,21 +16423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(368), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(457), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17056,6 +16451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -17066,22 +16462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7524] = 6, + sym_number_literal, + sym_string_literal, + [6600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(657), 1, - anon_sym_PIPE, - ACTIONS(659), 1, - anon_sym_DASH_GT, - ACTIONS(661), 1, - anon_sym_QMARK, - ACTIONS(372), 14, + ACTIONS(459), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17093,20 +16485,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(374), 36, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(461), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17117,6 +16513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -17127,17 +16524,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7591] = 3, + sym_number_literal, + sym_string_literal, + [6665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(296), 15, - anon_sym_EQ, + ACTIONS(319), 1, + anon_sym_DASH_GT, + ACTIONS(341), 1, anon_sym_PIPE, + ACTIONS(344), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(337), 25, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17149,21 +16553,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(298), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(339), 28, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17174,7 +16579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -17185,17 +16589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7652] = 3, + sym_number_literal, + sym_string_literal, + [6736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(300), 15, + ACTIONS(463), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17207,21 +16612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(302), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(465), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17243,17 +16651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7713] = 3, + sym_number_literal, + sym_string_literal, + [6801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 15, + ACTIONS(385), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17265,21 +16674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(306), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(387), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17301,17 +16713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7774] = 3, + sym_number_literal, + sym_string_literal, + [6866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 15, + ACTIONS(483), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17323,21 +16736,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(314), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(485), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17359,22 +16775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7835] = 6, + sym_number_literal, + sym_string_literal, + [6931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, - anon_sym_DASH_GT, - ACTIONS(661), 1, - anon_sym_QMARK, - ACTIONS(665), 1, - anon_sym_PIPE, - ACTIONS(376), 14, + ACTIONS(389), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17386,20 +16798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(378), 36, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(391), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17410,6 +16826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -17420,17 +16837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7902] = 3, + sym_number_literal, + sym_string_literal, + [6996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(356), 15, + ACTIONS(441), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17442,21 +16860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(326), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(443), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17478,17 +16899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [7963] = 3, + sym_number_literal, + sym_string_literal, + [7061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(362), 15, + ACTIONS(393), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17500,21 +16922,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(364), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(395), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17536,17 +16961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8024] = 3, + sym_number_literal, + sym_string_literal, + [7126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(292), 15, + ACTIONS(381), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17558,21 +16984,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(294), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(383), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17594,17 +17023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8085] = 3, + sym_number_literal, + sym_string_literal, + [7191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 15, + ACTIONS(467), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17616,21 +17046,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(334), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(469), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17652,17 +17085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8146] = 3, + sym_number_literal, + sym_string_literal, + [7256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 15, + ACTIONS(479), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17674,21 +17108,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(310), 38, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(481), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17710,17 +17147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8207] = 3, + sym_number_literal, + sym_string_literal, + [7321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 15, + ACTIONS(487), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17732,20 +17170,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(455), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(489), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17767,17 +17209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8267] = 3, + sym_number_literal, + sym_string_literal, + [7386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 15, + ACTIONS(401), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17789,20 +17232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(483), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(403), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17824,17 +17271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8327] = 3, + sym_number_literal, + sym_string_literal, + [7451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 15, + ACTIONS(377), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17846,20 +17294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(471), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(379), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17881,17 +17333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8387] = 3, + sym_number_literal, + sym_string_literal, + [7516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 15, + ACTIONS(409), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17903,20 +17356,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(459), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(411), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17938,17 +17395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8447] = 3, + sym_number_literal, + sym_string_literal, + [7581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 15, + ACTIONS(397), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -17960,20 +17418,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(491), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(399), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17995,17 +17457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8507] = 3, + sym_number_literal, + sym_string_literal, + [7646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 15, + ACTIONS(405), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -18017,20 +17480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(487), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(407), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18052,17 +17519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8567] = 3, + sym_number_literal, + sym_string_literal, + [7711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 15, + ACTIONS(417), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -18074,20 +17542,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(395), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(419), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18109,17 +17581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8627] = 3, + sym_number_literal, + sym_string_literal, + [7776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 15, + ACTIONS(433), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -18131,20 +17604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(399), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(435), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18166,17 +17643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8687] = 3, + sym_number_literal, + sym_string_literal, + [7841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 15, + ACTIONS(437), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, @@ -18188,20 +17666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(403), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_as, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(439), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, anon_sym_LPAREN, - anon_sym_fun, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18223,15 +17705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8747] = 3, + sym_number_literal, + sym_string_literal, + [7906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(405), 15, + ACTIONS(448), 7, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(397), 13, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -18239,26 +17728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_as, + anon_sym_is, + ACTIONS(445), 13, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_BANG, - ACTIONS(407), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_LPAREN, - anon_sym_fun, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(399), 23, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18280,42 +17770,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [8807] = 3, + [7974] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 15, + ACTIONS(598), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, anon_sym_LT, + ACTIONS(608), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(612), 1, + anon_sym_QMARK, + ACTIONS(618), 1, anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(620), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(622), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(624), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(600), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(463), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_LPAREN, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18326,40 +17840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, - anon_sym_BANGis, - [8867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(411), 37, + ACTIONS(269), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18368,68 +17849,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + [8079] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + ACTIONS(638), 1, + anon_sym_SEMI, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [8927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(385), 15, - anon_sym_EQ, + ACTIONS(600), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(387), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_LPAREN, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18440,53 +17923,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + ACTIONS(636), 10, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [8186] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + ACTIONS(642), 1, + anon_sym_SEMI, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [8987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 15, - anon_sym_EQ, + ACTIONS(600), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(415), 37, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_LPAREN, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18497,53 +18005,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + ACTIONS(640), 10, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [8293] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + ACTIONS(646), 1, + anon_sym_SEMI, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 15, - anon_sym_EQ, + ACTIONS(600), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(419), 37, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(644), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, + [8400] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, + anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + ACTIONS(650), 1, + anon_sym_SEMI, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(600), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -18554,24 +18169,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + ACTIONS(648), 10, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [8507] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(600), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(616), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(610), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(258), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [8612] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + ACTIONS(652), 1, + anon_sym_LT, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9107] = 3, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(262), 24, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [8709] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 15, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(248), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18586,8 +18368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(423), 37, + ACTIONS(250), 35, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18596,9 +18377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -18625,26 +18404,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9167] = 3, + [8784] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 15, + ACTIONS(260), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(608), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(618), 1, anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + ACTIONS(652), 1, + anon_sym_LT, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(620), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(622), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(624), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(600), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(427), 37, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(262), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18653,9 +18466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -18671,21 +18482,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + [8883] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 15, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18693,15 +18526,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(262), 28, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [8972] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(624), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(439), 37, + ACTIONS(260), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(262), 30, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18710,9 +18604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -18734,15 +18626,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + [9057] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 15, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 11, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18754,11 +18665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(431), 37, + ACTIONS(262), 30, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18767,9 +18674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -18791,15 +18696,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, + [9140] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 15, + ACTIONS(260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18814,8 +18731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(467), 37, + ACTIONS(262), 32, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18824,9 +18740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -18850,13 +18764,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + [9219] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 15, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(271), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18864,15 +18808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(443), 37, + ACTIONS(273), 28, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18881,9 +18817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -18903,19 +18837,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + [9308] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, + anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(634), 2, anon_sym_is, anon_sym_BANGis, - [9467] = 3, + ACTIONS(600), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(277), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [9413] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 15, + ACTIONS(598), 1, anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(608), 1, + anon_sym_GT, + ACTIONS(612), 1, + anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_LT_EQ, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(632), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(405), 1, + sym__brackets_lt_gt, + ACTIONS(614), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(622), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(628), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(634), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(600), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(616), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(610), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(254), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [9518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_DASH_GT, + ACTIONS(655), 1, anon_sym_PIPE, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(288), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -18929,7 +19023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(479), 37, + ACTIONS(290), 36, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -18953,7 +19047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -18967,12 +19060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9527] = 3, + [9585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 15, - anon_sym_EQ, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(659), 1, anon_sym_PIPE, + ACTIONS(367), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -18986,7 +19082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(435), 37, + ACTIONS(369), 37, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19000,6 +19096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_DASH_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -19010,7 +19107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -19024,12 +19120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9587] = 3, + [9650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 15, - anon_sym_EQ, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(661), 1, anon_sym_PIPE, + ACTIONS(663), 1, + anon_sym_DASH_GT, + ACTIONS(307), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -19043,7 +19144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(447), 37, + ACTIONS(309), 36, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19067,7 +19168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -19081,12 +19181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9647] = 3, + [9717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 15, - anon_sym_EQ, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(661), 1, anon_sym_PIPE, + ACTIONS(663), 1, + anon_sym_DASH_GT, + ACTIONS(373), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -19100,7 +19205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(451), 37, + ACTIONS(375), 36, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19124,7 +19229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -19138,12 +19242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9707] = 3, + [9784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 15, - anon_sym_EQ, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(661), 1, anon_sym_PIPE, + ACTIONS(663), 1, + anon_sym_DASH_GT, + ACTIONS(299), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -19157,7 +19266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(475), 37, + ACTIONS(301), 36, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19181,7 +19290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -19195,52 +19303,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9767] = 21, + [9851] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(675), 1, + ACTIONS(673), 1, anon_sym_return, - ACTIONS(677), 1, + ACTIONS(675), 1, anon_sym_throw, - ACTIONS(681), 1, + ACTIONS(679), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - STATE(466), 1, + STATE(475), 1, sym_throw_statement, - STATE(468), 1, + STATE(479), 1, sym_return_statement, - STATE(473), 1, + STATE(481), 1, sym_block_statement, - ACTIONS(685), 2, + ACTIONS(683), 2, sym_number_literal, sym_string_literal, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(689), 2, + ACTIONS(687), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -19249,7 +19357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(138), 19, + STATE(95), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -19269,113 +19377,52 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [9862] = 8, + [9946] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(188), 1, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(191), 1, - anon_sym_QMARK, - ACTIONS(199), 1, - anon_sym_LT, - STATE(456), 1, - sym_instantiationT_list, - ACTIONS(202), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(182), 16, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_is, + ACTIONS(665), 1, sym_identifier, - ACTIONS(186), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - [9931] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(675), 1, + ACTIONS(673), 1, anon_sym_return, - ACTIONS(677), 1, + ACTIONS(675), 1, anon_sym_throw, - ACTIONS(681), 1, + ACTIONS(679), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - STATE(471), 1, + STATE(478), 1, sym_block_statement, - STATE(472), 1, + STATE(480), 1, sym_return_statement, - STATE(474), 1, + STATE(482), 1, sym_throw_statement, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(691), 2, + ACTIONS(689), 2, sym_number_literal, sym_string_literal, - ACTIONS(693), 2, + ACTIONS(691), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -19384,7 +19431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(136), 19, + STATE(99), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -19404,52 +19451,52 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10026] = 21, + [10041] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(675), 1, + ACTIONS(673), 1, anon_sym_return, - ACTIONS(677), 1, + ACTIONS(675), 1, anon_sym_throw, - ACTIONS(681), 1, + ACTIONS(679), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - STATE(467), 1, - sym_block_statement, - STATE(469), 1, + STATE(474), 1, sym_throw_statement, - STATE(470), 1, + STATE(476), 1, sym_return_statement, - ACTIONS(687), 2, + STATE(477), 1, + sym_block_statement, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(695), 2, + ACTIONS(693), 2, sym_number_literal, sym_string_literal, - ACTIONS(697), 2, + ACTIONS(695), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -19458,7 +19505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(139), 19, + STATE(97), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -19478,74 +19525,65 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10121] = 26, + [10136] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - sym_identifier, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(542), 1, + ACTIONS(652), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(713), 1, + anon_sym_as, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(260), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(258), 5, + ACTIONS(262), 19, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(705), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -19556,35 +19594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [10225] = 14, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10228] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 12, + ACTIONS(248), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -19596,8 +19624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - sym_identifier, - ACTIONS(206), 24, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(250), 30, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -19622,50 +19653,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - [10305] = 20, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + [10298] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(721), 1, anon_sym_RPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(725), 1, anon_sym_COMMA, - ACTIONS(735), 1, + ACTIONS(727), 1, anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(838), 1, + STATE(878), 1, sym_call_argument, - ACTIONS(687), 2, + ACTIONS(737), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, ACTIONS(741), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(743), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -19674,7 +19710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -19694,221 +19730,144 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10397] = 17, + [10390] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(279), 8, - anon_sym_EQ, + ACTIONS(31), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(717), 1, sym_identifier, - ACTIONS(281), 22, - anon_sym_SEMI, + ACTIONS(719), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, + anon_sym_mutate, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(743), 1, anon_sym_RPAREN, + ACTIONS(745), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [10483] = 26, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + STATE(897), 1, + sym_call_argument, + ACTIONS(737), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(741), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(350), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [10482] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(532), 1, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(228), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [10587] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, + ACTIONS(715), 2, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(709), 2, + ACTIONS(755), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(270), 5, + ACTIONS(254), 6, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -19919,49 +19878,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [10691] = 19, + [10582] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(745), 1, - sym_identifier, - ACTIONS(748), 1, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(751), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(723), 1, anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, ACTIONS(757), 1, anon_sym_RBRACE, ACTIONS(759), 1, - anon_sym_LBRACK, - ACTIONS(762), 1, anon_sym_else, - ACTIONS(768), 1, + ACTIONS(763), 1, anon_sym_lazy, - ACTIONS(771), 1, - anon_sym_match, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(774), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(777), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(780), 2, + ACTIONS(765), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(767), 2, sym_null_literal, sym_underscore, - STATE(214), 2, + STATE(226), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(765), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(752), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -19970,7 +19929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -19990,49 +19949,49 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10781] = 19, + [10672] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_RBRACE, - ACTIONS(789), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(759), 1, anon_sym_else, - ACTIONS(793), 1, + ACTIONS(763), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(769), 1, + anon_sym_RBRACE, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(795), 2, + ACTIONS(765), 2, sym_number_literal, sym_string_literal, - ACTIONS(797), 2, + ACTIONS(767), 2, sym_null_literal, sym_underscore, - STATE(218), 2, + STATE(213), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(791), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(752), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20041,7 +20000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20061,180 +20020,49 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10871] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(562), 1, - anon_sym_LT, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(713), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(204), 5, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym_identifier, - ACTIONS(206), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [10965] = 6, + [10762] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(320), 1, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(323), 1, - anon_sym_QMARK, - ACTIONS(326), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(316), 17, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_is, + ACTIONS(717), 1, sym_identifier, - ACTIONS(318), 29, - anon_sym_SEMI, + ACTIONS(719), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - anon_sym_EQ_GT, - [11029] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(759), 1, anon_sym_else, - ACTIONS(793), 1, + ACTIONS(763), 1, anon_sym_lazy, - ACTIONS(799), 1, + ACTIONS(771), 1, anon_sym_RBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(795), 2, + ACTIONS(765), 2, sym_number_literal, sym_string_literal, - ACTIONS(797), 2, + ACTIONS(767), 2, sym_null_literal, sym_underscore, - STATE(214), 2, + STATE(226), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(791), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(752), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20243,7 +20071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20263,74 +20091,143 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11119] = 26, + [10852] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(275), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(717), 1, sym_identifier, - ACTIONS(522), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(759), 1, + anon_sym_else, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(773), 1, + anon_sym_RBRACE, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(765), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(767), 2, + sym_null_literal, + sym_underscore, + STATE(215), 2, + sym_match_arm, + aux_sym_match_body_repeat1, + ACTIONS(761), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(752), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(425), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [10942] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(277), 5, + ACTIONS(258), 6, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -20341,115 +20238,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11223] = 9, + [11042] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(252), 17, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(606), 1, anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(701), 1, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(713), 1, anon_sym_as, - anon_sym_is, - sym_identifier, - ACTIONS(254), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_BANGis, - [11293] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(532), 1, - anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(719), 2, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 10, - anon_sym_EQ, + ACTIONS(749), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(206), 24, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(277), 6, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -20460,59 +20314,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - [11375] = 20, + [11142] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(735), 1, + ACTIONS(727), 1, anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(801), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(775), 1, anon_sym_RPAREN, - ACTIONS(803), 1, + ACTIONS(777), 1, anon_sym_COMMA, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(807), 1, + STATE(851), 1, sym_call_argument, - ACTIONS(687), 2, + ACTIONS(737), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, ACTIONS(741), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(350), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [11234] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(759), 1, + anon_sym_else, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(779), 1, + anon_sym_RBRACE, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(765), 2, sym_number_literal, sym_string_literal, - ACTIONS(743), 2, + ACTIONS(767), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + STATE(226), 2, + sym_match_arm, + aux_sym_match_body_repeat1, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(752), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20521,7 +20437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20541,62 +20457,137 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11467] = 22, + [11324] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(532), 1, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(534), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, anon_sym_is, - ACTIONS(536), 1, anon_sym_BANGis, - ACTIONS(562), 1, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(269), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [11424] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + anon_sym_EQ, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(652), 1, anon_sym_LT, - ACTIONS(703), 1, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(713), 1, + anon_sym_as, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(204), 2, - anon_sym_EQ, - sym_identifier, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(206), 18, + ACTIONS(262), 19, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -20615,28 +20606,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11563] = 12, + [11518] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(532), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(204), 15, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -20644,15 +20650,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(262), 23, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [11602] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(713), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_identifier, - ACTIONS(206), 26, + ACTIONS(260), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(262), 25, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -20677,51 +20740,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + [11682] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(713), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - [11639] = 19, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 11, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(262), 25, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + [11760] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(781), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(784), 1, + anon_sym_PIPE, + ACTIONS(787), 1, anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_else, + ACTIONS(790), 1, + anon_sym_LBRACE, ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(805), 1, anon_sym_RBRACE, - STATE(97), 1, + ACTIONS(795), 1, + anon_sym_LBRACK, + ACTIONS(798), 1, + anon_sym_else, + ACTIONS(804), 1, + anon_sym_lazy, + ACTIONS(807), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(795), 2, + ACTIONS(810), 2, sym_number_literal, sym_string_literal, - ACTIONS(797), 2, + ACTIONS(813), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(816), 2, sym_null_literal, sym_underscore, STATE(226), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(791), 4, + ACTIONS(801), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(752), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20730,7 +20856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20750,49 +20876,49 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11729] = 19, + [11850] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(759), 1, anon_sym_else, - ACTIONS(793), 1, + ACTIONS(763), 1, anon_sym_lazy, - ACTIONS(807), 1, + ACTIONS(819), 1, anon_sym_RBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(795), 2, + ACTIONS(765), 2, sym_number_literal, sym_string_literal, - ACTIONS(797), 2, + ACTIONS(767), 2, sym_null_literal, sym_underscore, - STATE(214), 2, + STATE(220), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(791), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(752), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20801,7 +20927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20821,116 +20947,106 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11819] = 20, + [11940] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(735), 1, - anon_sym_mutate, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(809), 1, - anon_sym_RPAREN, - ACTIONS(811), 1, - anon_sym_COMMA, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - STATE(845), 1, - sym_call_argument, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(741), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(743), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(713), 1, + anon_sym_as, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(260), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(354), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [11911] = 17, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(262), 27, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + [12014] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(532), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(534), 1, - anon_sym_is, - ACTIONS(536), 1, - anon_sym_BANGis, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 8, + ACTIONS(271), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -20938,8 +21054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - sym_identifier, - ACTIONS(206), 22, + ACTIONS(273), 23, + anon_sym_COLON, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -20962,49 +21078,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [11997] = 19, + [12098] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_else, - ACTIONS(793), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, + anon_sym_mutate, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(813), 1, - anon_sym_RBRACE, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(821), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(795), 2, + STATE(933), 1, + sym_call_argument, + ACTIONS(737), 2, sym_number_literal, sym_string_literal, - ACTIONS(797), 2, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(741), 2, sym_null_literal, sym_underscore, - STATE(230), 2, - sym_match_arm, - aux_sym_match_body_repeat1, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21013,7 +21128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21033,49 +21148,47 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12087] = 19, + [12187] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_else, - ACTIONS(793), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(815), 1, - anon_sym_RBRACE, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + STATE(940), 1, + sym_local_vars_declaration, + ACTIONS(41), 2, + anon_sym_var, + anon_sym_val, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(795), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(797), 2, + ACTIONS(825), 2, sym_null_literal, sym_underscore, - STATE(214), 2, - sym_match_arm, - aux_sym_match_body_repeat1, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(737), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21084,7 +21197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(433), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21104,48 +21217,47 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12177] = 19, + [12274] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(735), 1, - anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - ACTIONS(817), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(831), 1, + anon_sym_else, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - STATE(885), 1, - sym_call_argument, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(741), 2, + ACTIONS(829), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(833), 2, sym_number_literal, sym_string_literal, - ACTIONS(743), 2, + ACTIONS(835), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21154,7 +21266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(96), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21174,47 +21286,48 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12266] = 18, + [12361] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, + anon_sym_mutate, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_else, - STATE(97), 1, + ACTIONS(837), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(819), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(823), 2, + STATE(933), 1, + sym_call_argument, + ACTIONS(737), 2, sym_number_literal, sym_string_literal, - ACTIONS(825), 2, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(741), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21223,7 +21336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(137), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21243,47 +21356,105 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12353] = 18, + [12450] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(839), 1, + anon_sym_PIPE, + ACTIONS(841), 1, + anon_sym_DASH_GT, + ACTIONS(299), 14, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(301), 32, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [12513] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(727), 1, + anon_sym_mutate, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(843), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(948), 1, - sym_local_vars_declaration, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(827), 2, - anon_sym_var, - anon_sym_val, - ACTIONS(829), 2, + STATE(933), 1, + sym_call_argument, + ACTIONS(737), 2, sym_number_literal, sym_string_literal, - ACTIONS(831), 2, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(741), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21292,7 +21463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(425), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21312,47 +21483,105 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12440] = 18, + [12602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(839), 1, + anon_sym_PIPE, + ACTIONS(841), 1, + anon_sym_DASH_GT, + ACTIONS(307), 14, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(309), 32, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [12665] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(727), 1, + anon_sym_mutate, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(845), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(946), 1, - sym_local_vars_declaration, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(827), 2, - anon_sym_var, - anon_sym_val, - ACTIONS(833), 2, + STATE(933), 1, + sym_call_argument, + ACTIONS(737), 2, sym_number_literal, sym_string_literal, - ACTIONS(835), 2, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(741), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21361,7 +21590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(400), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21381,48 +21610,104 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12527] = 19, + [12754] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(847), 1, + anon_sym_PIPE, + ACTIONS(367), 14, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(369), 33, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [12815] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(735), 1, + ACTIONS(727), 1, anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(837), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(849), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(885), 1, + STATE(933), 1, sym_call_argument, - ACTIONS(687), 2, + ACTIONS(737), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, ACTIONS(741), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(743), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21431,7 +21716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21451,48 +21736,105 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12616] = 19, + [12904] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(839), 1, + anon_sym_PIPE, + ACTIONS(841), 1, + anon_sym_DASH_GT, + ACTIONS(373), 14, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(375), 32, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [12967] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(735), 1, + ACTIONS(727), 1, anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(839), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(851), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(885), 1, + STATE(933), 1, sym_call_argument, - ACTIONS(687), 2, + ACTIONS(737), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, ACTIONS(741), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(743), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21501,7 +21843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21521,48 +21863,47 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12705] = 19, + [13056] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(841), 1, - anon_sym_RPAREN, - ACTIONS(843), 1, - anon_sym_COMMA, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(240), 1, - aux_sym_annotation_arguments_repeat1, - ACTIONS(687), 2, + STATE(995), 1, + sym_local_vars_declaration, + ACTIONS(41), 2, + anon_sym_var, + anon_sym_val, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(845), 2, + ACTIONS(853), 2, sym_number_literal, sym_string_literal, - ACTIONS(847), 2, + ACTIONS(855), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21571,7 +21912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(142), 19, + STATE(430), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21591,48 +21932,47 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12794] = 19, + [13143] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(735), 1, - anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(849), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(885), 1, - sym_call_argument, - ACTIONS(687), 2, + STATE(972), 1, + sym_local_vars_declaration, + ACTIONS(41), 2, + anon_sym_var, + anon_sym_val, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(741), 2, + ACTIONS(857), 2, sym_number_literal, sym_string_literal, - ACTIONS(743), 2, + ACTIONS(859), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21641,7 +21981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(422), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21661,48 +22001,319 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12883] = 19, + [13230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(294), 1, + anon_sym_DASH_GT, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(861), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(288), 14, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(290), 32, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [13293] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, + anon_sym_LT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(863), 1, + anon_sym_EQ, + ACTIONS(867), 1, + anon_sym_GT, + ACTIONS(871), 1, + anon_sym_QMARK, + ACTIONS(877), 1, + anon_sym_LT_EQ, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(873), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(879), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(881), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(269), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(865), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(875), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(869), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [13395] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, + anon_sym_LT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(863), 1, + anon_sym_EQ, + ACTIONS(867), 1, + anon_sym_GT, + ACTIONS(871), 1, + anon_sym_QMARK, + ACTIONS(877), 1, + anon_sym_LT_EQ, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(873), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(879), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(881), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(277), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(865), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(875), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(869), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [13497] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 12, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + sym_identifier, + ACTIONS(262), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + [13575] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(735), 1, - anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(851), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(893), 1, + anon_sym_COMMA, + ACTIONS(895), 1, + anon_sym_LBRACK, + ACTIONS(897), 1, + anon_sym_RBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(885), 1, - sym_call_argument, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(741), 2, + ACTIONS(899), 2, sym_number_literal, sym_string_literal, - ACTIONS(743), 2, + ACTIONS(901), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(711), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21711,7 +22322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(293), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21731,48 +22342,46 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12972] = 19, + [13661] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(853), 1, + ACTIONS(903), 1, anon_sym_RPAREN, - ACTIONS(855), 1, + ACTIONS(905), 1, anon_sym_COMMA, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(241), 1, - aux_sym_annotation_arguments_repeat1, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(845), 2, + ACTIONS(907), 2, sym_number_literal, sym_string_literal, - ACTIONS(847), 2, + ACTIONS(909), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21781,7 +22390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(142), 19, + STATE(273), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21801,117 +22410,165 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [13061] = 18, + [13747] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(857), 1, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(260), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_identifier, - ACTIONS(860), 1, + ACTIONS(262), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + [13821] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(188), 1, anon_sym_PIPE, - ACTIONS(863), 1, - anon_sym_LPAREN, - ACTIONS(868), 1, + ACTIONS(199), 1, + anon_sym_LT, + STATE(461), 1, + sym_instantiationT_list, + ACTIONS(202), 2, anon_sym_LBRACE, - ACTIONS(871), 1, - anon_sym_LBRACK, - ACTIONS(877), 1, - anon_sym_lazy, - ACTIONS(880), 1, - anon_sym_match, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - STATE(241), 1, - aux_sym_annotation_arguments_repeat1, - ACTIONS(866), 2, + anon_sym_DASH_GT, + ACTIONS(191), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(883), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(886), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(889), 2, - sym_null_literal, - sym_underscore, - ACTIONS(874), 4, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(182), 13, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(142), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [13148] = 19, + ACTIONS(186), 26, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [13887] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(735), 1, - anon_sym_mutate, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(892), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(885), 1, - sym_call_argument, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(741), 2, + ACTIONS(911), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(913), 2, sym_number_literal, sym_string_literal, - ACTIONS(743), 2, + ACTIONS(915), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21920,7 +22577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(354), 19, + STATE(305), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21940,47 +22597,46 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [13237] = 18, + [13971] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(727), 1, + anon_sym_mutate, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - STATE(928), 1, - sym_local_vars_declaration, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(827), 2, - anon_sym_var, - anon_sym_val, - ACTIONS(894), 2, + STATE(933), 1, + sym_call_argument, + ACTIONS(737), 2, sym_number_literal, sym_string_literal, - ACTIONS(896), 2, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(741), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21989,7 +22645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(414), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22009,46 +22665,46 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [13324] = 18, + [14057] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(898), 1, - anon_sym_COMMA, - ACTIONS(900), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(917), 1, + anon_sym_COMMA, + ACTIONS(919), 1, anon_sym_RBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(904), 2, + ACTIONS(921), 2, sym_number_literal, sym_string_literal, - ACTIONS(906), 2, + ACTIONS(923), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(714), 8, + STATE(711), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22057,7 +22713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(269), 19, + STATE(295), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22077,274 +22733,344 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [13410] = 17, + [14143] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(908), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(910), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(912), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(583), 1, + anon_sym_LT, + ACTIONS(867), 1, + anon_sym_GT, + ACTIONS(877), 1, + anon_sym_LT_EQ, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(260), 2, + anon_sym_EQ, + sym_identifier, + ACTIONS(879), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(881), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(326), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [13494] = 18, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(865), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(875), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(262), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14237] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(256), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(735), 1, - anon_sym_mutate, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - STATE(885), 1, - sym_call_argument, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(741), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(743), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(531), 1, + anon_sym_LT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(863), 1, + anon_sym_EQ, + ACTIONS(867), 1, + anon_sym_GT, + ACTIONS(871), 1, + anon_sym_QMARK, + ACTIONS(877), 1, + anon_sym_LT_EQ, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(873), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(879), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(881), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(354), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [13580] = 17, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(258), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(865), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(875), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(869), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [14339] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(879), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(881), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 8, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, sym_identifier, - ACTIONS(785), 1, - anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(819), 2, + ACTIONS(262), 20, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(918), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(920), 2, - sym_null_literal, - sym_underscore, - ACTIONS(914), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [14423] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(523), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(300), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [13664] = 26, + ACTIONS(887), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(260), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + sym_identifier, + ACTIONS(262), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + [14503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(529), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(555), 1, anon_sym_BANG, - ACTIONS(532), 1, + ACTIONS(557), 1, anon_sym_as, - ACTIONS(534), 1, + ACTIONS(559), 1, anon_sym_is, - ACTIONS(536), 1, + ACTIONS(561), 1, anon_sym_BANGis, - ACTIONS(542), 1, + ACTIONS(583), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(867), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(877), 1, anon_sym_LT_EQ, - ACTIONS(922), 1, - sym_identifier, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, + STATE(169), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, sym__brackets_lt_gt, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(879), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(881), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(887), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(924), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(711), 4, + ACTIONS(875), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(260), 5, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + sym_identifier, + ACTIONS(262), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22355,114 +23081,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13766] = 18, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14595] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(188), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, + ACTIONS(191), 1, + anon_sym_QMARK, + ACTIONS(199), 1, + anon_sym_LT, + STATE(461), 1, + sym_instantiationT_list, + ACTIONS(202), 2, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_LPAREN, - ACTIONS(900), 1, - anon_sym_LBRACK, - ACTIONS(902), 1, - anon_sym_RBRACK, - ACTIONS(926), 1, - anon_sym_COMMA, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(928), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(930), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, + anon_sym_DASH_GT, + ACTIONS(182), 16, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - STATE(714), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(252), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [13852] = 18, + anon_sym_as, + anon_sym_is, + sym_identifier, + ACTIONS(186), 26, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + [14661] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(926), 1, + ACTIONS(925), 1, anon_sym_COMMA, - ACTIONS(932), 1, + ACTIONS(927), 1, anon_sym_RBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(928), 2, + ACTIONS(929), 2, sym_number_literal, sym_string_literal, - ACTIONS(930), 2, + ACTIONS(931), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(714), 8, + STATE(711), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22471,7 +23190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(252), 19, + STATE(291), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22491,46 +23210,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [13938] = 18, + [14747] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(934), 1, - anon_sym_COMMA, - ACTIONS(936), 1, - anon_sym_RBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(938), 2, + ACTIONS(829), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(933), 2, sym_number_literal, sym_string_literal, - ACTIONS(940), 2, + ACTIONS(935), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(714), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22539,7 +23257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(277), 19, + STATE(392), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22559,71 +23277,72 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [14024] = 26, + [14831] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(529), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(531), 1, anon_sym_LT, - ACTIONS(699), 1, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(863), 1, anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(867), 1, anon_sym_GT, - ACTIONS(707), 1, + ACTIONS(871), 1, anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(877), 1, anon_sym_LT_EQ, - ACTIONS(942), 1, - anon_sym_COMMA, - ACTIONS(944), 1, - anon_sym_RBRACK, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, + ACTIONS(937), 1, + sym_identifier, + STATE(169), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, sym__brackets_lt_gt, - STATE(825), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, + ACTIONS(873), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(879), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(881), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(887), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, + ACTIONS(865), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(939), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(875), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(869), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22634,44 +23353,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14125] = 17, + [14933] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(948), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(925), 1, + anon_sym_COMMA, + ACTIONS(941), 1, + anon_sym_RBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(950), 2, + ACTIONS(929), 2, sym_number_literal, sym_string_literal, - ACTIONS(952), 2, + ACTIONS(931), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(696), 8, + STATE(711), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22680,7 +23401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(256), 19, + STATE(291), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22700,69 +23421,56 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [14208] = 24, + [15019] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(529), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(555), 1, anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(557), 1, anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(559), 1, anon_sym_is, + ACTIONS(561), 1, anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(879), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(881), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(887), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(954), 3, - anon_sym_RPAREN, + ACTIONS(271), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + sym_identifier, + ACTIONS(273), 20, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22773,137 +23481,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14305] = 17, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [15103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(956), 1, - anon_sym_RPAREN, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(958), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(960), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(555), 1, anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(254), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [14388] = 26, + STATE(169), 1, + sym_instantiationT_list, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, + sym__brackets_lt_gt, + ACTIONS(248), 17, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_as, + anon_sym_is, + sym_identifier, + ACTIONS(250), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + [15171] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(252), 1, + sym_identifier, + ACTIONS(523), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(529), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(531), 1, anon_sym_LT, - ACTIONS(699), 1, + ACTIONS(555), 1, + anon_sym_BANG, + ACTIONS(557), 1, + anon_sym_as, + ACTIONS(559), 1, + anon_sym_is, + ACTIONS(561), 1, + anon_sym_BANGis, + ACTIONS(863), 1, anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(867), 1, anon_sym_GT, - ACTIONS(707), 1, + ACTIONS(871), 1, anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(877), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(962), 1, - anon_sym_RPAREN, - ACTIONS(964), 1, - anon_sym_COMMA, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, + STATE(169), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(182), 1, + sym_argument_list, + STATE(325), 1, sym__brackets_lt_gt, - STATE(849), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, + ACTIONS(873), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(879), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(881), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(887), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, + ACTIONS(254), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(865), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(875), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(869), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22914,44 +23623,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14489] = 17, + [15273] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(943), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(945), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(947), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(296), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [15356] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(966), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(949), 1, anon_sym_RBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22960,7 +23735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22980,400 +23755,269 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [14572] = 24, + [15439] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, - anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(895), 1, + anon_sym_LBRACK, + ACTIONS(951), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(953), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(955), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(270), 3, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14669] = 20, + anon_sym_BANG, + anon_sym_TILDE, + STATE(714), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(281), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [15522] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(562), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(957), 1, + anon_sym_RBRACK, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(945), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(947), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(206), 16, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14758] = 24, + anon_sym_BANG, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(296), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [15605] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, - anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(895), 1, + anon_sym_LBRACK, + ACTIONS(959), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(953), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(955), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(277), 3, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14855] = 21, + anon_sym_BANG, + anon_sym_TILDE, + STATE(714), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(281), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [15688] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, - anon_sym_EQ, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(562), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(972), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(982), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(961), 1, + anon_sym_RPAREN, + ACTIONS(963), 1, + anon_sym_COMMA, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(984), 2, + STATE(888), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(206), 16, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14946] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(990), 3, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 7, - anon_sym_EQ, + ACTIONS(749), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - ACTIONS(206), 20, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [15027] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(206), 22, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -23384,45 +24028,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - [15104] = 13, + [15789] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(965), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(945), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(947), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_BANG, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(204), 11, - anon_sym_EQ, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(296), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [15872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, anon_sym_PIPE, + ACTIONS(319), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(344), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(337), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -23432,77 +24118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(206), 22, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - [15179] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(990), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(279), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - ACTIONS(281), 20, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_BANG, + ACTIONS(339), 26, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -23513,124 +24135,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [15260] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, - anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(228), 3, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [15357] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [15933] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(994), 1, + ACTIONS(967), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(996), 2, + ACTIONS(969), 2, sym_number_literal, sym_string_literal, - ACTIONS(998), 2, + ACTIONS(971), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(696), 8, + STATE(714), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -23639,7 +24195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(287), 19, + STATE(294), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -23659,44 +24215,44 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15440] = 17, + [16016] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(973), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(950), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(952), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(696), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -23705,7 +24261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(256), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -23725,119 +24281,110 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15523] = 26, + [16099] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(1002), 1, - anon_sym_COMMA, - ACTIONS(1004), 1, - anon_sym_RBRACK, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - STATE(806), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(895), 1, + anon_sym_LBRACK, + ACTIONS(975), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(969), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(971), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [15624] = 17, + anon_sym_BANG, + anon_sym_TILDE, + STATE(714), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(294), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [16182] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1006), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(977), 1, + anon_sym_RBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -23846,7 +24393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -23866,44 +24413,44 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15707] = 17, + [16265] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1008), 1, - anon_sym_RBRACK, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(979), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -23912,7 +24459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -23932,44 +24479,119 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15790] = 17, + [16348] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(981), 1, + anon_sym_RPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + STATE(832), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [16449] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1010), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(985), 1, + anon_sym_RBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -23978,7 +24600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -23998,44 +24620,44 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15873] = 17, + [16532] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1012), 1, - anon_sym_RBRACK, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(987), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24044,7 +24666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24064,44 +24686,44 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15956] = 17, + [16615] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1014), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(989), 1, + anon_sym_RBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24110,7 +24732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24130,44 +24752,44 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16039] = 17, + [16698] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(994), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(991), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(950), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(952), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(696), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24176,7 +24798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(256), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24196,71 +24818,125 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16122] = 26, + [16781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 1, + anon_sym_PIPE, + ACTIONS(323), 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(347), 14, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(349), 26, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [16840] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1016), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(993), 1, anon_sym_RPAREN, - ACTIONS(1018), 1, + ACTIONS(995), 1, anon_sym_COMMA, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - STATE(840), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + STATE(862), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24271,71 +24947,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16223] = 26, + [16941] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1020), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACK, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - STATE(881), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(997), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24346,24 +25020,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16324] = 9, + [17038] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(895), 1, + anon_sym_LBRACK, + ACTIONS(999), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1001), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1003), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_BANG, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(252), 14, - anon_sym_EQ, + anon_sym_TILDE, + STATE(714), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(287), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [17121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, anon_sym_PIPE, + ACTIONS(344), 1, + anon_sym_QMARK, + ACTIONS(319), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(337), 17, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -24376,10 +25110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(254), 27, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_as, + anon_sym_is, + sym_identifier, + ACTIONS(339), 26, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24390,7 +25130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -24401,72 +25140,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, anon_sym_BANGis, - [16391] = 24, + [17182] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(1005), 1, + anon_sym_COMMA, + ACTIONS(1007), 1, + anon_sym_RBRACK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + STATE(858), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(258), 3, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24477,44 +25216,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16488] = 17, + [17283] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1024), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1009), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24523,7 +25262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24543,111 +25282,221 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16571] = 17, + [17366] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(1026), 1, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(1013), 1, anon_sym_RBRACK, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(958), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(960), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + STATE(877), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(254), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [16654] = 11, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [17467] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(946), 1, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(1017), 1, + anon_sym_COMMA, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + STATE(846), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(204), 14, - anon_sym_EQ, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [17568] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1019), 1, + anon_sym_COMMA, + ACTIONS(1021), 1, + anon_sym_RBRACK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + STATE(849), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 24, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24658,55 +25507,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + [17669] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1023), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - [16725] = 17, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [17766] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1028), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1025), 1, anon_sym_RPAREN, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24715,7 +25626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24735,44 +25646,44 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16808] = 17, + [17849] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1030), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1027), 1, anon_sym_RBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24781,7 +25692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24801,44 +25712,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16891] = 17, + [17932] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - ACTIONS(1032), 1, - anon_sym_RBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(1033), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(1035), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24847,7 +25756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(194), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24867,44 +25776,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16974] = 17, + [18012] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1034), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1036), 2, + ACTIONS(1037), 2, sym_number_literal, sym_string_literal, - ACTIONS(1038), 2, + ACTIONS(1039), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(696), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24913,7 +25820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(276), 19, + STATE(191), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24933,117 +25840,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17057] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(1040), 1, - anon_sym_RPAREN, - ACTIONS(1042), 1, - anon_sym_COMMA, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - STATE(864), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [17158] = 16, + [18092] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1044), 2, + ACTIONS(1041), 2, sym_number_literal, sym_string_literal, - ACTIONS(1046), 2, + ACTIONS(1043), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25052,7 +25884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(386), 19, + STATE(225), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25072,42 +25904,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17238] = 16, + [18172] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1048), 2, + ACTIONS(1045), 2, sym_number_literal, sym_string_literal, - ACTIONS(1050), 2, + ACTIONS(1047), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25116,7 +25948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(427), 19, + STATE(228), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25136,42 +25968,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17318] = 16, + [18252] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(65), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(79), 1, + sym_identifier, + ACTIONS(1049), 1, anon_sym_LBRACE, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1052), 2, + ACTIONS(1051), 2, sym_number_literal, sym_string_literal, - ACTIONS(1054), 2, + ACTIONS(1053), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25180,7 +26012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(128), 19, + STATE(20), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25200,42 +26032,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17398] = 16, + [18332] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1056), 2, + ACTIONS(1055), 2, sym_number_literal, sym_string_literal, - ACTIONS(1058), 2, + ACTIONS(1057), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25244,7 +26076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(122), 19, + STATE(435), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25264,42 +26096,114 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17478] = 16, + [18412] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1059), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [18508] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1060), 2, + ACTIONS(1061), 2, sym_number_literal, sym_string_literal, - ACTIONS(1062), 2, + ACTIONS(1063), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25308,7 +26212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(129), 19, + STATE(188), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25328,42 +26232,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17558] = 16, + [18588] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1064), 2, + ACTIONS(1065), 2, sym_number_literal, sym_string_literal, - ACTIONS(1066), 2, + ACTIONS(1067), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25372,7 +26276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(420), 19, + STATE(186), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25392,42 +26296,114 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17638] = 16, + [18668] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1069), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [18764] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1068), 2, + ACTIONS(1071), 2, sym_number_literal, sym_string_literal, - ACTIONS(1070), 2, + ACTIONS(1073), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25436,7 +26412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(130), 19, + STATE(187), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25456,42 +26432,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17718] = 16, + [18844] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1072), 2, + ACTIONS(1075), 2, sym_number_literal, sym_string_literal, - ACTIONS(1074), 2, + ACTIONS(1077), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25500,7 +26476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(133), 19, + STATE(218), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25520,42 +26496,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17798] = 16, + [18924] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1076), 2, + ACTIONS(945), 2, sym_number_literal, sym_string_literal, - ACTIONS(1078), 2, + ACTIONS(947), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25564,7 +26540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(335), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25584,114 +26560,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17878] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1080), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [17974] = 16, + [19004] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, - anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(735), 1, anon_sym_match, - STATE(201), 1, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(1094), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1096), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1098), 2, + ACTIONS(1079), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1081), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25700,7 +26604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(159), 19, + STATE(185), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25720,42 +26624,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18054] = 16, + [19084] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1100), 2, + ACTIONS(1091), 2, sym_number_literal, sym_string_literal, - ACTIONS(1102), 2, + ACTIONS(1093), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25764,7 +26668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(160), 19, + STATE(263), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25784,68 +26688,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18134] = 24, + [19164] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(573), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1095), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25856,42 +26760,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18230] = 16, + [19260] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1104), 2, + ACTIONS(1097), 2, sym_number_literal, sym_string_literal, - ACTIONS(1106), 2, + ACTIONS(1099), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25900,7 +26804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(417), 19, + STATE(329), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25920,42 +26824,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18310] = 16, + [19340] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1108), 2, + ACTIONS(1101), 2, sym_number_literal, sym_string_literal, - ACTIONS(1110), 2, + ACTIONS(1103), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25964,7 +26868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(212), 19, + STATE(288), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25984,42 +26888,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18390] = 16, + [19420] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(1089), 1, anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1112), 2, + ACTIONS(1105), 2, sym_number_literal, sym_string_literal, - ACTIONS(1114), 2, + ACTIONS(1107), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26028,7 +26932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(419), 19, + STATE(256), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26048,42 +26952,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18470] = 16, + [19500] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(1089), 1, anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1116), 2, + ACTIONS(1109), 2, sym_number_literal, sym_string_literal, - ACTIONS(1118), 2, + ACTIONS(1111), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26092,7 +26996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(421), 19, + STATE(259), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26112,114 +27016,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18550] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, - anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(589), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [18646] = 16, + [19580] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(1089), 1, anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1120), 2, + ACTIONS(1113), 2, sym_number_literal, sym_string_literal, - ACTIONS(1122), 2, + ACTIONS(1115), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26228,7 +27060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(352), 19, + STATE(245), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26248,106 +27080,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18726] = 16, + [19660] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(1082), 1, - anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, - anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(681), 1, anon_sym_match, - STATE(201), 1, - sym__comparison_lt_gt, - STATE(202), 1, - sym_object_literal_body, - ACTIONS(1096), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1124), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1126), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1088), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(767), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(151), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [18806] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1128), 2, + ACTIONS(1117), 2, sym_number_literal, sym_string_literal, - ACTIONS(1130), 2, + ACTIONS(1119), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26356,7 +27124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(156), 19, + STATE(255), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26376,42 +27144,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18886] = 16, + [19740] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1132), 2, + ACTIONS(1121), 2, sym_number_literal, sym_string_literal, - ACTIONS(1134), 2, + ACTIONS(1123), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26420,7 +27188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(157), 19, + STATE(257), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26440,42 +27208,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18966] = 16, + [19820] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1136), 2, + ACTIONS(1125), 2, sym_number_literal, sym_string_literal, - ACTIONS(1138), 2, + ACTIONS(1127), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26484,7 +27252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(152), 19, + STATE(258), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26504,42 +27272,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19046] = 16, + [19900] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1140), 2, + ACTIONS(1129), 2, sym_number_literal, sym_string_literal, - ACTIONS(1142), 2, + ACTIONS(1131), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26548,7 +27316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(158), 19, + STATE(247), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26568,42 +27336,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19126] = 16, + [19980] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1144), 2, + ACTIONS(1133), 2, sym_number_literal, sym_string_literal, - ACTIONS(1146), 2, + ACTIONS(1135), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26612,7 +27380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(145), 19, + STATE(250), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26632,42 +27400,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19206] = 16, + [20060] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(1089), 1, anon_sym_lazy, - ACTIONS(1092), 1, - anon_sym_match, - STATE(201), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1148), 2, + ACTIONS(1137), 2, sym_number_literal, sym_string_literal, - ACTIONS(1150), 2, + ACTIONS(1139), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26676,7 +27444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(148), 19, + STATE(265), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26696,42 +27464,115 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19286] = 16, + [20140] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1141), 1, + anon_sym_RPAREN, + ACTIONS(1143), 1, + anon_sym_COMMA, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [20238] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(735), 1, anon_sym_match, - STATE(201), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1152), 2, + ACTIONS(1145), 2, sym_number_literal, sym_string_literal, - ACTIONS(1154), 2, + ACTIONS(1147), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26740,7 +27581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(150), 19, + STATE(389), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26760,42 +27601,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19366] = 16, + [20318] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(735), 1, anon_sym_match, - STATE(201), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1156), 2, + ACTIONS(1149), 2, sym_number_literal, sym_string_literal, - ACTIONS(1158), 2, + ACTIONS(1151), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26804,7 +27645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(149), 19, + STATE(334), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26824,42 +27665,114 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19446] = 16, + [20398] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1153), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [20494] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(65), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1162), 2, + ACTIONS(1155), 2, sym_number_literal, sym_string_literal, - ACTIONS(1164), 2, + ACTIONS(1157), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26868,7 +27781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(18), 19, + STATE(409), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26888,42 +27801,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19526] = 16, + [20574] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(65), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1166), 2, + ACTIONS(1159), 2, sym_number_literal, sym_string_literal, - ACTIONS(1168), 2, + ACTIONS(1161), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26932,7 +27845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(19), 19, + STATE(410), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26952,42 +27865,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19606] = 16, + [20654] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(65), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1170), 2, + ACTIONS(1163), 2, sym_number_literal, sym_string_literal, - ACTIONS(1172), 2, + ACTIONS(1165), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26996,7 +27909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(20), 19, + STATE(396), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27016,42 +27929,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19686] = 16, + [20734] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(1083), 1, + sym_identifier, + ACTIONS(1085), 1, + anon_sym_LPAREN, + ACTIONS(1089), 1, + anon_sym_lazy, + STATE(173), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1174), 2, + ACTIONS(1167), 2, sym_number_literal, sym_string_literal, - ACTIONS(1176), 2, + ACTIONS(1169), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27060,7 +27973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(21), 19, + STATE(246), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27080,42 +27993,114 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19766] = 16, + [20814] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1171), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [20910] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(65), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1178), 2, + ACTIONS(1173), 2, sym_number_literal, sym_string_literal, - ACTIONS(1180), 2, + ACTIONS(1175), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27124,7 +28109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(22), 19, + STATE(345), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27144,42 +28129,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19846] = 16, + [20990] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1182), 2, + ACTIONS(1177), 2, sym_number_literal, sym_string_literal, - ACTIONS(1184), 2, + ACTIONS(1179), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27188,7 +28173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(12), 19, + STATE(415), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27208,42 +28193,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19926] = 16, + [21070] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1186), 2, + ACTIONS(1181), 2, sym_number_literal, sym_string_literal, - ACTIONS(1188), 2, + ACTIONS(1183), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27252,7 +28237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(23), 19, + STATE(418), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27272,42 +28257,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20006] = 16, + [21150] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1190), 2, + ACTIONS(1185), 2, sym_number_literal, sym_string_literal, - ACTIONS(1192), 2, + ACTIONS(1187), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27316,7 +28301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(17), 19, + STATE(417), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27336,42 +28321,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20086] = 16, + [21230] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1194), 2, + ACTIONS(1189), 2, sym_number_literal, sym_string_literal, - ACTIONS(1196), 2, + ACTIONS(1191), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27380,7 +28365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(24), 19, + STATE(414), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27400,42 +28385,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20166] = 16, + [21310] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1198), 2, + ACTIONS(1193), 2, sym_number_literal, sym_string_literal, - ACTIONS(1200), 2, + ACTIONS(1195), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27444,7 +28429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(297), 19, + STATE(419), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27464,114 +28449,106 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20246] = 24, + [21390] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1197), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1199), 2, + sym_null_literal, + sym_underscore, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1202), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [20342] = 16, + anon_sym_BANG, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(420), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [21470] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1204), 2, + ACTIONS(1201), 2, sym_number_literal, sym_string_literal, - ACTIONS(1206), 2, + ACTIONS(1203), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27580,7 +28557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(140), 19, + STATE(421), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27600,42 +28577,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20422] = 16, + [21550] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1208), 2, + ACTIONS(1205), 2, sym_number_literal, sym_string_literal, - ACTIONS(1210), 2, + ACTIONS(1207), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27644,7 +28621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(132), 19, + STATE(434), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27664,42 +28641,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20502] = 16, + [21630] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, + ACTIONS(895), 1, + anon_sym_LBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1212), 2, + ACTIONS(1209), 2, sym_number_literal, sym_string_literal, - ACTIONS(1214), 2, + ACTIONS(1211), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27708,7 +28685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(305), 19, + STATE(424), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27728,68 +28705,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20582] = 24, + [21710] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1216), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1213), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27800,42 +28777,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [20678] = 16, + [21806] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1218), 2, + ACTIONS(1215), 2, sym_number_literal, sym_string_literal, - ACTIONS(1220), 2, + ACTIONS(1217), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27844,7 +28821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(131), 19, + STATE(427), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27864,7 +28841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20758] = 16, + [21886] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -27879,19 +28856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(79), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - STATE(62), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(72), 1, sym_object_literal_body, ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1222), 2, + ACTIONS(1219), 2, sym_number_literal, sym_string_literal, - ACTIONS(1224), 2, + ACTIONS(1221), 2, sym_null_literal, sym_underscore, ACTIONS(63), 4, @@ -27899,7 +28876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27928,42 +28905,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20838] = 16, + [21966] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(1082), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(65), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(67), 1, anon_sym_match, - STATE(201), 1, + ACTIONS(79), 1, + sym_identifier, + ACTIONS(1049), 1, + anon_sym_LBRACE, + STATE(70), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1226), 2, + ACTIONS(1223), 2, sym_number_literal, sym_string_literal, - ACTIONS(1228), 2, + ACTIONS(1225), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27972,7 +28949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(153), 19, + STATE(14), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27992,42 +28969,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20918] = 16, + [22046] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1230), 2, + ACTIONS(1227), 2, sym_number_literal, sym_string_literal, - ACTIONS(1232), 2, + ACTIONS(1229), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28036,7 +29013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(248), 19, + STATE(308), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28056,68 +29033,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20998] = 24, + [22126] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1234), 2, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1231), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28128,106 +29105,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [21094] = 16, + [22222] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1236), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1238), 2, - sym_null_literal, - sym_underscore, - ACTIONS(914), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(258), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [21174] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(679), 1, + anon_sym_lazy, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1240), 2, + ACTIONS(1233), 2, sym_number_literal, sym_string_literal, - ACTIONS(1242), 2, + ACTIONS(1235), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28236,7 +29149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(259), 19, + STATE(100), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28256,106 +29169,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21254] = 16, + [22302] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1244), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1246), 2, - sym_null_literal, - sym_underscore, - ACTIONS(914), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(260), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [21334] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(679), 1, + anon_sym_lazy, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1248), 2, + ACTIONS(1237), 2, sym_number_literal, sym_string_literal, - ACTIONS(1250), 2, + ACTIONS(1239), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28364,7 +29213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(261), 19, + STATE(101), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28384,42 +29233,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21414] = 16, + [22382] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1252), 2, + ACTIONS(1241), 2, sym_number_literal, sym_string_literal, - ACTIONS(1254), 2, + ACTIONS(1243), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28428,7 +29277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(262), 19, + STATE(102), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28448,42 +29297,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21494] = 16, + [22462] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1256), 2, + ACTIONS(1245), 2, sym_number_literal, sym_string_literal, - ACTIONS(1258), 2, + ACTIONS(1247), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28492,7 +29341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(263), 19, + STATE(103), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28512,42 +29361,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21574] = 16, + [22542] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1260), 2, + ACTIONS(1249), 2, sym_number_literal, sym_string_literal, - ACTIONS(1262), 2, + ACTIONS(1251), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28556,7 +29405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(264), 19, + STATE(104), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28576,42 +29425,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21654] = 16, + [22622] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1264), 2, + ACTIONS(1253), 2, sym_number_literal, sym_string_literal, - ACTIONS(1266), 2, + ACTIONS(1255), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28620,7 +29469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(282), 19, + STATE(105), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28640,42 +29489,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21734] = 16, + [22702] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1268), 2, + ACTIONS(1257), 2, sym_number_literal, sym_string_literal, - ACTIONS(1270), 2, + ACTIONS(1259), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28684,7 +29533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(265), 19, + STATE(106), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28704,42 +29553,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21814] = 16, + [22782] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(679), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1272), 2, + ACTIONS(1261), 2, sym_number_literal, sym_string_literal, - ACTIONS(1274), 2, + ACTIONS(1263), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28748,7 +29597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(125), 19, + STATE(107), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28768,114 +29617,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21894] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1276), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [21990] = 16, + [22862] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1278), 2, + ACTIONS(1265), 2, sym_number_literal, sym_string_literal, - ACTIONS(1280), 2, + ACTIONS(1267), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28884,7 +29661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(394), 19, + STATE(108), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28904,42 +29681,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22070] = 16, + [22942] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1282), 2, + ACTIONS(1269), 2, sym_number_literal, sym_string_literal, - ACTIONS(1284), 2, + ACTIONS(1271), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28948,7 +29725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(266), 19, + STATE(209), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28968,42 +29745,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22150] = 16, + [23022] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(785), 1, - anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_lazy, - STATE(97), 1, + ACTIONS(1049), 1, + anon_sym_LBRACE, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1286), 2, + ACTIONS(1273), 2, sym_number_literal, sym_string_literal, - ACTIONS(1288), 2, + ACTIONS(1275), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29012,7 +29789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(382), 19, + STATE(15), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29032,42 +29809,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22230] = 16, + [23102] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1290), 2, + ACTIONS(1277), 2, sym_number_literal, sym_string_literal, - ACTIONS(1292), 2, + ACTIONS(1279), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29076,7 +29853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(413), 19, + STATE(16), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29096,42 +29873,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22310] = 16, + [23182] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(1082), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(65), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(67), 1, anon_sym_match, - STATE(201), 1, + ACTIONS(79), 1, + sym_identifier, + ACTIONS(1049), 1, + anon_sym_LBRACE, + STATE(70), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1294), 2, + ACTIONS(1281), 2, sym_number_literal, sym_string_literal, - ACTIONS(1296), 2, + ACTIONS(1283), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29140,7 +29917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(147), 19, + STATE(17), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29160,115 +29937,106 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22390] = 25, + [23262] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(665), 1, + sym_identifier, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(1298), 1, - anon_sym_RPAREN, - ACTIONS(1300), 1, - anon_sym_COMMA, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, + anon_sym_lazy, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym__comparison_lt_gt, + STATE(174), 1, + sym_object_literal_body, + ACTIONS(685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1285), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1287), 2, + sym_null_literal, + sym_underscore, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [22488] = 16, + anon_sym_BANG, + anon_sym_TILDE, + STATE(781), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(109), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [23342] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1302), 2, + ACTIONS(1289), 2, sym_number_literal, sym_string_literal, - ACTIONS(1304), 2, + ACTIONS(1291), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29277,7 +30045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(330), 19, + STATE(18), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29297,114 +30065,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22568] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(383), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [22664] = 16, + [23422] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, - sym_identifier, - ACTIONS(1082), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(65), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(67), 1, anon_sym_match, - STATE(201), 1, + ACTIONS(79), 1, + sym_identifier, + ACTIONS(1049), 1, + anon_sym_LBRACE, + STATE(70), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1308), 2, + ACTIONS(1293), 2, sym_number_literal, sym_string_literal, - ACTIONS(1310), 2, + ACTIONS(1295), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29413,7 +30109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(155), 19, + STATE(24), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29433,42 +30129,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22744] = 16, + [23502] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(958), 2, + ACTIONS(1297), 2, sym_number_literal, sym_string_literal, - ACTIONS(960), 2, + ACTIONS(1299), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29477,7 +30173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(22), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29497,42 +30193,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22824] = 16, + [23582] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(1089), 1, anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1312), 2, + ACTIONS(1301), 2, sym_number_literal, sym_string_literal, - ACTIONS(1314), 2, + ACTIONS(1303), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29541,7 +30237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(403), 19, + STATE(266), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29561,42 +30257,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22904] = 16, + [23662] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - STATE(97), 1, + ACTIONS(1083), 1, + sym_identifier, + ACTIONS(1085), 1, + anon_sym_LPAREN, + ACTIONS(1089), 1, + anon_sym_lazy, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1316), 2, + ACTIONS(1305), 2, sym_number_literal, sym_string_literal, - ACTIONS(1318), 2, + ACTIONS(1307), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(1087), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29605,7 +30301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(126), 19, + STATE(267), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29625,42 +30321,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22984] = 16, + [23742] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1320), 2, + ACTIONS(1309), 2, sym_number_literal, sym_string_literal, - ACTIONS(1322), 2, + ACTIONS(1311), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29669,7 +30365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(404), 19, + STATE(23), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29689,42 +30385,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23064] = 16, + [23822] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1324), 2, + ACTIONS(1313), 2, sym_number_literal, sym_string_literal, - ACTIONS(1326), 2, + ACTIONS(1315), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29733,7 +30429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(213), 19, + STATE(21), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29753,42 +30449,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23144] = 16, + [23902] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 2, + ACTIONS(1317), 2, sym_number_literal, sym_string_literal, - ACTIONS(1330), 2, + ACTIONS(1319), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29797,7 +30493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(405), 19, + STATE(217), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29817,106 +30513,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23224] = 16, + [23982] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(43), 1, anon_sym_LBRACK, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1332), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1334), 2, - sym_null_literal, - sym_underscore, - ACTIONS(791), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(406), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [23304] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(683), 1, + ACTIONS(65), 1, + anon_sym_lazy, + ACTIONS(67), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(79), 1, sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, - anon_sym_LBRACK, - STATE(97), 1, + STATE(70), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(72), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(71), 2, anon_sym_true, anon_sym_false, - ACTIONS(1336), 2, + ACTIONS(1321), 2, sym_number_literal, sym_string_literal, - ACTIONS(1338), 2, + ACTIONS(1323), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(63), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(788), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29925,7 +30557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(407), 19, + STATE(19), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29945,42 +30577,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23384] = 16, + [24062] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1340), 2, + ACTIONS(1325), 2, sym_number_literal, sym_string_literal, - ACTIONS(1342), 2, + ACTIONS(1327), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29989,7 +30621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(408), 19, + STATE(208), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30009,42 +30641,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23464] = 16, + [24142] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1344), 2, + ACTIONS(1329), 2, sym_number_literal, sym_string_literal, - ACTIONS(1346), 2, + ACTIONS(1331), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30053,7 +30685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(409), 19, + STATE(212), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30073,42 +30705,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23544] = 16, + [24222] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1348), 2, + ACTIONS(1333), 2, sym_number_literal, sym_string_literal, - ACTIONS(1350), 2, + ACTIONS(1335), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30117,7 +30749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(410), 19, + STATE(221), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30137,42 +30769,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23624] = 16, + [24302] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1352), 2, + ACTIONS(1337), 2, sym_number_literal, sym_string_literal, - ACTIONS(1354), 2, + ACTIONS(1339), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30181,7 +30813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(402), 19, + STATE(412), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30201,42 +30833,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23704] = 16, + [24382] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1356), 2, + ACTIONS(1341), 2, sym_number_literal, sym_string_literal, - ACTIONS(1358), 2, + ACTIONS(1343), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30245,7 +30877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(416), 19, + STATE(426), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30265,42 +30897,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23784] = 16, + [24462] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(725), 1, + ACTIONS(763), 1, + anon_sym_lazy, + ACTIONS(889), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(895), 1, anon_sym_LBRACK, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1360), 2, + ACTIONS(1345), 2, sym_number_literal, sym_string_literal, - ACTIONS(1362), 2, + ACTIONS(1347), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(761), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30309,7 +30941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(412), 19, + STATE(431), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30329,106 +30961,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23864] = 16, + [24542] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, - anon_sym_LBRACK, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1364), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1366), 2, - sym_null_literal, - sym_underscore, - ACTIONS(791), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(411), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [23944] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(679), 1, + anon_sym_lazy, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1368), 2, + ACTIONS(1349), 2, sym_number_literal, sym_string_literal, - ACTIONS(1370), 2, + ACTIONS(1351), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30437,7 +31005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(216), 19, + STATE(98), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30457,42 +31025,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24024] = 16, + [24622] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(679), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(681), 1, anon_sym_match, - ACTIONS(731), 1, + ACTIONS(827), 1, anon_sym_LBRACE, - STATE(97), 1, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1372), 2, + ACTIONS(1353), 2, sym_number_literal, sym_string_literal, - ACTIONS(1374), 2, + ACTIONS(1355), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30501,7 +31069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(123), 19, + STATE(110), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30521,42 +31089,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24104] = 16, + [24702] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(665), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(679), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(681), 1, + anon_sym_match, + ACTIONS(827), 1, + anon_sym_LBRACE, + STATE(173), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(174), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(685), 2, anon_sym_true, anon_sym_false, - ACTIONS(1376), 2, + ACTIONS(1357), 2, sym_number_literal, sym_string_literal, - ACTIONS(1378), 2, + ACTIONS(1359), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(677), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(781), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30565,7 +31133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(220), 19, + STATE(111), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30585,42 +31153,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24184] = 16, + [24782] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1380), 2, + ACTIONS(1361), 2, sym_number_literal, sym_string_literal, - ACTIONS(1382), 2, + ACTIONS(1363), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30629,7 +31197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(208), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30649,42 +31217,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24264] = 16, + [24862] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 2, + ACTIONS(1365), 2, sym_number_literal, sym_string_literal, - ACTIONS(1386), 2, + ACTIONS(1367), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30693,7 +31261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(219), 19, + STATE(222), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30713,42 +31281,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24344] = 16, + [24942] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 2, + ACTIONS(1369), 2, sym_number_literal, sym_string_literal, - ACTIONS(1390), 2, + ACTIONS(1371), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30757,7 +31325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(223), 19, + STATE(423), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30777,42 +31345,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24424] = 16, + [25022] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1392), 2, + ACTIONS(1373), 2, sym_number_literal, sym_string_literal, - ACTIONS(1394), 2, + ACTIONS(1375), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30821,7 +31389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(228), 19, + STATE(428), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30841,42 +31409,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24504] = 16, + [25102] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(1377), 2, sym_number_literal, sym_string_literal, - ACTIONS(1398), 2, + ACTIONS(1379), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30885,7 +31453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(221), 19, + STATE(429), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30905,42 +31473,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24584] = 16, + [25182] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1400), 2, + ACTIONS(1381), 2, sym_number_literal, sym_string_literal, - ACTIONS(1402), 2, + ACTIONS(1383), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30949,7 +31517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(124), 19, + STATE(314), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30969,42 +31537,114 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24664] = 16, + [25262] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1385), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [25358] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1404), 2, + ACTIONS(1387), 2, sym_number_literal, sym_string_literal, - ACTIONS(1406), 2, + ACTIONS(1389), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31013,7 +31653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(209), 19, + STATE(223), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31033,42 +31673,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24744] = 16, + [25438] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1408), 2, + ACTIONS(1391), 2, sym_number_literal, sym_string_literal, - ACTIONS(1410), 2, + ACTIONS(1393), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31097,68 +31737,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24824] = 24, + [25518] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(565), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1412), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -31169,106 +31809,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24920] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_lazy, - STATE(97), 1, - sym__comparison_lt_gt, - STATE(98), 1, - sym_object_literal_body, - ACTIONS(687), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1414), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1416), 2, - sym_null_literal, - sym_underscore, - ACTIONS(737), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(777), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - STATE(211), 19, - sym__expression, - sym_assignment, - sym_set_assignment, - sym_ternary_operator, - sym_binary_operator, - sym_unary_operator, - sym_lazy_expression, - sym_cast_as_operator, - sym_is_type_operator, - sym_dot_access, - sym_not_null_operator, - sym_function_call, - sym_generic_instantiation, - sym_match_expression, - sym_object_literal, - sym_parenthesized_expression, - sym_tensor_expression, - sym_typed_tuple, - sym_boolean_literal, - [25000] = 16, + [25614] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(735), 1, anon_sym_match, - STATE(201), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1418), 2, + ACTIONS(1395), 2, sym_number_literal, sym_string_literal, - ACTIONS(1420), 2, + ACTIONS(1397), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31277,7 +31853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(154), 19, + STATE(411), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31297,42 +31873,106 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25080] = 16, + [25694] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(725), 1, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(117), 1, + sym_object_literal_body, + ACTIONS(739), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1399), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1401), 2, + sym_null_literal, + sym_underscore, + ACTIONS(731), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(790), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + STATE(413), 19, + sym__expression, + sym_assignment, + sym_set_assignment, + sym_ternary_operator, + sym_binary_operator, + sym_unary_operator, + sym_lazy_expression, + sym_cast_as_operator, + sym_is_type_operator, + sym_dot_access, + sym_not_null_operator, + sym_function_call, + sym_generic_instantiation, + sym_match_expression, + sym_object_literal, + sym_parenthesized_expression, + sym_tensor_expression, + sym_typed_tuple, + sym_boolean_literal, + [25774] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(733), 1, anon_sym_lazy, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1422), 2, + ACTIONS(1403), 2, sym_number_literal, sym_string_literal, - ACTIONS(1424), 2, + ACTIONS(1405), 2, sym_null_literal, sym_underscore, - ACTIONS(737), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31341,7 +31981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(346), 19, + STATE(416), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31361,68 +32001,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25160] = 24, + [25854] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(575), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1426), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -31433,42 +32073,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25256] = 16, + [25950] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1428), 2, + ACTIONS(1407), 2, sym_number_literal, sym_string_literal, - ACTIONS(1430), 2, + ACTIONS(1409), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31477,7 +32117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(14), 19, + STATE(189), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31497,42 +32137,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25336] = 16, + [26030] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(33), 1, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(43), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_lazy, - ACTIONS(67), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(62), 1, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(63), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(71), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1432), 2, + ACTIONS(1411), 2, sym_number_literal, sym_string_literal, - ACTIONS(1434), 2, + ACTIONS(1413), 2, sym_null_literal, sym_underscore, - ACTIONS(63), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(771), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31541,7 +32181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(15), 19, + STATE(190), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31561,42 +32201,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25416] = 16, + [26110] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(667), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(673), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_lazy, - ACTIONS(683), 1, + ACTIONS(735), 1, anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - STATE(97), 1, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 2, + ACTIONS(1415), 2, sym_number_literal, sym_string_literal, - ACTIONS(1438), 2, + ACTIONS(1417), 2, sym_null_literal, sym_underscore, - ACTIONS(679), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31605,7 +32245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(127), 19, + STATE(184), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31625,42 +32265,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25496] = 16, + [26190] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1440), 2, + ACTIONS(1419), 2, sym_number_literal, sym_string_literal, - ACTIONS(1442), 2, + ACTIONS(1421), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31669,7 +32309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(278), 19, + STATE(192), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31689,42 +32329,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25576] = 16, + [26270] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1444), 2, + ACTIONS(1423), 2, sym_number_literal, sym_string_literal, - ACTIONS(1446), 2, + ACTIONS(1425), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31733,7 +32373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(279), 19, + STATE(193), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31753,42 +32393,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25656] = 16, + [26350] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(733), 1, + anon_sym_lazy, + ACTIONS(735), 1, + anon_sym_match, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1448), 2, + ACTIONS(1427), 2, sym_number_literal, sym_string_literal, - ACTIONS(1450), 2, + ACTIONS(1429), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31797,7 +32437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(418), 19, + STATE(326), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31817,42 +32457,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25736] = 16, + [26430] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(725), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_lazy, - ACTIONS(900), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - STATE(97), 1, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, + anon_sym_lazy, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1452), 2, + ACTIONS(1431), 2, sym_number_literal, sym_string_literal, - ACTIONS(1454), 2, + ACTIONS(1433), 2, sym_null_literal, sym_underscore, - ACTIONS(791), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31861,7 +32501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(423), 19, + STATE(195), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31881,114 +32521,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25816] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, - anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1456), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25912] = 16, + [26510] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1458), 2, + ACTIONS(1435), 2, sym_number_literal, sym_string_literal, - ACTIONS(1460), 2, + ACTIONS(1437), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31997,7 +32565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(401), 19, + STATE(196), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32017,42 +32585,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25992] = 16, + [26590] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1462), 2, + ACTIONS(1439), 2, sym_number_literal, sym_string_literal, - ACTIONS(1464), 2, + ACTIONS(1441), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32061,7 +32629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(415), 19, + STATE(197), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32081,42 +32649,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26072] = 16, + [26670] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1466), 2, + ACTIONS(1443), 2, sym_number_literal, sym_string_literal, - ACTIONS(1468), 2, + ACTIONS(1445), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32125,7 +32693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(422), 19, + STATE(198), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32145,42 +32713,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26152] = 16, + [26750] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(673), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_match, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(785), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_lazy, - STATE(97), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(98), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(687), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1470), 2, + ACTIONS(1447), 2, sym_number_literal, sym_string_literal, - ACTIONS(1472), 2, + ACTIONS(1449), 2, sym_null_literal, sym_underscore, - ACTIONS(914), 4, + ACTIONS(1029), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(777), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32189,7 +32757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(426), 19, + STATE(199), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32209,42 +32777,42 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26232] = 16, + [26830] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(783), 1, + ACTIONS(717), 1, sym_identifier, - ACTIONS(1082), 1, + ACTIONS(719), 1, anon_sym_LPAREN, - ACTIONS(1084), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(729), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(733), 1, anon_sym_lazy, - ACTIONS(1092), 1, + ACTIONS(735), 1, anon_sym_match, - STATE(201), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(202), 1, + STATE(117), 1, sym_object_literal_body, - ACTIONS(1096), 2, + ACTIONS(739), 2, anon_sym_true, anon_sym_false, - ACTIONS(1474), 2, + ACTIONS(1451), 2, sym_number_literal, sym_string_literal, - ACTIONS(1476), 2, + ACTIONS(1453), 2, sym_null_literal, sym_underscore, - ACTIONS(1088), 4, + ACTIONS(731), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(767), 8, + STATE(790), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32253,7 +32821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(146), 19, + STATE(229), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32273,67 +32841,67 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26312] = 24, + [26910] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1478), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1455), 1, anon_sym_RPAREN, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32344,67 +32912,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26407] = 24, + [27005] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - ACTIONS(1480), 1, - anon_sym_COLON, - STATE(119), 1, + ACTIONS(1457), 1, + anon_sym_RPAREN, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32415,46 +32983,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26502] = 13, + [27100] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(946), 1, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1459), 1, + anon_sym_RPAREN, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1484), 2, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1482), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 11, - anon_sym_EQ, + ACTIONS(749), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(206), 20, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32465,77 +33054,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + [27195] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_DOT, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, anon_sym_QMARK, + ACTIONS(1461), 1, + anon_sym_COLON, + STATE(152), 1, + sym_argument_list, + STATE(153), 1, + sym_instantiationT_list, + STATE(408), 1, + sym__brackets_lt_gt, + ACTIONS(703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_EQ_GT, - [26575] = 24, + ACTIONS(751), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [27290] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - ACTIONS(1486), 1, - anon_sym_COLON, - STATE(119), 1, + ACTIONS(1463), 1, + anon_sym_RPAREN, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32546,67 +33196,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26670] = 24, + [27385] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(260), 1, + anon_sym_EQ, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(652), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, anon_sym_as, - ACTIONS(1456), 1, - anon_sym_RPAREN, - STATE(119), 1, + ACTIONS(1467), 1, + anon_sym_GT, + ACTIONS(1471), 1, + anon_sym_LT_EQ, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(1481), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, + ACTIONS(1465), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(262), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32617,67 +33260,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26765] = 24, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, + [27474] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(270), 1, + ACTIONS(258), 1, anon_sym_EQ_GT, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1488), 1, - anon_sym_EQ, - ACTIONS(1492), 1, + ACTIONS(1467), 1, anon_sym_GT, - ACTIONS(1496), 1, - anon_sym_QMARK, - ACTIONS(1502), 1, + ACTIONS(1471), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(1483), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1498), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1504), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1490), 3, + ACTIONS(1481), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1489), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1465), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, + ACTIONS(1479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1494), 10, + ACTIONS(1485), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32688,59 +33335,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26860] = 20, + [27569] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(562), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(1492), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(1502), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1491), 1, + anon_sym_RPAREN, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1504), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 4, - anon_sym_EQ, + ACTIONS(749), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(206), 14, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32751,71 +33406,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_GT, - [26947] = 24, + [27664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(277), 1, + ACTIONS(269), 1, anon_sym_EQ_GT, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1488), 1, - anon_sym_EQ, - ACTIONS(1492), 1, + ACTIONS(1467), 1, anon_sym_GT, - ACTIONS(1496), 1, - anon_sym_QMARK, - ACTIONS(1502), 1, + ACTIONS(1471), 1, anon_sym_LT_EQ, - STATE(119), 1, + ACTIONS(1483), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1498), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1504), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1490), 3, + ACTIONS(1481), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1489), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1465), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, + ACTIONS(1479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1494), 10, + ACTIONS(1485), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32826,60 +33477,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27042] = 21, + [27759] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, - anon_sym_EQ, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(562), 1, + ACTIONS(652), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1492), 1, + ACTIONS(1467), 1, anon_sym_GT, - ACTIONS(1502), 1, + ACTIONS(1471), 1, anon_sym_LT_EQ, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1504), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(1481), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1490), 3, + ACTIONS(260), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(206), 14, + ACTIONS(262), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32894,43 +33544,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_GT, - [27131] = 16, + [27846] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1504), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(1481), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 7, + ACTIONS(260), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -32938,7 +33588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(206), 18, + ACTIONS(262), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32957,37 +33607,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_GT, - [27210] = 14, + [27925] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1508), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(1481), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(204), 9, + ACTIONS(260), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -32997,7 +33647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(206), 20, + ACTIONS(262), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33018,67 +33668,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, anon_sym_EQ_GT, - [27285] = 24, + [28000] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_EQ_GT, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1488), 1, - anon_sym_EQ, - ACTIONS(1492), 1, - anon_sym_GT, - ACTIONS(1496), 1, - anon_sym_QMARK, - ACTIONS(1502), 1, - anon_sym_LT_EQ, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, + ACTIONS(1481), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1498), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1504), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1506), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1490), 3, + ACTIONS(260), 11, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1494), 10, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(262), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33089,51 +33718,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27380] = 16, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_EQ_GT, + [28073] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(946), 1, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1493), 1, + anon_sym_RPAREN, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1504), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(279), 7, - anon_sym_EQ, + ACTIONS(749), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - ACTIONS(281), 18, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33144,75 +33799,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_GT, - [27459] = 24, + [28168] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1510), 1, - anon_sym_RPAREN, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1495), 1, + anon_sym_COLON, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33223,67 +33870,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27554] = 24, + [28263] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, anon_sym_as, - ACTIONS(1512), 1, - anon_sym_RPAREN, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(1481), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(271), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + ACTIONS(273), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33294,67 +33925,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27649] = 24, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_GT, + [28342] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, + ACTIONS(1467), 1, anon_sym_GT, - ACTIONS(976), 1, - anon_sym_QMARK, - ACTIONS(982), 1, + ACTIONS(1471), 1, anon_sym_LT_EQ, - ACTIONS(1514), 1, - anon_sym_COLON, - STATE(119), 1, + ACTIONS(1483), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_QMARK, + ACTIONS(1497), 1, + anon_sym_EQ_GT, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(1481), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, + ACTIONS(1489), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1465), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(1485), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33365,27 +34004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27744] = 11, + [28437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(946), 1, - anon_sym_as, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(204), 14, + ACTIONS(248), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -33400,7 +34034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 22, + ACTIONS(250), 25, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33422,68 +34056,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, anon_sym_EQ_GT, - [27813] = 24, + [28502] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(277), 1, + anon_sym_EQ_GT, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, + ACTIONS(630), 1, + anon_sym_BANG, ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, anon_sym_as, - ACTIONS(1516), 1, - anon_sym_RPAREN, - STATE(119), 1, + ACTIONS(1467), 1, + anon_sym_GT, + ACTIONS(1471), 1, + anon_sym_LT_EQ, + ACTIONS(1483), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(1481), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, + ACTIONS(1489), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1465), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(1485), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33494,37 +34131,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27908] = 9, + [28597] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(606), 1, + anon_sym_LT, + ACTIONS(630), 1, anon_sym_BANG, - STATE(119), 1, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, + anon_sym_as, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1499), 1, + anon_sym_COLON, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(252), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(705), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(254), 25, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33535,82 +34202,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - anon_sym_as, - anon_sym_is, - anon_sym_BANGis, - anon_sym_EQ_GT, - [27973] = 24, + [28692] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1518), 1, - anon_sym_RPAREN, - STATE(119), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1501), 1, + anon_sym_COLON, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33621,67 +34273,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28068] = 24, + [28787] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_LT_EQ, - ACTIONS(946), 1, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1520), 1, + ACTIONS(747), 1, + anon_sym_EQ, + ACTIONS(753), 1, + anon_sym_QMARK, + ACTIONS(1503), 1, anon_sym_RPAREN, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33692,67 +34344,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28163] = 24, + [28882] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(254), 1, + anon_sym_EQ_GT, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, + ACTIONS(630), 1, + anon_sym_BANG, ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, anon_sym_as, - ACTIONS(1522), 1, - anon_sym_RPAREN, - STATE(119), 1, + ACTIONS(1467), 1, + anon_sym_GT, + ACTIONS(1471), 1, + anon_sym_LT_EQ, + ACTIONS(1483), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_QMARK, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(1473), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, + ACTIONS(1475), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(719), 2, + ACTIONS(1477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, + ACTIONS(1481), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(701), 3, + ACTIONS(1489), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1465), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(721), 3, + ACTIONS(1479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, + ACTIONS(1469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(1485), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33763,138 +34415,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28258] = 24, + [28977] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - ACTIONS(1524), 1, + ACTIONS(1505), 1, anon_sym_COLON, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28353] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - anon_sym_EQ_GT, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(1488), 1, - anon_sym_EQ, - ACTIONS(1492), 1, - anon_sym_GT, - ACTIONS(1496), 1, - anon_sym_QMARK, - ACTIONS(1502), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(369), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1498), 2, + ACTIONS(755), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1504), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1506), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1490), 3, + ACTIONS(749), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1494), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33905,67 +34486,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28448] = 24, + [29072] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(1488), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(1492), 1, - anon_sym_GT, - ACTIONS(1496), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(1502), 1, - anon_sym_LT_EQ, - ACTIONS(1526), 1, - anon_sym_EQ_GT, - STATE(119), 1, + ACTIONS(1507), 1, + anon_sym_RPAREN, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(369), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1484), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1498), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1504), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1508), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1482), 3, + ACTIONS(711), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1490), 3, + ACTIONS(749), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1500), 4, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1494), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33976,67 +34557,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28543] = 24, + [29167] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, + ACTIONS(630), 1, anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(699), 1, - anon_sym_EQ, - ACTIONS(703), 1, - anon_sym_GT, - ACTIONS(707), 1, - anon_sym_QMARK, ACTIONS(713), 1, - anon_sym_LT_EQ, - ACTIONS(946), 1, anon_sym_as, - ACTIONS(1528), 1, - anon_sym_RPAREN, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(383), 1, + STATE(344), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, + ACTIONS(715), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(715), 2, + ACTIONS(260), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(723), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(701), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(705), 10, + ACTIONS(262), 22, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34047,138 +34603,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28638] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, - anon_sym_LT, - ACTIONS(946), 1, - anon_sym_as, - ACTIONS(968), 1, - anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - ACTIONS(1530), 1, - anon_sym_COLON, - STATE(119), 1, - sym_argument_list, - STATE(121), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(984), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(986), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(988), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(992), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(980), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28733] = 24, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_EQ_GT, + [29236] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(524), 1, + ACTIONS(604), 1, anon_sym_DOT, - ACTIONS(530), 1, - anon_sym_BANG, - ACTIONS(542), 1, + ACTIONS(606), 1, anon_sym_LT, - ACTIONS(946), 1, + ACTIONS(630), 1, + anon_sym_BANG, + ACTIONS(697), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_LT_EQ, + ACTIONS(713), 1, anon_sym_as, - ACTIONS(968), 1, + ACTIONS(747), 1, anon_sym_EQ, - ACTIONS(972), 1, - anon_sym_GT, - ACTIONS(976), 1, + ACTIONS(753), 1, anon_sym_QMARK, - ACTIONS(982), 1, - anon_sym_LT_EQ, - ACTIONS(1532), 1, + ACTIONS(1509), 1, anon_sym_COLON, - STATE(119), 1, + STATE(152), 1, sym_argument_list, - STATE(121), 1, + STATE(153), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(408), 1, sym__brackets_lt_gt, - ACTIONS(536), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(978), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(984), 2, + ACTIONS(703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(986), 2, + ACTIONS(705), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(988), 2, + ACTIONS(707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(992), 2, + ACTIONS(711), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(970), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(990), 3, + ACTIONS(715), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(755), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(980), 4, + ACTIONS(749), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(699), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(974), 10, + ACTIONS(751), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34189,10 +34686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28828] = 3, + [29331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 13, + ACTIONS(1513), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34206,7 +34703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1534), 20, + ACTIONS(1511), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34227,15 +34724,19 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [28869] = 3, + [29372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 13, + ACTIONS(1519), 1, + anon_sym_LBRACE, + ACTIONS(1521), 1, + anon_sym_else, + STATE(440), 1, + sym_block_statement, + ACTIONS(1517), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, @@ -34244,13 +34745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1538), 20, + ACTIONS(1515), 19, anon_sym_var, anon_sym_val, anon_sym_return, anon_sym_repeat, anon_sym_if, - anon_sym_else, anon_sym_do, anon_sym_while, sym_break_statement, @@ -34265,19 +34765,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [28910] = 6, + [29419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_LBRACE, - ACTIONS(1548), 1, - anon_sym_else, - STATE(431), 1, - sym_block_statement, - ACTIONS(1544), 11, + ACTIONS(1525), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, @@ -34286,12 +34782,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1542), 19, + ACTIONS(1523), 20, anon_sym_var, anon_sym_val, anon_sym_return, anon_sym_repeat, anon_sym_if, + anon_sym_else, anon_sym_do, anon_sym_while, sym_break_statement, @@ -34306,12 +34803,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [28957] = 4, + [29460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1554), 1, - anon_sym_else, - ACTIONS(1552), 12, + ACTIONS(1529), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34324,12 +34819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1550), 19, + ACTIONS(1527), 20, anon_sym_var, anon_sym_val, anon_sym_return, anon_sym_repeat, anon_sym_if, + anon_sym_else, anon_sym_do, anon_sym_while, sym_break_statement, @@ -34344,10 +34840,12 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [28999] = 3, + [29500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 12, + ACTIONS(1535), 1, + anon_sym_else, + ACTIONS(1533), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34360,13 +34858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1556), 20, + ACTIONS(1531), 19, anon_sym_var, anon_sym_val, anon_sym_return, anon_sym_repeat, anon_sym_if, - anon_sym_else, anon_sym_do, anon_sym_while, sym_break_statement, @@ -34381,10 +34878,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29039] = 3, + [29542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 12, + ACTIONS(1539), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34397,7 +34894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1560), 19, + ACTIONS(1537), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34417,10 +34914,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29078] = 3, + [29581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 12, + ACTIONS(1543), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34433,7 +34930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1564), 19, + ACTIONS(1541), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34453,10 +34950,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29117] = 3, + [29620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1547), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34469,7 +34966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1568), 19, + ACTIONS(1545), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34489,10 +34986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29156] = 3, + [29659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 12, + ACTIONS(1551), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34505,7 +35002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1572), 19, + ACTIONS(1549), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34525,11 +35022,12 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29195] = 3, + [29698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 12, + ACTIONS(1555), 1, anon_sym_SEMI, + ACTIONS(1557), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -34541,7 +35039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1576), 19, + ACTIONS(1553), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34561,10 +35059,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29234] = 3, + [29739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1582), 12, + ACTIONS(1561), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34577,7 +35075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1580), 19, + ACTIONS(1559), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34597,10 +35095,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29273] = 3, + [29778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1586), 12, + ACTIONS(1565), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34613,7 +35111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1584), 19, + ACTIONS(1563), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34633,10 +35131,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29312] = 3, + [29817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 12, + ACTIONS(1569), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34649,7 +35147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1588), 19, + ACTIONS(1567), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34669,10 +35167,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29351] = 3, + [29856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1594), 12, + ACTIONS(1573), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34685,7 +35183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1592), 19, + ACTIONS(1571), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34705,10 +35203,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29390] = 3, + [29895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 12, + ACTIONS(1577), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34721,7 +35219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1596), 19, + ACTIONS(1575), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34741,10 +35239,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29429] = 3, + [29934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 12, + ACTIONS(1577), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -34757,7 +35255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1560), 19, + ACTIONS(1575), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34777,12 +35275,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29468] = 4, + [29973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1581), 12, anon_sym_SEMI, - ACTIONS(1604), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -34794,7 +35291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1600), 19, + ACTIONS(1579), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -34814,14 +35311,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29509] = 5, + [30012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(279), 1, anon_sym_EQ, - ACTIONS(1606), 1, + ACTIONS(1583), 1, anon_sym_LT, - STATE(456), 1, + STATE(461), 1, sym_instantiationT_list, ACTIONS(202), 24, ts_builtin_sym_end, @@ -34848,16 +35345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [29548] = 9, + [30051] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, ACTIONS(179), 2, anon_sym_DASH_GT, @@ -34866,7 +35363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, sym_builtin_specifier, - STATE(504), 8, + STATE(505), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -34885,22 +35382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_RBRACK, anon_sym_EQ_GT, - [29594] = 8, + [30097] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, ACTIONS(167), 3, anon_sym_EQ, anon_sym_asm, sym_builtin_specifier, - STATE(504), 8, + STATE(505), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -34921,37 +35418,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [29638] = 15, + [30141] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1614), 1, - ts_builtin_sym_end, - ACTIONS(1616), 1, + ACTIONS(7), 1, anon_sym_tolk, - ACTIONS(1619), 1, + ACTIONS(9), 1, anon_sym_import, - ACTIONS(1622), 1, + ACTIONS(11), 1, anon_sym_global, - ACTIONS(1625), 1, + ACTIONS(13), 1, anon_sym_SEMI, - ACTIONS(1628), 1, + ACTIONS(15), 1, anon_sym_const, - ACTIONS(1631), 1, + ACTIONS(17), 1, anon_sym_type, - ACTIONS(1634), 1, + ACTIONS(19), 1, anon_sym_struct, - ACTIONS(1637), 1, + ACTIONS(21), 1, anon_sym_fun, - ACTIONS(1640), 1, + ACTIONS(23), 1, anon_sym_get, - ACTIONS(1643), 1, + ACTIONS(25), 1, anon_sym_AT, - STATE(749), 1, + ACTIONS(1591), 1, + ts_builtin_sym_end, + STATE(767), 1, sym_annotation_list, - STATE(694), 2, + STATE(702), 2, sym_annotation, aux_sym_annotation_list_repeat1, - STATE(448), 12, + STATE(457), 12, sym__top_level_declaration, sym_tolk_required_version, sym_import_directive, @@ -34964,37 +35461,37 @@ static const uint16_t ts_small_parse_table[] = { sym_get_method_declaration, sym_empty_statement, aux_sym_source_file_repeat1, - [29696] = 15, + [30199] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(1593), 1, + ts_builtin_sym_end, + ACTIONS(1595), 1, anon_sym_tolk, - ACTIONS(9), 1, + ACTIONS(1598), 1, anon_sym_import, - ACTIONS(11), 1, + ACTIONS(1601), 1, anon_sym_global, - ACTIONS(13), 1, + ACTIONS(1604), 1, anon_sym_SEMI, - ACTIONS(15), 1, + ACTIONS(1607), 1, anon_sym_const, - ACTIONS(17), 1, + ACTIONS(1610), 1, anon_sym_type, - ACTIONS(19), 1, + ACTIONS(1613), 1, anon_sym_struct, - ACTIONS(21), 1, + ACTIONS(1616), 1, anon_sym_fun, - ACTIONS(23), 1, + ACTIONS(1619), 1, anon_sym_get, - ACTIONS(25), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1646), 1, - ts_builtin_sym_end, - STATE(749), 1, + STATE(767), 1, sym_annotation_list, - STATE(694), 2, + STATE(702), 2, sym_annotation, aux_sym_annotation_list_repeat1, - STATE(448), 12, + STATE(457), 12, sym__top_level_declaration, sym_tolk_required_version, sym_import_directive, @@ -35007,12 +35504,42 @@ static const uint16_t ts_small_parse_table[] = { sym_get_method_declaration, sym_empty_statement, aux_sym_source_file_repeat1, - [29754] = 3, + [30257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_EQ, + ACTIONS(361), 24, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_PIPE, + anon_sym_struct, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_GT, + anon_sym_asm, + anon_sym_DASH_GT, + sym_builtin_specifier, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + [30290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(329), 1, anon_sym_EQ, - ACTIONS(360), 24, + ACTIONS(331), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35037,47 +35564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [29787] = 8, + [30323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 1, - sym_identifier, - ACTIONS(1651), 1, - anon_sym_PIPE, - ACTIONS(1654), 1, - anon_sym_LPAREN, - ACTIONS(1659), 1, - anon_sym_LBRACK, - ACTIONS(1662), 6, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - ACTIONS(1657), 7, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - STATE(738), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [29830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(332), 1, + ACTIONS(363), 1, anon_sym_EQ, - ACTIONS(334), 24, + ACTIONS(365), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35102,12 +35594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [29863] = 3, + [30356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, + ACTIONS(284), 1, anon_sym_EQ, - ACTIONS(306), 24, + ACTIONS(286), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35132,24 +35624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [29896] = 8, + [30389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - ACTIONS(165), 5, + ACTIONS(179), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + ACTIONS(175), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_QMARK, - ACTIONS(167), 8, + ACTIONS(177), 8, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -35158,7 +35651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_fun, anon_sym_get, - STATE(521), 8, + STATE(530), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -35167,12 +35660,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [29939] = 3, + [30434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(296), 1, + ACTIONS(355), 1, anon_sym_EQ, - ACTIONS(298), 24, + ACTIONS(357), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35197,12 +35690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [29972] = 3, + [30467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(362), 1, + ACTIONS(333), 1, anon_sym_EQ, - ACTIONS(364), 24, + ACTIONS(335), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35227,106 +35720,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [30005] = 3, + [30500] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, - anon_sym_EQ, - ACTIONS(310), 24, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, + ACTIONS(1585), 1, + sym_identifier, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_PIPE, - anon_sym_struct, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_GT, - anon_sym_asm, - anon_sym_DASH_GT, - sym_builtin_specifier, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - [30038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(300), 1, - anon_sym_EQ, - ACTIONS(302), 24, + ACTIONS(165), 5, ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_PIPE, - anon_sym_struct, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, anon_sym_AT, - anon_sym_GT, - anon_sym_asm, anon_sym_DASH_GT, - sym_builtin_specifier, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_EQ_GT, - [30071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(312), 1, - anon_sym_EQ, - ACTIONS(314), 24, - ts_builtin_sym_end, + ACTIONS(167), 8, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, - anon_sym_PIPE, anon_sym_struct, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_fun, - anon_sym_DOT, anon_sym_get, - anon_sym_AT, - anon_sym_GT, - anon_sym_asm, - anon_sym_DASH_GT, - sym_builtin_specifier, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - [30104] = 8, + STATE(530), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [30543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1625), 1, anon_sym_PIPE, ACTIONS(179), 5, ts_builtin_sym_end, @@ -35334,7 +35772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH_GT, anon_sym_QMARK, - ACTIONS(1666), 8, + ACTIONS(1627), 8, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -35343,7 +35781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_fun, anon_sym_get, - STATE(521), 8, + STATE(530), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -35352,25 +35790,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [30147] = 8, + [30586] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1651), 1, + ACTIONS(1633), 1, anon_sym_PIPE, - ACTIONS(1654), 1, + ACTIONS(1636), 1, anon_sym_LPAREN, - ACTIONS(1659), 1, + ACTIONS(1641), 1, anon_sym_LBRACK, - ACTIONS(1662), 6, + ACTIONS(1644), 6, anon_sym_lazy, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, - ACTIONS(1657), 7, + ACTIONS(1639), 7, anon_sym_LBRACE, anon_sym_DASH, anon_sym_PLUS, @@ -35378,7 +35816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - STATE(754), 8, + STATE(764), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -35387,61 +35825,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [30190] = 9, + [30629] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1633), 1, anon_sym_PIPE, - ACTIONS(179), 2, - anon_sym_DASH_GT, - anon_sym_QMARK, - ACTIONS(175), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(177), 8, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - STATE(521), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [30235] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1648), 1, - sym_identifier, - ACTIONS(1651), 1, - anon_sym_PIPE, - ACTIONS(1654), 1, + ACTIONS(1636), 1, anon_sym_LPAREN, - ACTIONS(1659), 1, + ACTIONS(1641), 1, anon_sym_LBRACK, - ACTIONS(1662), 6, + ACTIONS(1644), 6, anon_sym_lazy, anon_sym_match, anon_sym_true, anon_sym_false, sym_null_literal, sym_underscore, - ACTIONS(1657), 7, + ACTIONS(1639), 7, anon_sym_LBRACE, anon_sym_DASH, anon_sym_PLUS, @@ -35449,7 +35851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - STATE(750), 8, + STATE(768), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -35458,12 +35860,72 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [30278] = 3, + [30672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + anon_sym_EQ, + ACTIONS(319), 24, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_PIPE, + anon_sym_struct, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_GT, + anon_sym_asm, + anon_sym_DASH_GT, + sym_builtin_specifier, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + [30705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 1, + anon_sym_EQ, + ACTIONS(323), 24, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_PIPE, + anon_sym_struct, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_GT, + anon_sym_asm, + anon_sym_DASH_GT, + sym_builtin_specifier, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + [30738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(292), 1, + ACTIONS(351), 1, anon_sym_EQ, - ACTIONS(294), 24, + ACTIONS(353), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35488,12 +35950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [30311] = 3, + [30771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(356), 1, + ACTIONS(325), 1, anon_sym_EQ, - ACTIONS(326), 24, + ACTIONS(327), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -35518,12 +35980,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [30344] = 4, + [30804] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1630), 1, + sym_identifier, + ACTIONS(1633), 1, + anon_sym_PIPE, + ACTIONS(1636), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, + anon_sym_LBRACK, + ACTIONS(1644), 6, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + ACTIONS(1639), 7, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + sym_number_literal, + sym_string_literal, + STATE(756), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [30847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1669), 8, + ACTIONS(1646), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35532,7 +36029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1671), 11, + ACTIONS(1648), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35544,12 +36041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30374] = 4, + [30877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1656), 1, anon_sym_COMMA, - ACTIONS(1675), 8, + ACTIONS(1652), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35558,7 +36055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1677), 11, + ACTIONS(1654), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35570,12 +36067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30404] = 4, + [30907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1662), 1, anon_sym_COMMA, - ACTIONS(1681), 8, + ACTIONS(1658), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35584,7 +36081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1683), 11, + ACTIONS(1660), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35596,12 +36093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30434] = 4, + [30937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1668), 1, anon_sym_COMMA, - ACTIONS(1687), 8, + ACTIONS(1664), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35610,7 +36107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1689), 11, + ACTIONS(1666), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35622,12 +36119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30464] = 4, + [30967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(1674), 1, anon_sym_COMMA, - ACTIONS(1693), 8, + ACTIONS(1670), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35636,7 +36133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1695), 11, + ACTIONS(1672), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35648,12 +36145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30494] = 4, + [30997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, + ACTIONS(1680), 1, anon_sym_COMMA, - ACTIONS(1699), 8, + ACTIONS(1676), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35662,7 +36159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1701), 11, + ACTIONS(1678), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35674,12 +36171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30524] = 4, + [31027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, + ACTIONS(1686), 1, anon_sym_COMMA, - ACTIONS(1705), 8, + ACTIONS(1682), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35688,7 +36185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1707), 11, + ACTIONS(1684), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35700,12 +36197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30554] = 4, + [31057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, + ACTIONS(1692), 1, anon_sym_COMMA, - ACTIONS(1711), 8, + ACTIONS(1688), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35714,7 +36211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1713), 11, + ACTIONS(1690), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35726,12 +36223,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30584] = 4, + [31087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1721), 1, + ACTIONS(1698), 1, anon_sym_COMMA, - ACTIONS(1717), 8, + ACTIONS(1694), 8, + anon_sym_else, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(1696), 11, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + sym_number_literal, + sym_string_literal, + [31117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35740,7 +36261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1719), 11, + ACTIONS(1702), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35752,10 +36273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30614] = 3, + [31144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 8, + ACTIONS(1704), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35764,7 +36285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1725), 11, + ACTIONS(1706), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35776,10 +36297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30641] = 3, + [31171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 8, + ACTIONS(1708), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35788,7 +36309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1729), 11, + ACTIONS(1710), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35800,10 +36321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30668] = 3, + [31198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 8, + ACTIONS(1712), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35812,7 +36333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1733), 11, + ACTIONS(1714), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35824,10 +36345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30695] = 3, + [31225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 8, + ACTIONS(1716), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35836,7 +36357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1737), 11, + ACTIONS(1718), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35848,10 +36369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30722] = 3, + [31252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 8, + ACTIONS(1720), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35860,7 +36381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1741), 11, + ACTIONS(1722), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35872,10 +36393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30749] = 3, + [31279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 8, + ACTIONS(1724), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35884,7 +36405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1745), 11, + ACTIONS(1726), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35896,10 +36417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30776] = 3, + [31306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 8, + ACTIONS(1728), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35908,7 +36429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1749), 11, + ACTIONS(1730), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35920,10 +36441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30803] = 3, + [31333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 8, + ACTIONS(1732), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35932,7 +36453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1753), 11, + ACTIONS(1734), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35944,10 +36465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30830] = 3, + [31360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 8, + ACTIONS(1736), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35956,7 +36477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1757), 11, + ACTIONS(1738), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35968,10 +36489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30857] = 3, + [31387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 8, + ACTIONS(1740), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -35980,7 +36501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1761), 11, + ACTIONS(1742), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -35992,10 +36513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30884] = 3, + [31414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 8, + ACTIONS(1744), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -36004,7 +36525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1765), 11, + ACTIONS(1746), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -36016,54 +36537,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [30911] = 3, + [31441] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 8, - anon_sym_else, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, + ACTIONS(1748), 1, sym_identifier, - ACTIONS(1769), 11, + ACTIONS(1750), 1, anon_sym_PIPE, + ACTIONS(1752), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1754), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - [30938] = 12, + ACTIONS(179), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + ACTIONS(175), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(720), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [31477] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(637), 1, + STATE(670), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(689), 8, + STATE(700), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36072,30 +36597,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [30982] = 12, + [31521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1748), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1750), 1, + anon_sym_PIPE, + ACTIONS(1752), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1754), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(1773), 1, - anon_sym_asm, - ACTIONS(1775), 1, - sym_builtin_specifier, - STATE(642), 1, - sym__function_body, - STATE(647), 1, - sym_asm_body, - STATE(648), 1, - sym_block_statement, - STATE(681), 8, + ACTIONS(165), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_QMARK, + STATE(720), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36104,30 +36624,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31026] = 12, + [31555] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(665), 1, + STATE(689), 1, sym__function_body, - STATE(692), 8, + STATE(708), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36136,30 +36656,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31070] = 12, + [31599] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(617), 1, + STATE(672), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(683), 8, + STATE(701), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36168,30 +36688,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31114] = 12, + [31643] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(639), 1, + STATE(641), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(684), 8, + STATE(704), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36200,25 +36720,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31158] = 7, + [31687] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1781), 1, + ACTIONS(1585), 1, + sym_identifier, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(165), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_QMARK, - STATE(699), 8, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1758), 1, + anon_sym_asm, + ACTIONS(1760), 1, + sym_builtin_specifier, + STATE(653), 1, + sym__function_body, + STATE(681), 1, + sym_asm_body, + STATE(682), 1, + sym_block_statement, + STATE(695), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36227,30 +36752,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31192] = 12, + [31731] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(647), 1, + STATE(629), 1, + sym__function_body, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(655), 1, - sym__function_body, - STATE(687), 8, + STATE(703), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36259,30 +36784,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31236] = 12, + [31775] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(659), 1, + STATE(687), 1, sym__function_body, - STATE(690), 8, + STATE(707), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36291,58 +36816,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31280] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_PIPE, - ACTIONS(1781), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(179), 2, - anon_sym_DASH_GT, - anon_sym_QMARK, - ACTIONS(175), 4, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(699), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [31316] = 12, + [31819] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1608), 1, + ACTIONS(1585), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1758), 1, anon_sym_asm, - ACTIONS(1775), 1, + ACTIONS(1760), 1, sym_builtin_specifier, - STATE(647), 1, + STATE(656), 1, + sym__function_body, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(678), 1, - sym__function_body, - STATE(685), 8, + STATE(697), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36351,18 +36848,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31360] = 6, + [31863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(372), 1, + ACTIONS(367), 1, anon_sym_EQ, - ACTIONS(1785), 1, + ACTIONS(1762), 1, anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(374), 11, + ACTIONS(369), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -36371,93 +36866,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_GT, anon_sym_asm, + anon_sym_DASH_GT, sym_builtin_specifier, anon_sym_RBRACK, anon_sym_EQ_GT, - [31389] = 9, + [31890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(373), 1, + anon_sym_EQ, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1791), 1, - sym_identifier, - ACTIONS(1793), 1, - anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_GT, - STATE(816), 1, - sym_type_parameter, - STATE(744), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [31424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_LBRACE, - ACTIONS(1801), 1, - anon_sym_LT, - STATE(530), 1, - sym_type_parameters, - STATE(654), 1, - sym_struct_body, - ACTIONS(1797), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(375), 11, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [31453] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1799), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(1801), 1, - anon_sym_LT, - STATE(541), 1, - sym_type_parameters, - STATE(615), 1, - sym_struct_body, - ACTIONS(1803), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [31482] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_GT, + anon_sym_asm, + sym_builtin_specifier, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [31919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1801), 1, + ACTIONS(1774), 1, anon_sym_LT, - STATE(527), 1, + STATE(539), 1, sym_type_parameters, - STATE(653), 1, + STATE(649), 1, sym_struct_body, - ACTIONS(1805), 11, + ACTIONS(1770), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36469,18 +36916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31511] = 6, + [31948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1801), 1, + ACTIONS(1774), 1, anon_sym_LT, - STATE(539), 1, + STATE(549), 1, sym_type_parameters, - STATE(632), 1, + STATE(651), 1, sym_struct_body, - ACTIONS(1807), 11, + ACTIONS(1776), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36492,18 +36939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31540] = 6, + [31977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, + ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(382), 1, + ACTIONS(294), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1809), 1, + ACTIONS(1778), 1, anon_sym_PIPE, - ACTIONS(378), 11, + ACTIONS(290), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -36515,66 +36962,94 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_specifier, anon_sym_RBRACK, anon_sym_EQ_GT, - [31569] = 5, + [32006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(366), 1, - anon_sym_EQ, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1811), 1, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(368), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + sym_identifier, + ACTIONS(1782), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(1784), 1, anon_sym_GT, - anon_sym_asm, - anon_sym_DASH_GT, - sym_builtin_specifier, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [31596] = 6, + STATE(896), 1, + sym_type_parameter, + STATE(761), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [32041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1815), 1, + ACTIONS(1772), 1, + anon_sym_LBRACE, + ACTIONS(1774), 1, + anon_sym_LT, + STATE(553), 1, + sym_type_parameters, + STATE(652), 1, + sym_struct_body, + ACTIONS(1786), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, anon_sym_SEMI, - ACTIONS(1817), 1, - anon_sym_PIPE, - ACTIONS(1819), 1, - anon_sym_DASH_GT, - ACTIONS(1813), 10, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [32070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_LBRACE, + ACTIONS(1774), 1, + anon_sym_LT, + STATE(552), 1, + sym_type_parameters, + STATE(627), 1, + sym_struct_body, + ACTIONS(1788), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [31624] = 8, + [32099] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(626), 1, + STATE(634), 1, sym_block_statement, - STATE(776), 8, + STATE(784), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36583,10 +37058,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31656] = 2, + [32131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 14, + ACTIONS(1792), 14, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36601,102 +37076,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31676] = 6, + [32151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1817), 1, + ACTIONS(1794), 1, anon_sym_PIPE, - ACTIONS(1819), 1, + ACTIONS(1796), 1, anon_sym_DASH_GT, - ACTIONS(1827), 1, - anon_sym_SEMI, - ACTIONS(1825), 10, + ACTIONS(375), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [31704] = 6, + [32177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1819), 1, - anon_sym_DASH_GT, - ACTIONS(1831), 1, - anon_sym_SEMI, - ACTIONS(1833), 1, + ACTIONS(1798), 1, anon_sym_PIPE, - ACTIONS(1829), 10, + ACTIONS(294), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [31732] = 6, + anon_sym_DASH_GT, + [32201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1819), 1, + ACTIONS(294), 1, anon_sym_DASH_GT, - ACTIONS(1833), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1800), 1, anon_sym_PIPE, - ACTIONS(1837), 1, - anon_sym_SEMI, - ACTIONS(1835), 10, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [31760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 14, + ACTIONS(290), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, anon_sym_SEMI, anon_sym_const, - anon_sym_EQ, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_fun, anon_sym_get, anon_sym_AT, - [31780] = 6, + [32227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1817), 1, + ACTIONS(1794), 1, anon_sym_PIPE, - ACTIONS(1819), 1, + ACTIONS(1796), 1, anon_sym_DASH_GT, - ACTIONS(1843), 1, + ACTIONS(1804), 1, anon_sym_SEMI, - ACTIONS(1841), 10, + ACTIONS(1802), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36707,10 +37160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31808] = 2, + [32255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 14, + ACTIONS(1806), 14, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36725,40 +37178,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31828] = 6, + [32275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1817), 1, - anon_sym_PIPE, - ACTIONS(1819), 1, + ACTIONS(1796), 1, anon_sym_DASH_GT, - ACTIONS(1849), 1, + ACTIONS(1810), 1, anon_sym_SEMI, - ACTIONS(1847), 10, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [31856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1819), 1, - anon_sym_DASH_GT, - ACTIONS(1833), 1, + ACTIONS(1812), 1, anon_sym_PIPE, - ACTIONS(1853), 1, - anon_sym_SEMI, - ACTIONS(1851), 10, + ACTIONS(1808), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36769,18 +37200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31884] = 6, + [32303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1819), 1, + ACTIONS(1796), 1, anon_sym_DASH_GT, - ACTIONS(1833), 1, + ACTIONS(1812), 1, anon_sym_PIPE, - ACTIONS(1857), 1, + ACTIONS(1816), 1, anon_sym_SEMI, - ACTIONS(1855), 10, + ACTIONS(1814), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36791,42 +37222,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31912] = 4, + [32331] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1859), 1, + ACTIONS(1794), 1, anon_sym_PIPE, - ACTIONS(382), 12, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1820), 1, + anon_sym_SEMI, + ACTIONS(1818), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_DASH_GT, - [31936] = 8, + [32359] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(667), 1, + STATE(630), 1, sym_block_statement, - STATE(770), 8, + STATE(791), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -36835,18 +37268,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [31968] = 6, + [32391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1819), 1, - anon_sym_DASH_GT, - ACTIONS(1833), 1, + ACTIONS(1794), 1, anon_sym_PIPE, - ACTIONS(1863), 1, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1824), 1, anon_sym_SEMI, - ACTIONS(1861), 10, + ACTIONS(1822), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36857,54 +37290,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [31996] = 8, + [32419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(1821), 1, - sym_identifier, - STATE(662), 1, - sym_block_statement, - STATE(772), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [32028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1812), 1, anon_sym_PIPE, - ACTIONS(368), 12, + ACTIONS(1828), 1, + anon_sym_SEMI, + ACTIONS(1826), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_DASH_GT, - [32052] = 2, + [32447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 14, + ACTIONS(1830), 14, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36919,39 +37330,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32072] = 5, + [32467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1869), 1, + ACTIONS(1794), 1, anon_sym_PIPE, - ACTIONS(378), 11, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1834), 1, + anon_sym_SEMI, + ACTIONS(1832), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [32098] = 6, + [32495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(1819), 1, - anon_sym_DASH_GT, - ACTIONS(1833), 1, + ACTIONS(1794), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1838), 1, anon_sym_SEMI, - ACTIONS(1871), 10, + ACTIONS(1836), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -36962,59 +37374,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32126] = 8, + [32523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(1821), 1, - sym_identifier, - STATE(671), 1, - sym_block_statement, - STATE(773), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [32158] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1819), 1, - anon_sym_DASH_GT, - ACTIONS(1833), 1, - anon_sym_PIPE, - ACTIONS(374), 11, + ACTIONS(1840), 14, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, anon_sym_SEMI, anon_sym_const, + anon_sym_EQ, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_fun, anon_sym_get, anon_sym_AT, - [32184] = 4, + [32543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_LBRACE, - STATE(622), 1, - sym_struct_body, - ACTIONS(1875), 11, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_PIPE, + ACTIONS(369), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37026,20 +37411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32207] = 7, + anon_sym_DASH_GT, + [32567] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1877), 1, - anon_sym_RBRACK, - STATE(765), 8, + STATE(657), 1, + sym_block_statement, + STATE(789), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37048,58 +37436,88 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32236] = 4, + [32599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - sym_string_literal, - STATE(529), 1, - aux_sym_asm_body_repeat3, - ACTIONS(1879), 11, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1812), 1, + anon_sym_PIPE, + ACTIONS(1846), 1, + anon_sym_SEMI, + ACTIONS(1844), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [32259] = 4, + [32627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1756), 1, anon_sym_LBRACE, - STATE(618), 1, - sym_struct_body, - ACTIONS(1884), 11, + ACTIONS(1790), 1, + sym_identifier, + STATE(621), 1, + sym_block_statement, + STATE(787), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [32659] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1794), 1, + anon_sym_PIPE, + ACTIONS(1796), 1, + anon_sym_DASH_GT, + ACTIONS(1850), 1, + anon_sym_SEMI, + ACTIONS(1848), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [32282] = 7, + [32687] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(975), 1, - sym_method_receiver, - STATE(798), 8, + ACTIONS(1852), 1, + anon_sym_RPAREN, + STATE(776), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37108,30 +37526,32 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32311] = 5, + [32716] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, - anon_sym_SEMI, - ACTIONS(1892), 1, - sym_string_literal, - STATE(529), 1, - aux_sym_asm_body_repeat3, - ACTIONS(1888), 10, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [32336] = 2, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1790), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_RPAREN, + STATE(772), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [32745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 13, + ACTIONS(1529), 13, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37145,16 +37565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_while, anon_sym_catch, - [32355] = 5, + [32764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 1, - sym_string_literal, - ACTIONS(1896), 1, + ACTIONS(1858), 1, anon_sym_SEMI, - STATE(529), 1, + ACTIONS(1860), 1, + sym_string_literal, + STATE(546), 1, aux_sym_asm_body_repeat3, - ACTIONS(1894), 10, + ACTIONS(1856), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37165,39 +37585,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32380] = 5, + [32789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 1, - sym_string_literal, - ACTIONS(1900), 1, - anon_sym_SEMI, - STATE(529), 1, - aux_sym_asm_body_repeat3, - ACTIONS(1898), 10, + ACTIONS(1772), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_struct_body, + ACTIONS(1862), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, anon_sym_AT, - [32405] = 7, + [32812] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1902), 1, - anon_sym_RPAREN, + ACTIONS(1864), 1, + anon_sym_RBRACK, STATE(766), 8, sym__type_hint, sym_type_instantiatedTs, @@ -37207,20 +37626,86 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32434] = 7, + [32841] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1790), 1, + sym_identifier, + ACTIONS(1866), 1, + anon_sym_RBRACK, + STATE(777), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [32870] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(1868), 1, + anon_sym_RBRACK, + STATE(750), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [32899] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1870), 1, + sym_identifier, + STATE(945), 1, + sym_method_receiver, + STATE(804), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [32928] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1790), 1, + sym_identifier, + ACTIONS(1872), 1, anon_sym_RPAREN, - STATE(747), 8, + STATE(757), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37229,20 +37714,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32463] = 7, + [32957] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1906), 1, + ACTIONS(1874), 1, anon_sym_RBRACK, - STATE(748), 8, + STATE(758), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37251,14 +37736,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32492] = 4, + [32986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_struct_body, - ACTIONS(1908), 11, + ACTIONS(1878), 1, + sym_string_literal, + STATE(546), 1, + aux_sym_asm_body_repeat3, + ACTIONS(1876), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37270,20 +37755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32515] = 7, + [33009] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1910), 1, + ACTIONS(1881), 1, sym_identifier, - STATE(932), 1, + STATE(944), 1, sym_method_receiver, - STATE(798), 8, + STATE(804), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37292,14 +37777,34 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32544] = 4, + [33038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1860), 1, + sym_string_literal, + ACTIONS(1885), 1, + anon_sym_SEMI, + STATE(546), 1, + aux_sym_asm_body_repeat3, + ACTIONS(1883), 10, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [33063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1772), 1, anon_sym_LBRACE, - STATE(674), 1, + STATE(637), 1, sym_struct_body, - ACTIONS(1912), 11, + ACTIONS(1887), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37311,16 +37816,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32567] = 5, + [33086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 1, + ACTIONS(1513), 13, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + anon_sym_while, + anon_sym_catch, + [33105] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, sym_string_literal, - ACTIONS(1916), 1, + ACTIONS(1891), 1, anon_sym_SEMI, - STATE(529), 1, + STATE(546), 1, aux_sym_asm_body_repeat3, - ACTIONS(1914), 10, + ACTIONS(1889), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37331,10 +37853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32592] = 2, + [33130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 13, + ACTIONS(1772), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_struct_body, + ACTIONS(1893), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37346,22 +37872,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_while, - anon_sym_catch, - [32611] = 7, + [33153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_struct_body, + ACTIONS(1895), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_SEMI, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [33176] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1897), 1, anon_sym_RPAREN, - STATE(752), 8, + STATE(754), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37370,20 +37913,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32640] = 7, + [33205] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1920), 1, - anon_sym_RBRACK, - STATE(753), 8, + ACTIONS(1899), 1, + anon_sym_RPAREN, + STATE(759), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37392,16 +37935,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32669] = 5, + [33234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 1, + ACTIONS(1860), 1, sym_string_literal, - ACTIONS(1924), 1, + ACTIONS(1903), 1, anon_sym_SEMI, - STATE(529), 1, + STATE(546), 1, aux_sym_asm_body_repeat3, - ACTIONS(1922), 10, + ACTIONS(1901), 10, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37412,10 +37955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32694] = 2, + [33259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 13, + ACTIONS(1525), 13, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -37429,20 +37972,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_while, anon_sym_catch, - [32713] = 7, + [33278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + sym_string_literal, + ACTIONS(1907), 1, + anon_sym_SEMI, + STATE(546), 1, + aux_sym_asm_body_repeat3, + ACTIONS(1905), 10, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [33303] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1926), 1, - anon_sym_RPAREN, - STATE(757), 8, + ACTIONS(1909), 1, + anon_sym_RBRACK, + STATE(755), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37451,20 +38014,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32742] = 7, + [33332] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1928), 1, - anon_sym_RBRACK, - STATE(758), 8, + STATE(895), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37473,20 +38034,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32771] = 7, + [33358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1911), 1, sym_identifier, - ACTIONS(1930), 1, - anon_sym_RPAREN, - STATE(763), 8, + ACTIONS(1913), 1, + anon_sym_PIPE, + STATE(238), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37495,20 +38054,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32800] = 7, + [33384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1911), 1, sym_identifier, - ACTIONS(1932), 1, - anon_sym_RBRACK, - STATE(751), 8, + ACTIONS(1913), 1, + anon_sym_PIPE, + STATE(240), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37517,18 +38074,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32829] = 6, + [33410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(173), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(1911), 1, sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1913), 1, anon_sym_PIPE, - STATE(45), 8, + STATE(244), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37537,18 +38094,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32855] = 6, + [33436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1790), 1, sym_identifier, - STATE(830), 8, + STATE(525), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37557,18 +38114,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32881] = 6, + [33462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(504), 8, + ACTIONS(1915), 1, + anon_sym_PIPE, + STATE(527), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37577,18 +38134,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32907] = 6, + [33488] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(497), 8, + STATE(761), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37597,18 +38154,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32933] = 6, + [33514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(505), 8, + STATE(509), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37617,18 +38174,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32959] = 6, + [33540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1940), 1, - anon_sym_PIPE, - STATE(166), 8, + STATE(736), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37637,18 +38194,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [32985] = 6, + [33566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, - sym_identifier, - ACTIONS(1940), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - STATE(167), 8, + ACTIONS(1790), 1, + sym_identifier, + STATE(521), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37657,18 +38214,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33011] = 6, + [33592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1940), 1, + ACTIONS(1917), 1, anon_sym_PIPE, - STATE(172), 8, + STATE(522), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37677,18 +38234,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33037] = 6, + [33618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(509), 8, + STATE(769), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37697,18 +38254,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33063] = 6, + [33644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1748), 1, + sym_identifier, + ACTIONS(1750), 1, + anon_sym_PIPE, + ACTIONS(1752), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1754), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1821), 1, - sym_identifier, - STATE(514), 8, + STATE(720), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37717,18 +38274,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33089] = 6, + [33670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1748), 1, + sym_identifier, + ACTIONS(1750), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1752), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1754), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - sym_identifier, - STATE(774), 8, + STATE(721), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37737,18 +38294,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33115] = 6, + [33696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1748), 1, sym_identifier, - ACTIONS(1942), 1, + ACTIONS(1750), 1, anon_sym_PIPE, - STATE(515), 8, + ACTIONS(1752), 1, + anon_sym_LPAREN, + ACTIONS(1754), 1, + anon_sym_LBRACK, + STATE(725), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37757,18 +38314,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33141] = 6, + [33722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(508), 8, + STATE(524), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37777,38 +38334,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33167] = 6, + [33748] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(779), 8, - sym__type_hint, - sym_type_instantiatedTs, - sym_tensor_type, - sym_tuple_type, - sym_parenthesized_type, - sym_fun_callable_type, - sym_nullable_type, - sym_union_type, - [33193] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1821), 1, - sym_identifier, - STATE(517), 8, + STATE(808), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37817,18 +38354,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33219] = 6, + [33774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(266), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1944), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1946), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - STATE(81), 8, + STATE(534), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37837,18 +38374,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33245] = 6, + [33800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_PIPE, - ACTIONS(1781), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - STATE(697), 8, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1790), 1, + sym_identifier, + STATE(532), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37857,18 +38394,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33271] = 6, + [33826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(171), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(173), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1940), 1, + ACTIONS(1923), 1, anon_sym_PIPE, - STATE(164), 8, + STATE(43), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37877,18 +38414,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33297] = 6, + [33852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(171), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(173), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1940), 1, + ACTIONS(1923), 1, anon_sym_PIPE, - STATE(165), 8, + STATE(44), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37897,18 +38434,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33323] = 6, + [33878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(171), 1, anon_sym_LPAREN, - ACTIONS(266), 1, + ACTIONS(173), 1, anon_sym_LBRACK, - ACTIONS(1944), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1946), 1, + ACTIONS(1923), 1, anon_sym_PIPE, - STATE(91), 8, + STATE(28), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37917,18 +38454,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33349] = 6, + [33904] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(693), 8, + STATE(698), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37937,18 +38474,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33375] = 6, + [33930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1911), 1, sym_identifier, - STATE(741), 8, + ACTIONS(1913), 1, + anon_sym_PIPE, + STATE(234), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37957,18 +38494,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33401] = 6, + [33956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1911), 1, sym_identifier, - STATE(736), 8, + ACTIONS(1913), 1, + anon_sym_PIPE, + STATE(236), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37977,18 +38514,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33427] = 6, + [33982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - sym_identifier, - ACTIONS(1948), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - STATE(524), 8, + ACTIONS(1790), 1, + sym_identifier, + STATE(518), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37997,18 +38534,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33453] = 6, + [34008] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(719), 8, + STATE(801), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38017,18 +38554,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33479] = 6, + [34034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1781), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - STATE(700), 8, + ACTIONS(1790), 1, + sym_identifier, + STATE(505), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38037,18 +38574,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33505] = 6, + [34060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(512), 8, + STATE(844), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38057,18 +38594,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33531] = 6, + [34086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_PIPE, - ACTIONS(1781), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - STATE(701), 8, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1790), 1, + sym_identifier, + STATE(516), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38077,18 +38614,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33557] = 6, + [34112] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(171), 1, anon_sym_LPAREN, ACTIONS(173), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1923), 1, anon_sym_PIPE, - STATE(37), 8, + STATE(29), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38097,18 +38634,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33583] = 6, + [34138] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(171), 1, anon_sym_LPAREN, ACTIONS(173), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1923), 1, anon_sym_PIPE, - STATE(39), 8, + STATE(30), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38117,18 +38654,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33609] = 6, + [34164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(497), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1925), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1927), 1, anon_sym_PIPE, - STATE(510), 8, + STATE(135), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38137,18 +38674,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33635] = 6, + [34190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(266), 1, + ACTIONS(497), 1, anon_sym_LBRACK, - ACTIONS(1944), 1, + ACTIONS(1925), 1, sym_identifier, - ACTIONS(1946), 1, + ACTIONS(1927), 1, anon_sym_PIPE, - STATE(79), 8, + STATE(136), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38157,18 +38694,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33661] = 6, + [34216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(266), 1, + ACTIONS(497), 1, anon_sym_LBRACK, - ACTIONS(1944), 1, + ACTIONS(1925), 1, sym_identifier, - ACTIONS(1946), 1, + ACTIONS(1927), 1, anon_sym_PIPE, - STATE(80), 8, + STATE(137), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38177,18 +38714,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33687] = 6, + [34242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(266), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1944), 1, + ACTIONS(1790), 1, sym_identifier, - ACTIONS(1946), 1, - anon_sym_PIPE, - STATE(83), 8, + STATE(506), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38197,18 +38734,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33713] = 6, + [34268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(31), 1, + anon_sym_PIPE, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(519), 8, + STATE(785), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38217,18 +38754,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33739] = 6, + [34294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - STATE(516), 8, + ACTIONS(1790), 1, + sym_identifier, + STATE(520), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38237,18 +38774,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33765] = 6, + [34320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(173), 1, + ACTIONS(497), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(1925), 1, sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1927), 1, anon_sym_PIPE, - STATE(44), 8, + STATE(118), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38257,18 +38794,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33791] = 6, + [34346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(497), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1925), 1, sym_identifier, - STATE(879), 8, + ACTIONS(1927), 1, + anon_sym_PIPE, + STATE(119), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38277,18 +38814,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33817] = 6, + [34372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_LPAREN, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(1748), 1, sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1750), 1, anon_sym_PIPE, - STATE(46), 8, + ACTIONS(1752), 1, + anon_sym_LPAREN, + ACTIONS(1754), 1, + anon_sym_LBRACK, + STATE(712), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38297,18 +38834,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33843] = 6, + [34398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1790), 1, sym_identifier, - STATE(744), 8, + STATE(530), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38317,18 +38854,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33869] = 6, + [34424] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(843), 8, + STATE(768), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38337,18 +38874,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33895] = 6, + [34450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(521), 8, + STATE(517), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38357,18 +38894,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33921] = 6, + [34476] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(738), 8, + STATE(753), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38377,18 +38914,38 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33947] = 6, + [34502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1911), 1, + sym_identifier, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1821), 1, + STATE(201), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [34528] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, sym_identifier, - STATE(523), 8, + ACTIONS(1929), 1, + anon_sym_PIPE, + STATE(200), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38397,18 +38954,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33973] = 6, + [34554] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(503), 8, + STATE(880), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38417,18 +38974,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33999] = 6, + [34580] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(800), 8, + STATE(751), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38437,18 +38994,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34025] = 6, + [34606] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(829), 8, + STATE(831), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38457,18 +39014,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34051] = 6, + [34632] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(750), 8, + STATE(764), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38477,18 +39034,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34077] = 6, + [34658] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(851), 8, + STATE(860), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38497,18 +39054,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34103] = 6, + [34684] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(761), 8, + STATE(756), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38517,18 +39074,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34129] = 6, + [34710] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1790), 1, sym_identifier, - STATE(862), 8, + STATE(870), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38537,18 +39094,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34155] = 6, + [34736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1790), 1, sym_identifier, - STATE(754), 8, + STATE(515), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38557,18 +39114,38 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34181] = 6, + [34762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(505), 1, anon_sym_LBRACK, - ACTIONS(1664), 1, + ACTIONS(1911), 1, + sym_identifier, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1821), 1, + STATE(204), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [34788] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, sym_identifier, - STATE(526), 8, + ACTIONS(1929), 1, + anon_sym_PIPE, + STATE(202), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38577,18 +39154,58 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34207] = 6, + [34814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(503), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1929), 1, + anon_sym_PIPE, + STATE(203), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [34840] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(1781), 1, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1790), 1, + sym_identifier, + STATE(887), 8, + sym__type_hint, + sym_type_instantiatedTs, + sym_tensor_type, + sym_tuple_type, + sym_parenthesized_type, + sym_fun_callable_type, + sym_nullable_type, + sym_union_type, + [34866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1589), 1, anon_sym_LBRACK, - STATE(699), 8, + ACTIONS(1790), 1, + sym_identifier, + ACTIONS(1931), 1, + anon_sym_PIPE, + STATE(528), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38597,10 +39214,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [34233] = 2, + [34892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 11, + ACTIONS(1933), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38612,10 +39229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34250] = 2, + [34909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 11, + ACTIONS(1935), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38627,10 +39244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34267] = 2, + [34926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 11, + ACTIONS(1937), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38642,10 +39259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34284] = 2, + [34943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 11, + ACTIONS(1939), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38657,10 +39274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34301] = 2, + [34960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 11, + ACTIONS(1941), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38672,10 +39289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34318] = 2, + [34977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 11, + ACTIONS(1943), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38687,10 +39304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34335] = 2, + [34994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 11, + ACTIONS(1945), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38702,10 +39319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34352] = 2, + [35011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 11, + ACTIONS(1947), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38717,10 +39334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34369] = 2, + [35028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 11, + ACTIONS(1949), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38732,10 +39349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34386] = 2, + [35045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 11, + ACTIONS(1951), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38747,10 +39364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34403] = 2, + [35062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1974), 11, + ACTIONS(1953), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38762,10 +39379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34420] = 2, + [35079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 11, + ACTIONS(1955), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38777,10 +39394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34437] = 2, + [35096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 11, + ACTIONS(1957), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38792,10 +39409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34454] = 2, + [35113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1898), 11, + ACTIONS(1959), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38807,10 +39424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34471] = 2, + [35130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 11, + ACTIONS(1961), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38822,10 +39439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34488] = 2, + [35147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 11, + ACTIONS(1963), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38837,10 +39454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34505] = 2, + [35164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 11, + ACTIONS(1965), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38852,10 +39469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34522] = 2, + [35181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 11, + ACTIONS(1967), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38867,10 +39484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34539] = 2, + [35198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 11, + ACTIONS(1969), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38882,10 +39499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34556] = 2, + [35215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 11, + ACTIONS(1971), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38897,10 +39514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34573] = 2, + [35232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 11, + ACTIONS(1973), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38912,10 +39529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34590] = 2, + [35249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 11, + ACTIONS(1975), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38927,10 +39544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34607] = 2, + [35266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 11, + ACTIONS(1977), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38942,10 +39559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34624] = 2, + [35283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1998), 11, + ACTIONS(1979), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38957,10 +39574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34641] = 2, + [35300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2000), 11, + ACTIONS(1981), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38972,10 +39589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34658] = 2, + [35317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 11, + ACTIONS(1983), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38987,10 +39604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34675] = 2, + [35334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2004), 11, + ACTIONS(1985), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39002,10 +39619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34692] = 2, + [35351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 11, + ACTIONS(1987), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39017,10 +39634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34709] = 2, + [35368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 11, + ACTIONS(1989), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39032,10 +39649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34726] = 2, + [35385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2010), 11, + ACTIONS(1991), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39047,10 +39664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34743] = 2, + [35402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 11, + ACTIONS(1993), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39062,10 +39679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34760] = 2, + [35419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 11, + ACTIONS(1995), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39077,10 +39694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34777] = 2, + [35436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 11, + ACTIONS(1997), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39092,10 +39709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34794] = 2, + [35453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2016), 11, + ACTIONS(1999), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39107,10 +39724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34811] = 2, + [35470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 11, + ACTIONS(2001), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39122,10 +39739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34828] = 2, + [35487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 11, + ACTIONS(2003), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39137,10 +39754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34845] = 2, + [35504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 11, + ACTIONS(2005), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39152,10 +39769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34862] = 2, + [35521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2024), 11, + ACTIONS(2007), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39167,10 +39784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34879] = 2, + [35538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 11, + ACTIONS(2009), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39182,10 +39799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34896] = 2, + [35555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 11, + ACTIONS(2011), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39197,10 +39814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34913] = 2, + [35572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 11, + ACTIONS(2013), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39212,10 +39829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34930] = 2, + [35589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2032), 11, + ACTIONS(2015), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39227,10 +39844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34947] = 2, + [35606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 11, + ACTIONS(2017), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39242,10 +39859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34964] = 2, + [35623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 11, + ACTIONS(2019), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39257,10 +39874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34981] = 2, + [35640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 11, + ACTIONS(1901), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39272,10 +39889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34998] = 2, + [35657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 11, + ACTIONS(2021), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39287,10 +39904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35015] = 2, + [35674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 11, + ACTIONS(2023), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39302,10 +39919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35032] = 2, + [35691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 11, + ACTIONS(2025), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39317,10 +39934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35049] = 2, + [35708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 11, + ACTIONS(2027), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39332,10 +39949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35066] = 2, + [35725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 11, + ACTIONS(2029), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39347,10 +39964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35083] = 2, + [35742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 11, + ACTIONS(2031), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39362,10 +39979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35100] = 2, + [35759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1914), 11, + ACTIONS(2033), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39377,10 +39994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35117] = 2, + [35776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 11, + ACTIONS(2035), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39392,10 +40009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35134] = 2, + [35793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 11, + ACTIONS(2037), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39407,10 +40024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35151] = 2, + [35810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 11, + ACTIONS(2039), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39422,10 +40039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35168] = 2, + [35827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 11, + ACTIONS(1889), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39437,10 +40054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35185] = 2, + [35844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 11, + ACTIONS(2041), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39452,10 +40069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35202] = 2, + [35861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 11, + ACTIONS(2043), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39467,10 +40084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35219] = 2, + [35878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 11, + ACTIONS(2045), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39482,10 +40099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35236] = 2, + [35895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 11, + ACTIONS(2047), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39497,10 +40114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35253] = 2, + [35912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 11, + ACTIONS(2049), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39512,10 +40129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35270] = 2, + [35929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 11, + ACTIONS(2051), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39527,10 +40144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35287] = 2, + [35946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 11, + ACTIONS(2053), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39542,10 +40159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35304] = 2, + [35963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 11, + ACTIONS(2055), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39557,10 +40174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35321] = 2, + [35980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 11, + ACTIONS(2057), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39572,10 +40189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35338] = 2, + [35997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 11, + ACTIONS(1883), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39587,10 +40204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35355] = 2, + [36014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 11, + ACTIONS(2059), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39602,10 +40219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35372] = 2, + [36031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 11, + ACTIONS(2061), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39617,10 +40234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35389] = 2, + [36048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 11, + ACTIONS(2063), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39632,10 +40249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35406] = 2, + [36065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1922), 11, + ACTIONS(2065), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39647,10 +40264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35423] = 2, + [36082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 11, + ACTIONS(2067), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39662,10 +40279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35440] = 2, + [36099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 11, + ACTIONS(1565), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39677,10 +40294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35457] = 2, + [36116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 11, + ACTIONS(2069), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39692,30 +40309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35474] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - sym_identifier, - ACTIONS(2096), 1, - anon_sym_LPAREN, - ACTIONS(2098), 1, - anon_sym_AT, - STATE(727), 1, - sym_annotation_arguments, - ACTIONS(2094), 6, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - [35498] = 4, + [36133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 1, + ACTIONS(2071), 1, anon_sym_LT, - STATE(704), 1, + STATE(724), 1, sym_instantiationT_list, ACTIONS(202), 8, anon_sym_SEMI, @@ -39726,384 +40325,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [35518] = 10, + [36153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(2073), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_LPAREN, + ACTIONS(2079), 1, + anon_sym_AT, + STATE(745), 1, + sym_annotation_arguments, + ACTIONS(2075), 6, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + [36177] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - STATE(636), 1, + STATE(669), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [35549] = 4, + [36208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(2087), 1, anon_sym_AT, - STATE(682), 2, + STATE(696), 2, sym_annotation, aux_sym_annotation_list_repeat1, - ACTIONS(2106), 6, + ACTIONS(2085), 6, anon_sym_global, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_fun, anon_sym_get, - [35568] = 10, + [36227] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - STATE(606), 1, + STATE(671), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [35599] = 10, + [36258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2090), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [36279] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2092), 1, + anon_sym_LPAREN, + ACTIONS(2094), 1, + anon_sym_LT, + STATE(461), 1, + sym_instantiationT_list, + STATE(738), 1, + sym_parameter_list, + STATE(917), 1, + sym_type_parameters, + ACTIONS(202), 4, anon_sym_PIPE, - ACTIONS(1787), 1, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1789), 1, anon_sym_QMARK, - ACTIONS(2102), 1, + [36304] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - STATE(647), 1, + STATE(679), 1, + sym__function_body, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(649), 1, + [36335] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2081), 1, + anon_sym_asm, + ACTIONS(2083), 1, + sym_builtin_specifier, + STATE(639), 1, sym__function_body, - [35630] = 10, + STATE(681), 1, + sym_asm_body, + STATE(682), 1, + sym_block_statement, + [36366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_AT, + STATE(696), 2, + sym_annotation, + aux_sym_annotation_list_repeat1, + ACTIONS(2096), 6, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + [36385] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(2081), 1, + anon_sym_asm, + ACTIONS(2083), 1, + sym_builtin_specifier, + STATE(654), 1, + sym__function_body, + STATE(681), 1, + sym_asm_body, + STATE(682), 1, + sym_block_statement, + [36416] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(2102), 1, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - STATE(643), 1, + STATE(665), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [35661] = 7, + [36447] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_LPAREN, + STATE(742), 1, + sym_annotation_arguments, + ACTIONS(2098), 7, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [36466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2092), 1, anon_sym_LPAREN, - ACTIONS(2113), 1, + ACTIONS(2094), 1, anon_sym_LT, - STATE(456), 1, + STATE(461), 1, sym_instantiationT_list, - STATE(722), 1, + STATE(734), 1, sym_parameter_list, - STATE(882), 1, + STATE(911), 1, sym_type_parameters, ACTIONS(202), 4, anon_sym_PIPE, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_QMARK, - [35686] = 10, + [36491] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - STATE(633), 1, + STATE(677), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [35717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 1, - anon_sym_LPAREN, - STATE(728), 1, - sym_annotation_arguments, - ACTIONS(2115), 7, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [35736] = 10, + [36522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - STATE(614), 1, + STATE(642), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [35767] = 10, + [36553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(331), 8, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1787), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DASH_GT, - ACTIONS(1789), 1, anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_asm, - ACTIONS(2104), 1, - sym_builtin_specifier, - STATE(647), 1, - sym_asm_body, - STATE(648), 1, - sym_block_statement, - STATE(651), 1, - sym__function_body, - [35798] = 7, + sym_identifier, + [36567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_LT, - STATE(456), 1, - sym_instantiationT_list, - STATE(735), 1, - sym_parameter_list, - STATE(917), 1, - sym_type_parameters, - ACTIONS(202), 4, + ACTIONS(361), 8, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_QMARK, - [35823] = 10, + sym_identifier, + [36581] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, + ACTIONS(2100), 1, + anon_sym_COMMA, ACTIONS(2102), 1, - anon_sym_asm, - ACTIONS(2104), 1, - sym_builtin_specifier, - STATE(640), 1, - sym__function_body, - STATE(647), 1, - sym_asm_body, - STATE(648), 1, - sym_block_statement, - [35854] = 5, + anon_sym_RBRACK, + STATE(115), 1, + sym_object_literal_body, + STATE(855), 1, + aux_sym_instantiationT_list_repeat1, + [36609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(2106), 1, + anon_sym_EQ, + ACTIONS(2108), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(2110), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(2112), 1, anon_sym_QMARK, - ACTIONS(2117), 6, + ACTIONS(2104), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [36631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(365), 8, anon_sym_SEMI, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - [35875] = 4, + anon_sym_DASH_GT, + anon_sym_QMARK, + sym_identifier, + [36645] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(25), 1, - anon_sym_AT, - STATE(682), 2, - sym_annotation, - aux_sym_annotation_list_repeat1, - ACTIONS(2119), 6, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - [35894] = 6, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2114), 1, + anon_sym_RPAREN, + STATE(115), 1, + sym_object_literal_body, + STATE(842), 1, + aux_sym_instantiationT_list_repeat1, + [36673] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 1, + sym_identifier, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2120), 1, + anon_sym_RPAREN, + ACTIONS(2122), 1, + anon_sym_LBRACK, + STATE(852), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [36695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2116), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2125), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2127), 1, + ACTIONS(2124), 1, anon_sym_RBRACK, - STATE(831), 4, + STATE(852), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [35916] = 9, + [36717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2129), 1, + ACTIONS(2116), 1, + sym_identifier, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2126), 1, anon_sym_RPAREN, - ACTIONS(2131), 1, - anon_sym_COMMA, - STATE(96), 1, - sym_object_literal_body, - STATE(880), 1, - aux_sym_instantiationT_list_repeat1, - [35944] = 6, + STATE(852), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [36739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_EQ, - ACTIONS(2137), 1, - anon_sym_PIPE, - ACTIONS(2139), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_QMARK, - ACTIONS(2133), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2116), 1, sym_identifier, - [35966] = 4, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2128), 1, + anon_sym_RBRACK, + STATE(852), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [36761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, + ACTIONS(2130), 1, anon_sym_COLON, - ACTIONS(2147), 1, + ACTIONS(2134), 1, anon_sym_redef, - ACTIONS(2145), 6, + ACTIONS(2132), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [35984] = 4, + [36779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(2112), 1, anon_sym_QMARK, - ACTIONS(2149), 1, + ACTIONS(2136), 1, anon_sym_PIPE, - ACTIONS(368), 6, + ACTIONS(369), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DASH_GT, sym_identifier, - [36002] = 5, + [36797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(2108), 1, anon_sym_PIPE, - ACTIONS(2139), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_QMARK, - ACTIONS(374), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [36022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(382), 1, + ACTIONS(2110), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2112), 1, anon_sym_QMARK, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(378), 5, + ACTIONS(375), 5, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - [36042] = 2, + [36817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(326), 8, + ACTIONS(319), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40112,10 +40817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36056] = 2, + [36831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(334), 8, + ACTIONS(323), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40124,10 +40829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36070] = 2, + [36845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 8, + ACTIONS(286), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40136,34 +40841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36084] = 2, + [36859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(294), 8, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(294), 1, anon_sym_DASH_GT, + ACTIONS(2112), 1, anon_sym_QMARK, - sym_identifier, - [36098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(298), 8, + ACTIONS(2138), 1, + anon_sym_PIPE, + ACTIONS(290), 5, anon_sym_SEMI, anon_sym_EQ, - anon_sym_PIPE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_QMARK, sym_identifier, - [36112] = 2, + [36879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(302), 8, + ACTIONS(327), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40172,22 +40868,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36126] = 2, + [36893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 8, - anon_sym_SEMI, + ACTIONS(1583), 1, + anon_sym_LT, + ACTIONS(2140), 1, anon_sym_EQ, - anon_sym_PIPE, + STATE(461), 1, + sym_instantiationT_list, + ACTIONS(2142), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_GT, + ACTIONS(202), 3, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_QMARK, - sym_identifier, - [36140] = 2, + [36915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 8, + ACTIONS(353), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40196,10 +40896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36154] = 2, + [36929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(314), 8, + ACTIONS(357), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40208,26 +40908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_LPAREN, - ACTIONS(2125), 1, - anon_sym_LBRACK, - ACTIONS(2153), 1, - anon_sym_RPAREN, - STATE(831), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [36190] = 2, + [36943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 8, + ACTIONS(335), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -40236,201 +40920,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK, sym_identifier, - [36204] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, - anon_sym_LT, - ACTIONS(2155), 1, - anon_sym_EQ, - STATE(456), 1, - sym_instantiationT_list, - ACTIONS(2157), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(202), 3, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_QMARK, - [36226] = 9, + [36957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2160), 1, - anon_sym_RBRACK, - STATE(96), 1, - sym_object_literal_body, - STATE(844), 1, - aux_sym_instantiationT_list_repeat1, - [36254] = 6, + ACTIONS(2145), 7, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [36970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2116), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2125), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2162), 1, - anon_sym_RPAREN, - STATE(831), 4, + STATE(852), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [36276] = 6, + [36989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_LPAREN, - ACTIONS(2125), 1, - anon_sym_LBRACK, - ACTIONS(2164), 1, - anon_sym_RBRACK, - STATE(831), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [36298] = 5, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(2081), 1, + anon_sym_asm, + ACTIONS(2083), 1, + sym_builtin_specifier, + ACTIONS(2147), 1, + anon_sym_COLON, + STATE(681), 1, + sym_asm_body, + STATE(682), 1, + sym_block_statement, + STATE(686), 1, + sym__function_body, + [37014] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_LPAREN, - ACTIONS(2125), 1, - anon_sym_LBRACK, - STATE(812), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [36317] = 5, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(2081), 1, + anon_sym_asm, + ACTIONS(2083), 1, + sym_builtin_specifier, + ACTIONS(2149), 1, + anon_sym_COLON, + STATE(640), 1, + sym__function_body, + STATE(681), 1, + sym_asm_body, + STATE(682), 1, + sym_block_statement, + [37039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_LPAREN, - ACTIONS(2125), 1, - anon_sym_LBRACK, - STATE(811), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [36336] = 5, + ACTIONS(2151), 7, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [37052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2166), 4, + ACTIONS(2153), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACK, - [36355] = 5, + [37071] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_LPAREN, - ACTIONS(2125), 1, - anon_sym_LBRACK, - STATE(863), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [36374] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - ACTIONS(2168), 1, + ACTIONS(2155), 1, anon_sym_COLON, - STATE(647), 1, + STATE(632), 1, + sym__function_body, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(658), 1, - sym__function_body, - [36399] = 8, + [37096] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - ACTIONS(2170), 1, + ACTIONS(2157), 1, anon_sym_COLON, - STATE(646), 1, + STATE(680), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [36424] = 8, + [37121] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - ACTIONS(2172), 1, + ACTIONS(2159), 1, anon_sym_COLON, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(664), 1, - sym__function_body, - [36449] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(2102), 1, - anon_sym_asm, - ACTIONS(2104), 1, - sym_builtin_specifier, - ACTIONS(2174), 1, - anon_sym_COLON, - STATE(644), 1, + STATE(692), 1, sym__function_body, - STATE(647), 1, - sym_asm_body, - STATE(648), 1, - sym_block_statement, - [36474] = 2, + [37146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 7, + ACTIONS(2161), 7, anon_sym_global, anon_sym_const, anon_sym_type, @@ -40438,49 +41066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36487] = 8, + [37159] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - ACTIONS(2178), 1, + ACTIONS(2163), 1, anon_sym_COLON, - STATE(647), 1, + STATE(655), 1, + sym__function_body, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - STATE(661), 1, - sym__function_body, - [36512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 7, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [36525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2182), 7, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [36538] = 2, + [37184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 7, + ACTIONS(2165), 7, anon_sym_global, anon_sym_const, anon_sym_type, @@ -40488,41 +41094,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36551] = 8, + [37197] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - ACTIONS(2186), 1, + ACTIONS(2167), 1, anon_sym_COLON, - STATE(616), 1, - sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [36576] = 5, + STATE(688), 1, + sym__function_body, + [37222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2116), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2125), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - STATE(831), 4, + STATE(803), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [36595] = 2, + [37241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 7, + ACTIONS(2169), 7, anon_sym_global, anon_sym_const, anon_sym_type, @@ -40530,1317 +41136,1398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36608] = 8, + [37254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 1, + sym_identifier, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2122), 1, + anon_sym_LBRACK, + STATE(868), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [37273] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2081), 1, anon_sym_asm, - ACTIONS(2104), 1, + ACTIONS(2083), 1, sym_builtin_specifier, - ACTIONS(2190), 1, + ACTIONS(2171), 1, anon_sym_COLON, - STATE(621), 1, + STATE(628), 1, sym__function_body, - STATE(647), 1, + STATE(681), 1, sym_asm_body, - STATE(648), 1, + STATE(682), 1, sym_block_statement, - [36633] = 5, + [37298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 7, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [37311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2116), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2125), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - STATE(916), 4, + STATE(869), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [36652] = 8, + [37330] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(2102), 1, - anon_sym_asm, - ACTIONS(2104), 1, - sym_builtin_specifier, - ACTIONS(2192), 1, - anon_sym_COLON, - STATE(620), 1, - sym__function_body, - STATE(647), 1, - sym_asm_body, - STATE(648), 1, - sym_block_statement, - [36677] = 6, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2175), 1, + anon_sym_RBRACK, + STATE(823), 1, + aux_sym_instantiationT_list_repeat1, + [37352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2194), 1, - anon_sym_EQ, - ACTIONS(2196), 2, - anon_sym_RPAREN, + ACTIONS(2100), 1, anon_sym_COMMA, - [36697] = 7, + ACTIONS(2177), 1, + anon_sym_GT, + STATE(867), 1, + aux_sym_instantiationT_list_repeat1, + [37374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2198), 1, + ACTIONS(2179), 1, anon_sym_EQ_GT, - STATE(96), 1, + STATE(115), 1, sym_object_literal_body, - [36719] = 7, + [37396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(2181), 1, + anon_sym_EQ, + ACTIONS(2183), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [37416] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2200), 1, - anon_sym_GT, - STATE(850), 1, + ACTIONS(2185), 1, + anon_sym_RPAREN, + STATE(872), 1, aux_sym_instantiationT_list_repeat1, - [36741] = 2, + [37438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2187), 1, anon_sym_RBRACK, - [36753] = 2, + STATE(873), 1, + aux_sym_instantiationT_list_repeat1, + [37460] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [36765] = 6, + ACTIONS(2189), 1, + anon_sym_GT, + STATE(875), 1, + aux_sym_instantiationT_list_repeat1, + [37482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2206), 1, - anon_sym_EQ, - ACTIONS(2208), 2, - anon_sym_RPAREN, + ACTIONS(2100), 1, anon_sym_COMMA, - [36785] = 2, + ACTIONS(2191), 1, + anon_sym_RPAREN, + STATE(837), 1, + aux_sym_instantiationT_list_repeat1, + [37504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2193), 1, anon_sym_RBRACK, - [36797] = 5, + STATE(838), 1, + aux_sym_instantiationT_list_repeat1, + [37526] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2114), 1, + anon_sym_RPAREN, + STATE(842), 1, + aux_sym_instantiationT_list_repeat1, + [37548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2212), 1, + ACTIONS(2195), 1, sym_identifier, - ACTIONS(2218), 1, + ACTIONS(2201), 1, anon_sym_RBRACE, - ACTIONS(2215), 2, + ACTIONS(2198), 2, anon_sym_SEMI, anon_sym_COMMA, - STATE(743), 2, + STATE(760), 2, sym_struct_field_declaration, aux_sym_struct_body_repeat1, - [36815] = 7, + [37566] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2220), 1, + ACTIONS(2203), 1, anon_sym_GT, - STATE(874), 1, + STATE(892), 1, aux_sym_instantiationT_list_repeat1, - [36837] = 5, + [37588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, - sym_identifier, - ACTIONS(2226), 1, - anon_sym_RBRACE, - ACTIONS(2224), 2, + ACTIONS(2205), 6, anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(743), 2, - sym_struct_field_declaration, - aux_sym_struct_body_repeat1, - [36855] = 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [37600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 6, + ACTIONS(2207), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [36867] = 7, + [37612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2230), 1, - anon_sym_RPAREN, - STATE(804), 1, + ACTIONS(2209), 1, + anon_sym_GT, + STATE(845), 1, aux_sym_instantiationT_list_repeat1, - [36889] = 7, + [37634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [37646] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2232), 1, + ACTIONS(2102), 1, anon_sym_RBRACK, - STATE(834), 1, + STATE(855), 1, aux_sym_instantiationT_list_repeat1, - [36911] = 7, + [37668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, + ACTIONS(2213), 1, anon_sym_global, - ACTIONS(2236), 1, + ACTIONS(2215), 1, anon_sym_const, - ACTIONS(2238), 1, + ACTIONS(2217), 1, anon_sym_type, - ACTIONS(2240), 1, + ACTIONS(2219), 1, anon_sym_struct, - ACTIONS(2242), 1, + ACTIONS(2221), 1, anon_sym_fun, - ACTIONS(2244), 1, + ACTIONS(2223), 1, anon_sym_get, - [36933] = 7, + [37690] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2246), 1, + ACTIONS(2225), 1, anon_sym_GT, - STATE(839), 1, + STATE(853), 1, aux_sym_instantiationT_list_repeat1, - [36955] = 7, + [37712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2160), 1, - anon_sym_RBRACK, - STATE(844), 1, - aux_sym_instantiationT_list_repeat1, - [36977] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2248), 1, + ACTIONS(2227), 1, + anon_sym_EQ, + ACTIONS(2229), 2, anon_sym_RPAREN, - STATE(856), 1, - aux_sym_instantiationT_list_repeat1, - [36999] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2250), 1, - anon_sym_RBRACK, - STATE(857), 1, - aux_sym_instantiationT_list_repeat1, - [37021] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, anon_sym_COMMA, - ACTIONS(2252), 1, - anon_sym_GT, - STATE(859), 1, - aux_sym_instantiationT_list_repeat1, - [37043] = 2, + [37732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 6, + ACTIONS(2231), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [37055] = 5, + [37744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, - sym_identifier, - ACTIONS(2258), 1, - anon_sym_RBRACE, - ACTIONS(2256), 2, + ACTIONS(2233), 6, anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(745), 2, - sym_struct_field_declaration, - aux_sym_struct_body_repeat1, - [37073] = 7, + anon_sym_RBRACE, + anon_sym_RBRACK, + [37756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2260), 1, + ACTIONS(2235), 1, anon_sym_RPAREN, - STATE(868), 1, + STATE(820), 1, aux_sym_instantiationT_list_repeat1, - [37095] = 7, + [37778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2237), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2262), 1, + anon_sym_RBRACE, anon_sym_RBRACK, - STATE(869), 1, - aux_sym_instantiationT_list_repeat1, - [37117] = 2, + [37790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 6, + ACTIONS(2239), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [37129] = 2, + [37802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 6, + ACTIONS(2241), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [37141] = 7, + [37814] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2243), 1, + anon_sym_RPAREN, + STATE(864), 1, + aux_sym_instantiationT_list_repeat1, + [37836] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2268), 1, - anon_sym_GT, - STATE(871), 1, + ACTIONS(2245), 1, + anon_sym_RBRACK, + STATE(865), 1, aux_sym_instantiationT_list_repeat1, - [37163] = 2, + [37858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 6, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, + anon_sym_RBRACE, + ACTIONS(2249), 2, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [37175] = 7, + STATE(779), 2, + sym_struct_field_declaration, + aux_sym_struct_body_repeat1, + [37876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2255), 1, + anon_sym_RBRACE, + ACTIONS(2253), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2272), 1, - anon_sym_RPAREN, - STATE(823), 1, - aux_sym_instantiationT_list_repeat1, - [37197] = 2, + STATE(760), 2, + sym_struct_field_declaration, + aux_sym_struct_body_repeat1, + [37894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 6, + ACTIONS(2257), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [37209] = 7, + [37906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(827), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2131), 1, + STATE(156), 1, + sym_object_literal_body, + [37925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2259), 1, anon_sym_COMMA, - ACTIONS(2276), 1, - anon_sym_RBRACK, - STATE(826), 1, + STATE(782), 1, aux_sym_instantiationT_list_repeat1, - [37231] = 7, + ACTIONS(2153), 3, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_RBRACK, + [37940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2129), 1, + ACTIONS(2262), 1, + sym_identifier, + ACTIONS(2264), 1, anon_sym_RPAREN, - ACTIONS(2131), 1, + ACTIONS(2266), 1, anon_sym_COMMA, - STATE(880), 1, - aux_sym_instantiationT_list_repeat1, - [37253] = 6, + ACTIONS(2268), 1, + anon_sym_mutate, + STATE(850), 1, + sym_parameter_declaration, + [37959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1084), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, + STATE(658), 1, + sym_block_statement, + [37978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, anon_sym_QMARK, - STATE(181), 1, - sym_object_literal_body, - [37272] = 5, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2270), 2, + anon_sym_COMMA, + anon_sym_GT, + [37995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2247), 1, sym_identifier, - ACTIONS(2280), 1, + ACTIONS(2274), 1, anon_sym_RBRACE, - STATE(756), 1, + STATE(778), 1, sym_struct_field_declaration, - ACTIONS(2278), 2, + ACTIONS(2272), 2, anon_sym_SEMI, anon_sym_COMMA, - [37289] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_RPAREN, - ACTIONS(2286), 1, - anon_sym_COMMA, - ACTIONS(2288), 1, - anon_sym_mutate, - STATE(817), 1, - sym_parameter_declaration, - [37308] = 6, + [38012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(641), 1, + STATE(643), 1, sym_block_statement, - [37327] = 6, + [38031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 1, + ACTIONS(1049), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(65), 1, + STATE(63), 1, sym_object_literal_body, - [37346] = 6, + [38050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(656), 1, + STATE(673), 1, sym_block_statement, - [37365] = 6, + [38069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(668), 1, - sym_block_statement, - [37384] = 5, + STATE(115), 1, + sym_object_literal_body, + [38088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(1768), 1, anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2290), 2, - anon_sym_COMMA, - anon_sym_GT, - [37401] = 4, + STATE(622), 1, + sym_block_statement, + [38107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_COMMA, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - ACTIONS(2166), 3, + ACTIONS(2276), 1, + anon_sym_COLON, + ACTIONS(2278), 1, + anon_sym_EQ, + ACTIONS(2280), 2, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_RBRACK, - [37416] = 6, + anon_sym_COMMA, + [38121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(663), 1, - sym_block_statement, - [37435] = 6, + ACTIONS(2282), 1, + anon_sym_COLON, + ACTIONS(2284), 1, + anon_sym_EQ, + ACTIONS(2286), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [38135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(96), 1, - sym_object_literal_body, - [37454] = 5, + ACTIONS(1782), 1, + anon_sym_COMMA, + ACTIONS(1784), 1, + anon_sym_GT, + ACTIONS(2288), 1, + sym_identifier, + STATE(896), 1, + sym_type_parameter, + [38151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1774), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2092), 1, anon_sym_LPAREN, - STATE(733), 1, + STATE(737), 1, sym_parameter_list, - STATE(911), 1, + STATE(928), 1, sym_type_parameters, - [37470] = 5, + [38167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2295), 1, - anon_sym_EQ, - [37486] = 2, + ACTIONS(2201), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [38177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 4, + ACTIONS(2290), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_asm, sym_builtin_specifier, - [37496] = 5, + [38187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2262), 1, + sym_identifier, + ACTIONS(2268), 1, + anon_sym_mutate, + ACTIONS(2292), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_parameter_declaration, + [38203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, + ACTIONS(75), 1, anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_GT, - ACTIONS(2299), 1, + ACTIONS(2294), 1, sym_identifier, - STATE(816), 1, - sym_type_parameter, - [37512] = 5, + ACTIONS(2296), 1, + anon_sym_RBRACE, + STATE(841), 1, + sym_instance_argument, + [38219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_COMMA, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(1023), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [38233] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, ACTIONS(2301), 1, - sym_identifier, + anon_sym_EQ, + [38249] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(2303), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(2305), 1, + anon_sym_RPAREN, + ACTIONS(2307), 1, anon_sym_DASH_GT, - STATE(784), 1, + STATE(816), 1, aux_sym_asm_body_repeat1, - [37528] = 5, + [38265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2309), 1, - anon_sym_COMMA, ACTIONS(2311), 1, + anon_sym_EQ, + ACTIONS(2309), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(835), 1, - sym_instance_argument, - [37544] = 5, + [38277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(2317), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, anon_sym_DASH_GT, - STATE(792), 1, - aux_sym_asm_body_repeat1, - [37560] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LT, - ACTIONS(2111), 1, - anon_sym_LPAREN, - STATE(726), 1, - sym_parameter_list, - STATE(886), 1, - sym_type_parameters, - [37576] = 4, + ACTIONS(2313), 1, + anon_sym_DOT, + [38293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - STATE(786), 1, + STATE(805), 1, aux_sym_tuple_vars_declaration_repeat1, - ACTIONS(2319), 2, + ACTIONS(2315), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [37590] = 2, + [38307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 4, - anon_sym_COLON, + ACTIONS(1519), 1, anon_sym_LBRACE, - anon_sym_asm, - sym_builtin_specifier, - [37600] = 2, + ACTIONS(2320), 1, + anon_sym_if, + STATE(452), 2, + sym_block_statement, + sym_if_statement, + [38321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 4, + ACTIONS(2322), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_asm, sym_builtin_specifier, - [37610] = 5, + [38331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1766), 1, + anon_sym_PIPE, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2324), 1, + anon_sym_EQ, + [38347] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 1, sym_identifier, - ACTIONS(2288), 1, - anon_sym_mutate, + ACTIONS(2326), 1, + anon_sym_COMMA, ACTIONS(2328), 1, - anon_sym_RPAREN, - STATE(907), 1, - sym_parameter_declaration, - [37626] = 4, + anon_sym_RBRACE, + STATE(883), 1, + sym_instance_argument, + [38363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, + ACTIONS(2330), 4, anon_sym_COLON, - ACTIONS(2332), 1, - anon_sym_EQ, - ACTIONS(2334), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [37640] = 5, + anon_sym_LBRACE, + anon_sym_asm, + sym_builtin_specifier, + [38373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(2332), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(2336), 1, + anon_sym_asm, + sym_builtin_specifier, + [38383] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 1, + anon_sym_LBRACE, + ACTIONS(2334), 1, anon_sym_LPAREN, - STATE(435), 1, + STATE(448), 1, + sym_block_statement, + STATE(449), 1, sym_catch_clause, - STATE(440), 1, + [38399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 1, + anon_sym_LBRACE, + ACTIONS(2320), 1, + anon_sym_if, + STATE(443), 2, sym_block_statement, - [37656] = 4, + sym_if_statement, + [38413] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2262), 1, + sym_identifier, + ACTIONS(2268), 1, + anon_sym_mutate, + ACTIONS(2336), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_parameter_declaration, + [38429] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2338), 1, sym_identifier, - STATE(792), 1, + STATE(815), 1, aux_sym_asm_body_repeat1, ACTIONS(2341), 2, anon_sym_RPAREN, anon_sym_DASH_GT, - [37670] = 5, + [38443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_COMMA, - ACTIONS(2307), 1, - sym_identifier, ACTIONS(2343), 1, - anon_sym_RBRACE, - STATE(860), 1, - sym_instance_argument, - [37686] = 4, + sym_identifier, + ACTIONS(2345), 1, + anon_sym_RPAREN, + ACTIONS(2347), 1, + anon_sym_DASH_GT, + STATE(815), 1, + aux_sym_asm_body_repeat1, + [38459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - anon_sym_if, - STATE(441), 2, - sym_block_statement, - sym_if_statement, - [37700] = 5, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(2092), 1, + anon_sym_LPAREN, + STATE(739), 1, + sym_parameter_list, + STATE(903), 1, + sym_type_parameters, + [38475] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym_COMMA, - ACTIONS(2307), 1, + ACTIONS(2294), 1, sym_identifier, - ACTIONS(2347), 1, + ACTIONS(2349), 1, anon_sym_RBRACE, - STATE(836), 1, + STATE(840), 1, sym_instance_argument, - [37716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_asm, - sym_builtin_specifier, - [37726] = 4, + [38491] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2351), 1, anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - ACTIONS(954), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [37740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2354), 1, - anon_sym_DOT, - [37756] = 4, + ACTIONS(2353), 1, + anon_sym_RBRACE, + STATE(833), 1, + aux_sym_object_literal_body_repeat1, + [38504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, - anon_sym_COLON, - ACTIONS(2358), 1, - anon_sym_EQ, - ACTIONS(2360), 2, - anon_sym_RPAREN, + ACTIONS(2100), 1, anon_sym_COMMA, - [37770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2362), 1, - anon_sym_EQ, - [37786] = 2, + ACTIONS(2355), 1, + anon_sym_RPAREN, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [38517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [37796] = 5, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(2357), 1, + anon_sym_COLON, + STATE(645), 1, + sym_block_statement, + [38530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2247), 1, sym_identifier, - ACTIONS(2288), 1, - anon_sym_mutate, - ACTIONS(2364), 1, - anon_sym_RPAREN, - STATE(907), 1, - sym_parameter_declaration, - [37812] = 4, + ACTIONS(2359), 1, + anon_sym_RBRACE, + STATE(796), 1, + sym_struct_field_declaration, + [38543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - anon_sym_if, - STATE(438), 2, - sym_block_statement, - sym_if_statement, - [37826] = 4, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2361), 1, + anon_sym_RBRACK, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [38556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2366), 1, + ACTIONS(2363), 1, anon_sym_RPAREN, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [37839] = 4, + ACTIONS(2365), 1, + sym_number_literal, + STATE(824), 1, + aux_sym_asm_body_repeat2, + [38569] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2368), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(2370), 1, - anon_sym_RBRACE, - STATE(867), 1, - aux_sym_object_literal_body_repeat1, - [37852] = 4, + sym_number_literal, + STATE(824), 1, + aux_sym_asm_body_repeat2, + [38582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1008), 1, - anon_sym_RBRACK, + ACTIONS(2294), 1, + sym_identifier, ACTIONS(2372), 1, - anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - [37865] = 4, + anon_sym_RBRACE, + STATE(912), 1, + sym_instance_argument, + [38595] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2288), 1, + sym_identifier, ACTIONS(2374), 1, - anon_sym_RPAREN, + anon_sym_GT, + STATE(906), 1, + sym_type_parameter, + [38608] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2376), 1, + anon_sym_RPAREN, + ACTIONS(2378), 1, anon_sym_COMMA, - STATE(813), 1, - aux_sym_argument_list_repeat1, - [37878] = 3, + STATE(828), 1, + aux_sym_parameter_list_repeat1, + [38621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, - anon_sym_EQ, - ACTIONS(2378), 2, - anon_sym_COMMA, + ACTIONS(2374), 1, anon_sym_GT, - [37889] = 4, + ACTIONS(2381), 1, + anon_sym_COMMA, + STATE(848), 1, + aux_sym_type_parameters_repeat1, + [38634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2288), 1, - anon_sym_mutate, - STATE(907), 1, - sym_parameter_declaration, - [37902] = 4, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_COLON, + STATE(683), 1, + sym_block_statement, + [38647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2380), 1, - anon_sym_RBRACE, - STATE(894), 1, - sym_instance_argument, - [37915] = 4, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2385), 1, + anon_sym_PIPE, + [38660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, + ACTIONS(2387), 1, anon_sym_RPAREN, - ACTIONS(2384), 1, + ACTIONS(2389), 1, anon_sym_COMMA, - STATE(866), 1, - aux_sym_tuple_vars_declaration_repeat1, - [37928] = 4, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [38673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2391), 1, anon_sym_COMMA, - ACTIONS(2388), 1, - anon_sym_RBRACK, - STATE(873), 1, - aux_sym_tuple_vars_declaration_repeat1, - [37941] = 4, + ACTIONS(2394), 1, + anon_sym_RBRACE, + STATE(833), 1, + aux_sym_object_literal_body_repeat1, + [38686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(839), 1, - anon_sym_RPAREN, - ACTIONS(2390), 1, - anon_sym_COMMA, - STATE(837), 1, - aux_sym_argument_list_repeat1, - [37954] = 4, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(2396), 1, + anon_sym_EQ, + STATE(980), 1, + sym_type_parameters, + [38699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(2294), 1, sym_identifier, - ACTIONS(2392), 1, + ACTIONS(2398), 1, anon_sym_RBRACE, - STATE(894), 1, + STATE(912), 1, sym_instance_argument, - [37967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 1, - sym_identifier, - ACTIONS(2394), 1, - anon_sym_GT, - STATE(919), 1, - sym_type_parameter, - [37980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 1, - anon_sym_COMMA, - ACTIONS(2398), 1, - anon_sym_GT, - STATE(828), 1, - aux_sym_type_parameters_repeat1, - [37993] = 4, + [38712] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2400), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(2402), 1, - anon_sym_COMMA, - STATE(870), 1, - aux_sym_parameter_list_repeat1, - [38006] = 4, + sym_string_literal, + STATE(558), 1, + aux_sym_asm_body_repeat3, + [38725] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2100), 1, + anon_sym_COMMA, ACTIONS(2404), 1, anon_sym_RPAREN, - ACTIONS(2406), 1, - anon_sym_COMMA, - STATE(818), 1, - aux_sym_parameter_list_repeat1, - [38019] = 4, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [38738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(2409), 1, - sym_number_literal, - STATE(821), 1, - aux_sym_asm_body_repeat2, - [38032] = 4, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2406), 1, + anon_sym_RBRACK, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [38751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 1, + ACTIONS(2398), 1, anon_sym_RBRACE, - ACTIONS(2411), 1, + ACTIONS(2408), 1, anon_sym_COMMA, - STATE(867), 1, + STATE(833), 1, aux_sym_object_literal_body_repeat1, - [38045] = 4, + [38764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 1, - anon_sym_RPAREN, - ACTIONS(2415), 1, - sym_number_literal, - STATE(853), 1, - aux_sym_asm_body_repeat2, - [38058] = 4, + ACTIONS(2410), 1, + anon_sym_COMMA, + ACTIONS(2412), 1, + anon_sym_RBRACE, + STATE(871), 1, + aux_sym_object_literal_body_repeat1, + [38777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 1, - anon_sym_RPAREN, - ACTIONS(2417), 1, - sym_number_literal, - STATE(855), 1, - aux_sym_asm_body_repeat2, - [38071] = 4, + ACTIONS(2414), 1, + anon_sym_COMMA, + ACTIONS(2416), 1, + anon_sym_RBRACE, + STATE(819), 1, + aux_sym_object_literal_body_repeat1, + [38790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2418), 1, anon_sym_RPAREN, - STATE(775), 1, + STATE(782), 1, aux_sym_instantiationT_list_repeat1, - [38084] = 4, + [38803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(2421), 1, - anon_sym_COLON, - STATE(666), 1, - sym_block_statement, - [38097] = 4, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2420), 1, + anon_sym_GT, + STATE(906), 1, + sym_type_parameter, + [38816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1032), 1, - anon_sym_RBRACK, - ACTIONS(2423), 1, - anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - [38110] = 4, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2422), 1, + anon_sym_PIPE, + [38829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_RBRACK, - STATE(775), 1, + ACTIONS(2424), 1, + anon_sym_GT, + STATE(782), 1, aux_sym_instantiationT_list_repeat1, - [38123] = 4, + [38842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2429), 1, - sym_string_literal, - STATE(532), 1, - aux_sym_asm_body_repeat3, - [38136] = 4, + ACTIONS(2426), 1, + anon_sym_RPAREN, + ACTIONS(2428), 1, + anon_sym_COMMA, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [38855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, - anon_sym_GT, - ACTIONS(2431), 1, - anon_sym_COMMA, - STATE(878), 1, - aux_sym_type_parameters_repeat1, - [38149] = 4, + ACTIONS(2294), 1, + sym_identifier, + ACTIONS(2353), 1, + anon_sym_RBRACE, + STATE(912), 1, + sym_instance_argument, + [38868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, + ACTIONS(2430), 1, + anon_sym_COMMA, ACTIONS(2433), 1, - anon_sym_PIPE, - [38162] = 4, + anon_sym_GT, + STATE(848), 1, + aux_sym_type_parameters_repeat1, + [38881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, + ACTIONS(1027), 1, + anon_sym_RBRACK, ACTIONS(2435), 1, - anon_sym_PIPE, - [38175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2319), 3, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [38184] = 4, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [38894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, - sym_identifier, ACTIONS(2437), 1, - anon_sym_RBRACE, - STATE(801), 1, - sym_struct_field_declaration, - [38197] = 4, + anon_sym_RPAREN, + ACTIONS(2439), 1, + anon_sym_COMMA, + STATE(890), 1, + aux_sym_parameter_list_repeat1, + [38907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(849), 1, + ACTIONS(2441), 1, anon_sym_RPAREN, - ACTIONS(2439), 1, + ACTIONS(2443), 1, anon_sym_COMMA, - STATE(837), 1, + STATE(857), 1, aux_sym_argument_list_repeat1, - [38210] = 4, + [38920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2315), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2441), 1, anon_sym_RBRACK, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38223] = 4, + [38929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2445), 1, - anon_sym_RBRACE, - STATE(805), 1, - aux_sym_object_literal_body_repeat1, - [38236] = 4, + ACTIONS(2445), 1, + anon_sym_GT, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [38942] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2294), 1, + sym_identifier, ACTIONS(2447), 1, + anon_sym_RBRACE, + STATE(912), 1, + sym_instance_argument, + [38955] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, anon_sym_COMMA, ACTIONS(2449), 1, - anon_sym_RBRACE, - STATE(842), 1, - aux_sym_object_literal_body_repeat1, - [38249] = 4, + anon_sym_RBRACK, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [38968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(821), 1, anon_sym_RPAREN, - ACTIONS(2453), 1, + ACTIONS(2451), 1, anon_sym_COMMA, - STATE(837), 1, + STATE(894), 1, aux_sym_argument_list_repeat1, - [38262] = 4, + [38981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 1, + ACTIONS(849), 1, anon_sym_RPAREN, - ACTIONS(2458), 1, + ACTIONS(2453), 1, anon_sym_COMMA, - STATE(833), 1, + STATE(894), 1, aux_sym_argument_list_repeat1, - [38275] = 4, + [38994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(977), 1, + anon_sym_RBRACK, + ACTIONS(2455), 1, anon_sym_COMMA, - ACTIONS(2460), 1, - anon_sym_GT, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38288] = 4, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [39007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2464), 1, + ACTIONS(2457), 1, anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - [38301] = 4, + ACTIONS(2459), 1, + anon_sym_RBRACK, + STATE(805), 1, + aux_sym_tuple_vars_declaration_repeat1, + [39020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2461), 1, + anon_sym_PIPE, + [39033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2255), 1, anon_sym_RBRACE, - STATE(894), 1, - sym_instance_argument, - [38314] = 4, + STATE(796), 1, + sym_struct_field_declaration, + [39046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 1, - anon_sym_RBRACE, - ACTIONS(2468), 1, + ACTIONS(2463), 1, + anon_sym_RPAREN, + ACTIONS(2465), 1, anon_sym_COMMA, - STATE(867), 1, - aux_sym_object_literal_body_repeat1, - [38327] = 4, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [39059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2470), 1, - anon_sym_PIPE, - [38340] = 4, + ACTIONS(2262), 1, + sym_identifier, + ACTIONS(2268), 1, + anon_sym_mutate, + STATE(901), 1, + sym_parameter_declaration, + [39072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2472), 1, - anon_sym_RBRACK, - STATE(775), 1, + ACTIONS(2467), 1, + anon_sym_RPAREN, + STATE(782), 1, aux_sym_instantiationT_list_repeat1, - [38353] = 4, + [39085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_RPAREN, - ACTIONS(2476), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - STATE(848), 1, - aux_sym_argument_list_repeat1, - [38366] = 4, + ACTIONS(2469), 1, + anon_sym_RBRACK, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [39098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(2294), 1, sym_identifier, - ACTIONS(2478), 1, + ACTIONS(2471), 1, anon_sym_RBRACE, - STATE(894), 1, + STATE(912), 1, sym_instance_argument, - [38379] = 4, + [39111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LT, - ACTIONS(2480), 1, - anon_sym_EQ, - STATE(970), 1, - sym_type_parameters, - [38392] = 4, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2473), 1, + anon_sym_GT, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [39124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 1, + ACTIONS(2475), 1, anon_sym_RPAREN, - ACTIONS(2482), 1, + ACTIONS(2477), 1, anon_sym_COMMA, - STATE(837), 1, - aux_sym_argument_list_repeat1, - [38405] = 4, + STATE(886), 1, + aux_sym_tuple_vars_declaration_repeat1, + [39137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 1, - anon_sym_RPAREN, - ACTIONS(2486), 1, + ACTIONS(2479), 1, + anon_sym_COMMA, + ACTIONS(2481), 1, + anon_sym_RBRACK, + STATE(859), 1, + aux_sym_tuple_vars_declaration_repeat1, + [39150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2483), 1, + anon_sym_PIPE, + [39163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_RBRACE, + ACTIONS(2485), 1, anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - [38418] = 4, + STATE(833), 1, + aux_sym_object_literal_body_repeat1, + [39176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2488), 1, - anon_sym_GT, - STATE(775), 1, + ACTIONS(2487), 1, + anon_sym_RPAREN, + STATE(782), 1, aux_sym_instantiationT_list_repeat1, - [38431] = 4, + [39189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(2490), 1, - anon_sym_PIPE, - [38444] = 4, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2489), 1, + anon_sym_RBRACK, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [39202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2492), 1, + ACTIONS(2491), 1, anon_sym_COLON, STATE(623), 1, sym_block_statement, - [38457] = 4, + [39215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_RPAREN, - ACTIONS(2496), 1, - sym_number_literal, - STATE(853), 1, - aux_sym_asm_body_repeat2, - [38470] = 3, + ACTIONS(2100), 1, + anon_sym_COMMA, + ACTIONS(2493), 1, + anon_sym_GT, + STATE(782), 1, + aux_sym_instantiationT_list_repeat1, + [39228] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(184), 1, @@ -41848,1739 +42535,1687 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(194), 2, anon_sym_COMMA, anon_sym_RBRACE, - [38481] = 4, + [39239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - sym_number_literal, - ACTIONS(2499), 1, - anon_sym_RPAREN, - STATE(853), 1, - aux_sym_asm_body_repeat2, - [38494] = 4, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(2495), 1, + anon_sym_COMMA, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [39252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2497), 1, + anon_sym_RPAREN, + ACTIONS(2499), 1, anon_sym_COMMA, - ACTIONS(2501), 1, + STATE(889), 1, + aux_sym_argument_list_repeat1, + [39265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, anon_sym_RPAREN, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38507] = 4, + ACTIONS(2501), 1, + sym_number_literal, + STATE(881), 1, + aux_sym_asm_body_repeat2, + [39278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_COMMA, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1768), 1, + anon_sym_DASH_GT, ACTIONS(2503), 1, - anon_sym_RBRACK, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38520] = 4, + anon_sym_PIPE, + [39291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, + ACTIONS(2370), 1, + sym_number_literal, ACTIONS(2505), 1, - anon_sym_COLON, - STATE(669), 1, - sym_block_statement, - [38533] = 4, + anon_sym_RPAREN, + STATE(824), 1, + aux_sym_asm_body_repeat2, + [39304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_COMMA, + ACTIONS(2505), 1, + anon_sym_RPAREN, ACTIONS(2507), 1, - anon_sym_GT, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38546] = 4, + sym_number_literal, + STATE(825), 1, + aux_sym_asm_body_repeat2, + [39317] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2509), 1, anon_sym_COMMA, ACTIONS(2511), 1, anon_sym_RBRACE, - STATE(820), 1, + STATE(839), 1, aux_sym_object_literal_body_repeat1, - [38559] = 4, + [39330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2294), 1, sym_identifier, - ACTIONS(2226), 1, - anon_sym_RBRACE, - STATE(801), 1, - sym_struct_field_declaration, - [38572] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, - anon_sym_QMARK, ACTIONS(2513), 1, - anon_sym_PIPE, - [38585] = 3, + anon_sym_RBRACE, + STATE(912), 1, + sym_instance_argument, + [39343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 1, + ACTIONS(2140), 1, anon_sym_EQ, ACTIONS(2515), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [38596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, - anon_sym_RPAREN, - ACTIONS(2521), 1, anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - [38609] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2523), 1, - anon_sym_RBRACE, - STATE(894), 1, - sym_instance_argument, - [38622] = 4, + anon_sym_GT, + [39354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, + ACTIONS(2517), 1, anon_sym_RPAREN, - ACTIONS(2527), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - STATE(786), 1, + STATE(805), 1, aux_sym_tuple_vars_declaration_repeat1, - [38635] = 4, + [39367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_RBRACE, - STATE(867), 1, - aux_sym_object_literal_body_repeat1, - [38648] = 4, + ACTIONS(1764), 1, + anon_sym_QMARK, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2521), 1, + anon_sym_PIPE, + [39380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2534), 1, + ACTIONS(965), 1, anon_sym_RPAREN, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 1, + ACTIONS(2523), 1, anon_sym_COMMA, - ACTIONS(2536), 1, - anon_sym_RBRACK, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38674] = 4, + STATE(800), 1, + aux_sym_annotation_arguments_repeat1, + [39393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(837), 1, anon_sym_RPAREN, - ACTIONS(2538), 1, + ACTIONS(2525), 1, anon_sym_COMMA, - STATE(818), 1, - aux_sym_parameter_list_repeat1, - [38687] = 4, + STATE(894), 1, + aux_sym_argument_list_repeat1, + [39406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2336), 1, + anon_sym_RPAREN, + ACTIONS(2527), 1, anon_sym_COMMA, - ACTIONS(2540), 1, - anon_sym_GT, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2370), 1, - anon_sym_RBRACE, - STATE(894), 1, - sym_instance_argument, - [38713] = 4, + STATE(828), 1, + aux_sym_parameter_list_repeat1, + [39419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2544), 1, - anon_sym_RBRACK, - STATE(786), 1, - aux_sym_tuple_vars_declaration_repeat1, - [38726] = 4, + ACTIONS(1774), 1, + anon_sym_LT, + ACTIONS(2529), 1, + anon_sym_EQ, + STATE(983), 1, + sym_type_parameters, + [39432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2546), 1, + ACTIONS(2531), 1, anon_sym_GT, - STATE(775), 1, + STATE(782), 1, aux_sym_instantiationT_list_repeat1, - [38739] = 4, + [39445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1756), 1, anon_sym_LBRACE, - ACTIONS(2548), 1, + ACTIONS(2533), 1, anon_sym_COLON, - STATE(625), 1, + STATE(633), 1, sym_block_statement, - [38752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LT, - ACTIONS(2550), 1, - anon_sym_EQ, - STATE(954), 1, - sym_type_parameters, - [38765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 1, - sym_identifier, - ACTIONS(2552), 1, - anon_sym_GT, - STATE(919), 1, - sym_type_parameter, - [38778] = 4, + [39458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2535), 1, + anon_sym_RPAREN, + ACTIONS(2537), 1, anon_sym_COMMA, - ACTIONS(2557), 1, - anon_sym_GT, - STATE(878), 1, - aux_sym_type_parameters_repeat1, - [38791] = 4, + STATE(894), 1, + aux_sym_argument_list_repeat1, + [39471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_DASH_GT, - ACTIONS(1789), 1, + ACTIONS(1764), 1, anon_sym_QMARK, - ACTIONS(2559), 1, + ACTIONS(1768), 1, + anon_sym_DASH_GT, + ACTIONS(2540), 1, anon_sym_PIPE, - [38804] = 4, + [39484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - ACTIONS(2561), 1, - anon_sym_RPAREN, - STATE(775), 1, - aux_sym_instantiationT_list_repeat1, - [38817] = 4, + ACTIONS(2544), 1, + anon_sym_GT, + STATE(829), 1, + aux_sym_type_parameters_repeat1, + [39497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 1, - anon_sym_RBRACK, - ACTIONS(2563), 1, + ACTIONS(2546), 1, + anon_sym_RPAREN, + ACTIONS(2548), 1, anon_sym_COMMA, - STATE(797), 1, - aux_sym_tensor_expression_repeat1, - [38830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2111), 1, - anon_sym_LPAREN, - STATE(724), 1, - sym_parameter_list, - [38840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_RBRACE, - ACTIONS(2565), 1, - anon_sym_SEMI, - [38850] = 3, + STATE(856), 1, + aux_sym_argument_list_repeat1, + [39510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2247), 1, sym_identifier, - STATE(801), 1, + STATE(796), 1, sym_struct_field_declaration, - [38860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2451), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [38868] = 3, + [39520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_LPAREN, - STATE(723), 1, - sym_parameter_list, - [38878] = 3, + ACTIONS(2550), 1, + sym_string_literal, + STATE(551), 1, + aux_sym_asm_body_repeat3, + [39530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1519), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(446), 1, sym_block_statement, - [38888] = 2, + [39540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2376), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [39548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(2552), 1, sym_identifier, - sym_numeric_index, - [38896] = 3, + ACTIONS(2554), 1, + anon_sym_fun, + [39558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_SEMI, - ACTIONS(2569), 1, - anon_sym_RBRACE, - [38906] = 3, + ACTIONS(2092), 1, + anon_sym_LPAREN, + STATE(743), 1, + sym_parameter_list, + [39568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, - sym_identifier, - ACTIONS(2573), 1, - anon_sym_fun, - [38916] = 3, + ACTIONS(2092), 1, + anon_sym_LPAREN, + STATE(893), 1, + sym_parameter_list, + [39578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2556), 1, anon_sym_SEMI, - ACTIONS(2575), 1, + ACTIONS(2558), 1, anon_sym_RBRACE, - [38926] = 3, + [39588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 1, - anon_sym_COLON, - ACTIONS(2579), 1, - anon_sym_EQ, - [38936] = 3, + ACTIONS(2433), 2, + anon_sym_COMMA, + anon_sym_GT, + [39596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, - sym_identifier, - ACTIONS(2583), 1, - anon_sym_fun, - [38946] = 2, + ACTIONS(159), 1, + anon_sym_RBRACE, + ACTIONS(2556), 1, + anon_sym_SEMI, + [39606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 2, + ACTIONS(2560), 1, + anon_sym_RPAREN, + ACTIONS(2562), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [38954] = 3, + [39616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2564), 1, sym_string_literal, - STATE(534), 1, + STATE(548), 1, aux_sym_asm_body_repeat3, - [38964] = 3, + [39626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2587), 1, - anon_sym_RPAREN, - ACTIONS(2589), 1, - anon_sym_COMMA, - [38974] = 3, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LPAREN, + [39636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, - sym_identifier, - ACTIONS(2593), 1, + ACTIONS(2092), 1, anon_sym_LPAREN, - [38984] = 3, + STATE(747), 1, + sym_parameter_list, + [39646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_block_statement, - [38994] = 3, + ACTIONS(2394), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [39654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_LPAREN, - STATE(852), 1, - sym_parameter_list, - [39004] = 3, + ACTIONS(2570), 2, + sym_identifier, + sym_numeric_index, + [39662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_COLON, - ACTIONS(2597), 1, - anon_sym_EQ, - [39014] = 3, + ACTIONS(2572), 1, + sym_identifier, + ACTIONS(2574), 1, + anon_sym_LPAREN, + [39672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_RBRACE, - ACTIONS(2565), 1, + ACTIONS(2556), 1, anon_sym_SEMI, - [39024] = 3, + ACTIONS(2576), 1, + anon_sym_RBRACE, + [39682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2578), 1, sym_string_literal, - STATE(535), 1, + STATE(538), 1, aux_sym_asm_body_repeat3, - [39034] = 3, + [39692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_block_statement, - [39044] = 3, + ACTIONS(2092), 1, + anon_sym_LPAREN, + STATE(733), 1, + sym_parameter_list, + [39702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2092), 1, anon_sym_LPAREN, - STATE(858), 1, + STATE(874), 1, sym_parameter_list, - [39054] = 3, + [39712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - sym_string_literal, - STATE(542), 1, - aux_sym_asm_body_repeat3, - [39064] = 3, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(2582), 1, + anon_sym_EQ, + [39722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2584), 2, sym_identifier, - STATE(919), 1, - sym_type_parameter, - [39074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2404), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [39082] = 2, + sym_numeric_index, + [39730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2603), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [39090] = 2, + ACTIONS(1519), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_block_statement, + [39740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 2, + ACTIONS(2586), 2, sym_identifier, sym_numeric_index, - [39098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2111), 1, - anon_sym_LPAREN, - STATE(875), 1, - sym_parameter_list, - [39108] = 3, + [39748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_LPAREN, - STATE(721), 1, - sym_parameter_list, - [39118] = 3, + ACTIONS(2588), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [39756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(2288), 1, sym_identifier, - STATE(894), 1, - sym_instance_argument, - [39128] = 2, + STATE(906), 1, + sym_type_parameter, + [39766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 2, - sym_identifier, - sym_numeric_index, - [39136] = 3, + ACTIONS(2590), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [39774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_block_statement, - [39146] = 3, + ACTIONS(2592), 1, + sym_identifier, + ACTIONS(2594), 1, + anon_sym_fun, + [39784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1519), 1, anon_sym_LBRACE, - STATE(439), 1, + STATE(444), 1, sym_block_statement, - [39156] = 3, + [39794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, - anon_sym_RPAREN, - ACTIONS(2609), 1, - anon_sym_EQ, - [39166] = 3, + ACTIONS(2092), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_parameter_list, + [39804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2092), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(821), 1, sym_parameter_list, - [39176] = 3, + [39814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, + ACTIONS(1519), 1, anon_sym_LBRACE, - STATE(437), 1, + STATE(442), 1, sym_block_statement, - [39186] = 2, + [39824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 2, - anon_sym_COMMA, - anon_sym_GT, - [39194] = 3, + ACTIONS(2294), 1, + sym_identifier, + STATE(912), 1, + sym_instance_argument, + [39834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - sym_identifier, - ACTIONS(2613), 1, - anon_sym_LPAREN, - [39204] = 3, + ACTIONS(2596), 1, + anon_sym_COLON, + ACTIONS(2598), 1, + anon_sym_EQ, + [39844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, - sym_string_literal, - STATE(546), 1, - aux_sym_asm_body_repeat3, - [39214] = 3, + ACTIONS(2535), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [39852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2092), 1, anon_sym_LPAREN, - STATE(824), 1, + STATE(830), 1, sym_parameter_list, - [39224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2617), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [39232] = 2, + [39862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 1, - anon_sym_RBRACK, - [39239] = 2, + ACTIONS(1756), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym_block_statement, + [39872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, - sym_version_value, - [39246] = 2, + ACTIONS(1756), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_block_statement, + [39882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_catch, - [39253] = 2, + ACTIONS(153), 1, + anon_sym_RBRACE, + ACTIONS(2556), 1, + anon_sym_SEMI, + [39892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2600), 1, sym_string_literal, - [39260] = 2, + STATE(556), 1, + aux_sym_asm_body_repeat3, + [39902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1512), 1, + ACTIONS(2441), 1, anon_sym_RPAREN, - [39267] = 2, + [39909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_EQ_GT, - [39274] = 2, + ACTIONS(1507), 1, + anon_sym_RPAREN, + [39916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_RBRACE, - [39281] = 2, + [39923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 1, - anon_sym_LPAREN, - [39288] = 2, + ACTIONS(2602), 1, + anon_sym_EQ_GT, + [39930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2629), 1, - sym_identifier, - [39295] = 2, + ACTIONS(2556), 1, + anon_sym_SEMI, + [39937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(2604), 1, sym_identifier, - [39302] = 2, + [39944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_LPAREN, - [39309] = 2, + ACTIONS(2606), 1, + sym_identifier, + [39951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 1, + ACTIONS(2608), 1, sym_identifier, - [39316] = 2, + [39958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym_while, - [39323] = 2, + ACTIONS(1021), 1, + anon_sym_RBRACK, + [39965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 1, + anon_sym_RBRACK, + [39972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, + ACTIONS(2610), 1, sym_identifier, - [39330] = 2, + [39979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 1, + ACTIONS(1007), 1, anon_sym_RBRACK, - [39337] = 2, + [39986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, + ACTIONS(2612), 1, sym_identifier, - [39344] = 2, + [39993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_SEMI, - [39351] = 2, + ACTIONS(2614), 1, + sym_identifier, + [40000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_RPAREN, - [39358] = 2, + ACTIONS(2616), 1, + anon_sym_catch, + [40007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, - anon_sym_LPAREN, - [39365] = 2, + ACTIONS(2251), 1, + anon_sym_RBRACE, + [40014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, + ACTIONS(2618), 1, anon_sym_RPAREN, - [39372] = 2, + [40021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, - anon_sym_RPAREN, - [39379] = 2, + ACTIONS(2620), 1, + sym_identifier, + [40028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - [39386] = 2, + ACTIONS(2622), 1, + anon_sym_while, + [40035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 1, - anon_sym_RPAREN, - [39393] = 2, + ACTIONS(2544), 1, + anon_sym_GT, + [40042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 1, - anon_sym_RBRACE, - [39400] = 2, + ACTIONS(2624), 1, + sym_string_literal, + [40049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, - anon_sym_RPAREN, - [39407] = 2, + ACTIONS(2626), 1, + ts_builtin_sym_end, + [40056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_RPAREN, - [39414] = 2, + ACTIONS(2628), 1, + sym_version_value, + [40063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 1, - sym_number_literal, - [39421] = 2, + ACTIONS(2630), 1, + anon_sym_LPAREN, + [40070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 1, + ACTIONS(2497), 1, anon_sym_RPAREN, - [39428] = 2, + [40077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(2632), 1, sym_identifier, - [39435] = 2, + [40084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2634), 1, sym_identifier, - [39442] = 2, + [40091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 1, - anon_sym_EQ, - [39449] = 2, + ACTIONS(2636), 1, + anon_sym_throw, + [40098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, - anon_sym_RBRACE, - [39456] = 2, + ACTIONS(2638), 1, + sym_identifier, + [40105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2640), 1, + anon_sym_COLON, + [40112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2642), 1, sym_identifier, - [39463] = 2, + [40119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 1, - anon_sym_RPAREN, - [39470] = 2, + ACTIONS(2644), 1, + sym_number_literal, + [40126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, - anon_sym_RPAREN, - [39477] = 2, + ACTIONS(2646), 1, + sym_number_literal, + [40133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_COLON, - [39484] = 2, + ACTIONS(1493), 1, + anon_sym_RPAREN, + [40140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2437), 1, anon_sym_RPAREN, - [39491] = 2, + [40147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1022), 1, - anon_sym_RBRACK, - [39498] = 2, + ACTIONS(2648), 1, + anon_sym_LPAREN, + [40154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(2650), 1, sym_identifier, - [39505] = 2, + [40161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - ts_builtin_sym_end, - [39512] = 2, + ACTIONS(2412), 1, + anon_sym_RBRACE, + [40168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(2652), 1, sym_identifier, - [39519] = 2, + [40175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_RPAREN, - [39526] = 2, + ACTIONS(2654), 1, + anon_sym_LPAREN, + [40182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 1, - sym_identifier, - [39533] = 2, + ACTIONS(2656), 1, + anon_sym_COLON, + [40189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, - anon_sym_throw, - [39540] = 2, + ACTIONS(2658), 1, + anon_sym_EQ, + [40196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, - sym_number_literal, - [39547] = 2, + ACTIONS(2660), 1, + anon_sym_LPAREN, + [40203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - [39554] = 2, + [40210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, + ACTIONS(2664), 1, anon_sym_EQ, - [39561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 1, - sym_identifier, - [39568] = 2, + [40217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, - anon_sym_GT, - [39575] = 2, + ACTIONS(2666), 1, + anon_sym_LPAREN, + [40224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_COLON, - [39582] = 2, + ACTIONS(2668), 1, + anon_sym_RPAREN, + [40231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2511), 1, anon_sym_RBRACE, - [39589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 1, - sym_identifier, - [39596] = 2, + [40238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2670), 1, sym_identifier, - [39603] = 2, + [40245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, - sym_identifier, - [39610] = 2, + ACTIONS(2672), 1, + anon_sym_LPAREN, + [40252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 1, + ACTIONS(2674), 1, anon_sym_LPAREN, - [39617] = 2, + [40259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(2676), 1, anon_sym_COLON, - [39624] = 2, + [40266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_LPAREN, - [39631] = 2, + ACTIONS(2678), 1, + sym_identifier, + [40273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, - anon_sym_LPAREN, - [39638] = 2, + ACTIONS(2546), 1, + anon_sym_RPAREN, + [40280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2680), 1, + anon_sym_RPAREN, + [40287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(2682), 1, sym_identifier, + [40294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 1, + anon_sym_RPAREN, + [40301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(961), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(75)] = 0, - [SMALL_STATE(76)] = 75, - [SMALL_STATE(77)] = 156, - [SMALL_STATE(78)] = 239, - [SMALL_STATE(79)] = 309, - [SMALL_STATE(80)] = 383, - [SMALL_STATE(81)] = 459, - [SMALL_STATE(82)] = 535, - [SMALL_STATE(83)] = 609, - [SMALL_STATE(84)] = 685, - [SMALL_STATE(85)] = 755, - [SMALL_STATE(86)] = 825, - [SMALL_STATE(87)] = 895, - [SMALL_STATE(88)] = 965, - [SMALL_STATE(89)] = 1035, - [SMALL_STATE(90)] = 1105, - [SMALL_STATE(91)] = 1175, - [SMALL_STATE(92)] = 1251, - [SMALL_STATE(93)] = 1321, - [SMALL_STATE(94)] = 1391, - [SMALL_STATE(95)] = 1465, - [SMALL_STATE(96)] = 1534, - [SMALL_STATE(97)] = 1603, - [SMALL_STATE(98)] = 1672, - [SMALL_STATE(99)] = 1741, - [SMALL_STATE(100)] = 1810, - [SMALL_STATE(101)] = 1879, - [SMALL_STATE(102)] = 1948, - [SMALL_STATE(103)] = 2017, - [SMALL_STATE(104)] = 2086, - [SMALL_STATE(105)] = 2155, - [SMALL_STATE(106)] = 2224, - [SMALL_STATE(107)] = 2293, - [SMALL_STATE(108)] = 2362, - [SMALL_STATE(109)] = 2431, - [SMALL_STATE(110)] = 2500, - [SMALL_STATE(111)] = 2569, - [SMALL_STATE(112)] = 2638, - [SMALL_STATE(113)] = 2707, - [SMALL_STATE(114)] = 2776, - [SMALL_STATE(115)] = 2845, - [SMALL_STATE(116)] = 2914, - [SMALL_STATE(117)] = 2983, - [SMALL_STATE(118)] = 3052, - [SMALL_STATE(119)] = 3121, - [SMALL_STATE(120)] = 3190, - [SMALL_STATE(121)] = 3269, - [SMALL_STATE(122)] = 3338, - [SMALL_STATE(123)] = 3428, - [SMALL_STATE(124)] = 3542, - [SMALL_STATE(125)] = 3646, - [SMALL_STATE(126)] = 3760, - [SMALL_STATE(127)] = 3866, - [SMALL_STATE(128)] = 3962, - [SMALL_STATE(129)] = 4054, - [SMALL_STATE(130)] = 4140, - [SMALL_STATE(131)] = 4236, - [SMALL_STATE(132)] = 4350, - [SMALL_STATE(133)] = 4464, - [SMALL_STATE(134)] = 4544, - [SMALL_STATE(135)] = 4618, - [SMALL_STATE(136)] = 4695, - [SMALL_STATE(137)] = 4810, - [SMALL_STATE(138)] = 4923, - [SMALL_STATE(139)] = 5038, - [SMALL_STATE(140)] = 5153, - [SMALL_STATE(141)] = 5266, - [SMALL_STATE(142)] = 5338, - [SMALL_STATE(143)] = 5450, - [SMALL_STATE(144)] = 5520, - [SMALL_STATE(145)] = 5588, - [SMALL_STATE(146)] = 5673, - [SMALL_STATE(147)] = 5748, - [SMALL_STATE(148)] = 5853, - [SMALL_STATE(149)] = 5936, - [SMALL_STATE(150)] = 6025, - [SMALL_STATE(151)] = 6104, - [SMALL_STATE(152)] = 6209, - [SMALL_STATE(153)] = 6308, - [SMALL_STATE(154)] = 6415, - [SMALL_STATE(155)] = 6520, - [SMALL_STATE(156)] = 6627, - [SMALL_STATE(157)] = 6724, - [SMALL_STATE(158)] = 6829, - [SMALL_STATE(159)] = 6918, - [SMALL_STATE(160)] = 7025, - [SMALL_STATE(161)] = 7132, - [SMALL_STATE(162)] = 7198, - [SMALL_STATE(163)] = 7264, - [SMALL_STATE(164)] = 7325, - [SMALL_STATE(165)] = 7392, - [SMALL_STATE(166)] = 7459, - [SMALL_STATE(167)] = 7524, - [SMALL_STATE(168)] = 7591, - [SMALL_STATE(169)] = 7652, - [SMALL_STATE(170)] = 7713, - [SMALL_STATE(171)] = 7774, - [SMALL_STATE(172)] = 7835, - [SMALL_STATE(173)] = 7902, - [SMALL_STATE(174)] = 7963, - [SMALL_STATE(175)] = 8024, - [SMALL_STATE(176)] = 8085, - [SMALL_STATE(177)] = 8146, - [SMALL_STATE(178)] = 8207, - [SMALL_STATE(179)] = 8267, - [SMALL_STATE(180)] = 8327, - [SMALL_STATE(181)] = 8387, - [SMALL_STATE(182)] = 8447, - [SMALL_STATE(183)] = 8507, - [SMALL_STATE(184)] = 8567, - [SMALL_STATE(185)] = 8627, - [SMALL_STATE(186)] = 8687, - [SMALL_STATE(187)] = 8747, - [SMALL_STATE(188)] = 8807, - [SMALL_STATE(189)] = 8867, - [SMALL_STATE(190)] = 8927, - [SMALL_STATE(191)] = 8987, - [SMALL_STATE(192)] = 9047, - [SMALL_STATE(193)] = 9107, - [SMALL_STATE(194)] = 9167, - [SMALL_STATE(195)] = 9227, - [SMALL_STATE(196)] = 9287, - [SMALL_STATE(197)] = 9347, - [SMALL_STATE(198)] = 9407, - [SMALL_STATE(199)] = 9467, - [SMALL_STATE(200)] = 9527, - [SMALL_STATE(201)] = 9587, - [SMALL_STATE(202)] = 9647, - [SMALL_STATE(203)] = 9707, - [SMALL_STATE(204)] = 9767, - [SMALL_STATE(205)] = 9862, - [SMALL_STATE(206)] = 9931, - [SMALL_STATE(207)] = 10026, - [SMALL_STATE(208)] = 10121, - [SMALL_STATE(209)] = 10225, - [SMALL_STATE(210)] = 10305, - [SMALL_STATE(211)] = 10397, - [SMALL_STATE(212)] = 10483, - [SMALL_STATE(213)] = 10587, - [SMALL_STATE(214)] = 10691, - [SMALL_STATE(215)] = 10781, - [SMALL_STATE(216)] = 10871, - [SMALL_STATE(217)] = 10965, - [SMALL_STATE(218)] = 11029, - [SMALL_STATE(219)] = 11119, - [SMALL_STATE(220)] = 11223, - [SMALL_STATE(221)] = 11293, - [SMALL_STATE(222)] = 11375, - [SMALL_STATE(223)] = 11467, - [SMALL_STATE(224)] = 11563, - [SMALL_STATE(225)] = 11639, - [SMALL_STATE(226)] = 11729, - [SMALL_STATE(227)] = 11819, - [SMALL_STATE(228)] = 11911, - [SMALL_STATE(229)] = 11997, - [SMALL_STATE(230)] = 12087, - [SMALL_STATE(231)] = 12177, - [SMALL_STATE(232)] = 12266, - [SMALL_STATE(233)] = 12353, - [SMALL_STATE(234)] = 12440, - [SMALL_STATE(235)] = 12527, - [SMALL_STATE(236)] = 12616, - [SMALL_STATE(237)] = 12705, - [SMALL_STATE(238)] = 12794, - [SMALL_STATE(239)] = 12883, - [SMALL_STATE(240)] = 12972, - [SMALL_STATE(241)] = 13061, - [SMALL_STATE(242)] = 13148, - [SMALL_STATE(243)] = 13237, - [SMALL_STATE(244)] = 13324, - [SMALL_STATE(245)] = 13410, - [SMALL_STATE(246)] = 13494, - [SMALL_STATE(247)] = 13580, - [SMALL_STATE(248)] = 13664, - [SMALL_STATE(249)] = 13766, - [SMALL_STATE(250)] = 13852, - [SMALL_STATE(251)] = 13938, - [SMALL_STATE(252)] = 14024, - [SMALL_STATE(253)] = 14125, - [SMALL_STATE(254)] = 14208, - [SMALL_STATE(255)] = 14305, - [SMALL_STATE(256)] = 14388, - [SMALL_STATE(257)] = 14489, - [SMALL_STATE(258)] = 14572, - [SMALL_STATE(259)] = 14669, - [SMALL_STATE(260)] = 14758, - [SMALL_STATE(261)] = 14855, - [SMALL_STATE(262)] = 14946, - [SMALL_STATE(263)] = 15027, - [SMALL_STATE(264)] = 15104, - [SMALL_STATE(265)] = 15179, - [SMALL_STATE(266)] = 15260, - [SMALL_STATE(267)] = 15357, - [SMALL_STATE(268)] = 15440, - [SMALL_STATE(269)] = 15523, - [SMALL_STATE(270)] = 15624, - [SMALL_STATE(271)] = 15707, - [SMALL_STATE(272)] = 15790, - [SMALL_STATE(273)] = 15873, - [SMALL_STATE(274)] = 15956, - [SMALL_STATE(275)] = 16039, - [SMALL_STATE(276)] = 16122, - [SMALL_STATE(277)] = 16223, - [SMALL_STATE(278)] = 16324, - [SMALL_STATE(279)] = 16391, - [SMALL_STATE(280)] = 16488, - [SMALL_STATE(281)] = 16571, - [SMALL_STATE(282)] = 16654, - [SMALL_STATE(283)] = 16725, - [SMALL_STATE(284)] = 16808, - [SMALL_STATE(285)] = 16891, - [SMALL_STATE(286)] = 16974, - [SMALL_STATE(287)] = 17057, - [SMALL_STATE(288)] = 17158, - [SMALL_STATE(289)] = 17238, - [SMALL_STATE(290)] = 17318, - [SMALL_STATE(291)] = 17398, - [SMALL_STATE(292)] = 17478, - [SMALL_STATE(293)] = 17558, - [SMALL_STATE(294)] = 17638, - [SMALL_STATE(295)] = 17718, - [SMALL_STATE(296)] = 17798, - [SMALL_STATE(297)] = 17878, - [SMALL_STATE(298)] = 17974, - [SMALL_STATE(299)] = 18054, - [SMALL_STATE(300)] = 18134, - [SMALL_STATE(301)] = 18230, - [SMALL_STATE(302)] = 18310, - [SMALL_STATE(303)] = 18390, - [SMALL_STATE(304)] = 18470, - [SMALL_STATE(305)] = 18550, - [SMALL_STATE(306)] = 18646, - [SMALL_STATE(307)] = 18726, - [SMALL_STATE(308)] = 18806, - [SMALL_STATE(309)] = 18886, - [SMALL_STATE(310)] = 18966, - [SMALL_STATE(311)] = 19046, - [SMALL_STATE(312)] = 19126, - [SMALL_STATE(313)] = 19206, - [SMALL_STATE(314)] = 19286, - [SMALL_STATE(315)] = 19366, - [SMALL_STATE(316)] = 19446, - [SMALL_STATE(317)] = 19526, - [SMALL_STATE(318)] = 19606, - [SMALL_STATE(319)] = 19686, - [SMALL_STATE(320)] = 19766, - [SMALL_STATE(321)] = 19846, - [SMALL_STATE(322)] = 19926, - [SMALL_STATE(323)] = 20006, - [SMALL_STATE(324)] = 20086, - [SMALL_STATE(325)] = 20166, - [SMALL_STATE(326)] = 20246, - [SMALL_STATE(327)] = 20342, - [SMALL_STATE(328)] = 20422, - [SMALL_STATE(329)] = 20502, - [SMALL_STATE(330)] = 20582, - [SMALL_STATE(331)] = 20678, - [SMALL_STATE(332)] = 20758, - [SMALL_STATE(333)] = 20838, - [SMALL_STATE(334)] = 20918, - [SMALL_STATE(335)] = 20998, - [SMALL_STATE(336)] = 21094, - [SMALL_STATE(337)] = 21174, - [SMALL_STATE(338)] = 21254, - [SMALL_STATE(339)] = 21334, - [SMALL_STATE(340)] = 21414, - [SMALL_STATE(341)] = 21494, - [SMALL_STATE(342)] = 21574, - [SMALL_STATE(343)] = 21654, - [SMALL_STATE(344)] = 21734, - [SMALL_STATE(345)] = 21814, - [SMALL_STATE(346)] = 21894, - [SMALL_STATE(347)] = 21990, - [SMALL_STATE(348)] = 22070, - [SMALL_STATE(349)] = 22150, - [SMALL_STATE(350)] = 22230, - [SMALL_STATE(351)] = 22310, - [SMALL_STATE(352)] = 22390, - [SMALL_STATE(353)] = 22488, - [SMALL_STATE(354)] = 22568, - [SMALL_STATE(355)] = 22664, - [SMALL_STATE(356)] = 22744, - [SMALL_STATE(357)] = 22824, - [SMALL_STATE(358)] = 22904, - [SMALL_STATE(359)] = 22984, - [SMALL_STATE(360)] = 23064, - [SMALL_STATE(361)] = 23144, - [SMALL_STATE(362)] = 23224, - [SMALL_STATE(363)] = 23304, - [SMALL_STATE(364)] = 23384, - [SMALL_STATE(365)] = 23464, - [SMALL_STATE(366)] = 23544, - [SMALL_STATE(367)] = 23624, - [SMALL_STATE(368)] = 23704, - [SMALL_STATE(369)] = 23784, - [SMALL_STATE(370)] = 23864, - [SMALL_STATE(371)] = 23944, - [SMALL_STATE(372)] = 24024, - [SMALL_STATE(373)] = 24104, - [SMALL_STATE(374)] = 24184, - [SMALL_STATE(375)] = 24264, - [SMALL_STATE(376)] = 24344, - [SMALL_STATE(377)] = 24424, - [SMALL_STATE(378)] = 24504, - [SMALL_STATE(379)] = 24584, - [SMALL_STATE(380)] = 24664, - [SMALL_STATE(381)] = 24744, - [SMALL_STATE(382)] = 24824, - [SMALL_STATE(383)] = 24920, - [SMALL_STATE(384)] = 25000, - [SMALL_STATE(385)] = 25080, - [SMALL_STATE(386)] = 25160, - [SMALL_STATE(387)] = 25256, - [SMALL_STATE(388)] = 25336, - [SMALL_STATE(389)] = 25416, - [SMALL_STATE(390)] = 25496, - [SMALL_STATE(391)] = 25576, - [SMALL_STATE(392)] = 25656, - [SMALL_STATE(393)] = 25736, - [SMALL_STATE(394)] = 25816, - [SMALL_STATE(395)] = 25912, - [SMALL_STATE(396)] = 25992, - [SMALL_STATE(397)] = 26072, - [SMALL_STATE(398)] = 26152, - [SMALL_STATE(399)] = 26232, - [SMALL_STATE(400)] = 26312, - [SMALL_STATE(401)] = 26407, - [SMALL_STATE(402)] = 26502, - [SMALL_STATE(403)] = 26575, - [SMALL_STATE(404)] = 26670, - [SMALL_STATE(405)] = 26765, - [SMALL_STATE(406)] = 26860, - [SMALL_STATE(407)] = 26947, - [SMALL_STATE(408)] = 27042, - [SMALL_STATE(409)] = 27131, - [SMALL_STATE(410)] = 27210, - [SMALL_STATE(411)] = 27285, - [SMALL_STATE(412)] = 27380, - [SMALL_STATE(413)] = 27459, - [SMALL_STATE(414)] = 27554, - [SMALL_STATE(415)] = 27649, - [SMALL_STATE(416)] = 27744, - [SMALL_STATE(417)] = 27813, - [SMALL_STATE(418)] = 27908, - [SMALL_STATE(419)] = 27973, - [SMALL_STATE(420)] = 28068, - [SMALL_STATE(421)] = 28163, - [SMALL_STATE(422)] = 28258, - [SMALL_STATE(423)] = 28353, - [SMALL_STATE(424)] = 28448, - [SMALL_STATE(425)] = 28543, - [SMALL_STATE(426)] = 28638, - [SMALL_STATE(427)] = 28733, - [SMALL_STATE(428)] = 28828, - [SMALL_STATE(429)] = 28869, - [SMALL_STATE(430)] = 28910, - [SMALL_STATE(431)] = 28957, - [SMALL_STATE(432)] = 28999, - [SMALL_STATE(433)] = 29039, - [SMALL_STATE(434)] = 29078, - [SMALL_STATE(435)] = 29117, - [SMALL_STATE(436)] = 29156, - [SMALL_STATE(437)] = 29195, - [SMALL_STATE(438)] = 29234, - [SMALL_STATE(439)] = 29273, - [SMALL_STATE(440)] = 29312, - [SMALL_STATE(441)] = 29351, - [SMALL_STATE(442)] = 29390, - [SMALL_STATE(443)] = 29429, - [SMALL_STATE(444)] = 29468, - [SMALL_STATE(445)] = 29509, - [SMALL_STATE(446)] = 29548, - [SMALL_STATE(447)] = 29594, - [SMALL_STATE(448)] = 29638, - [SMALL_STATE(449)] = 29696, - [SMALL_STATE(450)] = 29754, - [SMALL_STATE(451)] = 29787, - [SMALL_STATE(452)] = 29830, - [SMALL_STATE(453)] = 29863, - [SMALL_STATE(454)] = 29896, - [SMALL_STATE(455)] = 29939, - [SMALL_STATE(456)] = 29972, - [SMALL_STATE(457)] = 30005, - [SMALL_STATE(458)] = 30038, - [SMALL_STATE(459)] = 30071, - [SMALL_STATE(460)] = 30104, - [SMALL_STATE(461)] = 30147, - [SMALL_STATE(462)] = 30190, - [SMALL_STATE(463)] = 30235, - [SMALL_STATE(464)] = 30278, - [SMALL_STATE(465)] = 30311, - [SMALL_STATE(466)] = 30344, - [SMALL_STATE(467)] = 30374, - [SMALL_STATE(468)] = 30404, - [SMALL_STATE(469)] = 30434, - [SMALL_STATE(470)] = 30464, - [SMALL_STATE(471)] = 30494, - [SMALL_STATE(472)] = 30524, - [SMALL_STATE(473)] = 30554, - [SMALL_STATE(474)] = 30584, - [SMALL_STATE(475)] = 30614, - [SMALL_STATE(476)] = 30641, - [SMALL_STATE(477)] = 30668, - [SMALL_STATE(478)] = 30695, - [SMALL_STATE(479)] = 30722, - [SMALL_STATE(480)] = 30749, - [SMALL_STATE(481)] = 30776, - [SMALL_STATE(482)] = 30803, - [SMALL_STATE(483)] = 30830, - [SMALL_STATE(484)] = 30857, - [SMALL_STATE(485)] = 30884, - [SMALL_STATE(486)] = 30911, - [SMALL_STATE(487)] = 30938, - [SMALL_STATE(488)] = 30982, - [SMALL_STATE(489)] = 31026, - [SMALL_STATE(490)] = 31070, - [SMALL_STATE(491)] = 31114, - [SMALL_STATE(492)] = 31158, - [SMALL_STATE(493)] = 31192, - [SMALL_STATE(494)] = 31236, - [SMALL_STATE(495)] = 31280, - [SMALL_STATE(496)] = 31316, - [SMALL_STATE(497)] = 31360, - [SMALL_STATE(498)] = 31389, - [SMALL_STATE(499)] = 31424, - [SMALL_STATE(500)] = 31453, - [SMALL_STATE(501)] = 31482, - [SMALL_STATE(502)] = 31511, - [SMALL_STATE(503)] = 31540, - [SMALL_STATE(504)] = 31569, - [SMALL_STATE(505)] = 31596, - [SMALL_STATE(506)] = 31624, - [SMALL_STATE(507)] = 31656, - [SMALL_STATE(508)] = 31676, - [SMALL_STATE(509)] = 31704, - [SMALL_STATE(510)] = 31732, - [SMALL_STATE(511)] = 31760, - [SMALL_STATE(512)] = 31780, - [SMALL_STATE(513)] = 31808, - [SMALL_STATE(514)] = 31828, - [SMALL_STATE(515)] = 31856, - [SMALL_STATE(516)] = 31884, - [SMALL_STATE(517)] = 31912, - [SMALL_STATE(518)] = 31936, - [SMALL_STATE(519)] = 31968, - [SMALL_STATE(520)] = 31996, - [SMALL_STATE(521)] = 32028, - [SMALL_STATE(522)] = 32052, - [SMALL_STATE(523)] = 32072, - [SMALL_STATE(524)] = 32098, - [SMALL_STATE(525)] = 32126, - [SMALL_STATE(526)] = 32158, - [SMALL_STATE(527)] = 32184, - [SMALL_STATE(528)] = 32207, - [SMALL_STATE(529)] = 32236, - [SMALL_STATE(530)] = 32259, - [SMALL_STATE(531)] = 32282, - [SMALL_STATE(532)] = 32311, - [SMALL_STATE(533)] = 32336, - [SMALL_STATE(534)] = 32355, - [SMALL_STATE(535)] = 32380, - [SMALL_STATE(536)] = 32405, - [SMALL_STATE(537)] = 32434, - [SMALL_STATE(538)] = 32463, - [SMALL_STATE(539)] = 32492, - [SMALL_STATE(540)] = 32515, - [SMALL_STATE(541)] = 32544, - [SMALL_STATE(542)] = 32567, - [SMALL_STATE(543)] = 32592, - [SMALL_STATE(544)] = 32611, - [SMALL_STATE(545)] = 32640, - [SMALL_STATE(546)] = 32669, - [SMALL_STATE(547)] = 32694, - [SMALL_STATE(548)] = 32713, - [SMALL_STATE(549)] = 32742, - [SMALL_STATE(550)] = 32771, - [SMALL_STATE(551)] = 32800, - [SMALL_STATE(552)] = 32829, - [SMALL_STATE(553)] = 32855, - [SMALL_STATE(554)] = 32881, - [SMALL_STATE(555)] = 32907, - [SMALL_STATE(556)] = 32933, - [SMALL_STATE(557)] = 32959, - [SMALL_STATE(558)] = 32985, - [SMALL_STATE(559)] = 33011, - [SMALL_STATE(560)] = 33037, - [SMALL_STATE(561)] = 33063, - [SMALL_STATE(562)] = 33089, - [SMALL_STATE(563)] = 33115, - [SMALL_STATE(564)] = 33141, - [SMALL_STATE(565)] = 33167, - [SMALL_STATE(566)] = 33193, - [SMALL_STATE(567)] = 33219, - [SMALL_STATE(568)] = 33245, - [SMALL_STATE(569)] = 33271, - [SMALL_STATE(570)] = 33297, - [SMALL_STATE(571)] = 33323, - [SMALL_STATE(572)] = 33349, - [SMALL_STATE(573)] = 33375, - [SMALL_STATE(574)] = 33401, - [SMALL_STATE(575)] = 33427, - [SMALL_STATE(576)] = 33453, - [SMALL_STATE(577)] = 33479, - [SMALL_STATE(578)] = 33505, - [SMALL_STATE(579)] = 33531, - [SMALL_STATE(580)] = 33557, - [SMALL_STATE(581)] = 33583, - [SMALL_STATE(582)] = 33609, - [SMALL_STATE(583)] = 33635, - [SMALL_STATE(584)] = 33661, - [SMALL_STATE(585)] = 33687, - [SMALL_STATE(586)] = 33713, - [SMALL_STATE(587)] = 33739, - [SMALL_STATE(588)] = 33765, - [SMALL_STATE(589)] = 33791, - [SMALL_STATE(590)] = 33817, - [SMALL_STATE(591)] = 33843, - [SMALL_STATE(592)] = 33869, - [SMALL_STATE(593)] = 33895, - [SMALL_STATE(594)] = 33921, - [SMALL_STATE(595)] = 33947, - [SMALL_STATE(596)] = 33973, - [SMALL_STATE(597)] = 33999, - [SMALL_STATE(598)] = 34025, - [SMALL_STATE(599)] = 34051, - [SMALL_STATE(600)] = 34077, - [SMALL_STATE(601)] = 34103, - [SMALL_STATE(602)] = 34129, - [SMALL_STATE(603)] = 34155, - [SMALL_STATE(604)] = 34181, - [SMALL_STATE(605)] = 34207, - [SMALL_STATE(606)] = 34233, - [SMALL_STATE(607)] = 34250, - [SMALL_STATE(608)] = 34267, - [SMALL_STATE(609)] = 34284, - [SMALL_STATE(610)] = 34301, - [SMALL_STATE(611)] = 34318, - [SMALL_STATE(612)] = 34335, - [SMALL_STATE(613)] = 34352, - [SMALL_STATE(614)] = 34369, - [SMALL_STATE(615)] = 34386, - [SMALL_STATE(616)] = 34403, - [SMALL_STATE(617)] = 34420, - [SMALL_STATE(618)] = 34437, - [SMALL_STATE(619)] = 34454, - [SMALL_STATE(620)] = 34471, - [SMALL_STATE(621)] = 34488, - [SMALL_STATE(622)] = 34505, - [SMALL_STATE(623)] = 34522, - [SMALL_STATE(624)] = 34539, - [SMALL_STATE(625)] = 34556, - [SMALL_STATE(626)] = 34573, - [SMALL_STATE(627)] = 34590, - [SMALL_STATE(628)] = 34607, - [SMALL_STATE(629)] = 34624, - [SMALL_STATE(630)] = 34641, - [SMALL_STATE(631)] = 34658, - [SMALL_STATE(632)] = 34675, - [SMALL_STATE(633)] = 34692, - [SMALL_STATE(634)] = 34709, - [SMALL_STATE(635)] = 34726, - [SMALL_STATE(636)] = 34743, - [SMALL_STATE(637)] = 34760, - [SMALL_STATE(638)] = 34777, - [SMALL_STATE(639)] = 34794, - [SMALL_STATE(640)] = 34811, - [SMALL_STATE(641)] = 34828, - [SMALL_STATE(642)] = 34845, - [SMALL_STATE(643)] = 34862, - [SMALL_STATE(644)] = 34879, - [SMALL_STATE(645)] = 34896, - [SMALL_STATE(646)] = 34913, - [SMALL_STATE(647)] = 34930, - [SMALL_STATE(648)] = 34947, - [SMALL_STATE(649)] = 34964, - [SMALL_STATE(650)] = 34981, - [SMALL_STATE(651)] = 34998, - [SMALL_STATE(652)] = 35015, - [SMALL_STATE(653)] = 35032, - [SMALL_STATE(654)] = 35049, - [SMALL_STATE(655)] = 35066, - [SMALL_STATE(656)] = 35083, - [SMALL_STATE(657)] = 35100, - [SMALL_STATE(658)] = 35117, - [SMALL_STATE(659)] = 35134, - [SMALL_STATE(660)] = 35151, - [SMALL_STATE(661)] = 35168, - [SMALL_STATE(662)] = 35185, - [SMALL_STATE(663)] = 35202, - [SMALL_STATE(664)] = 35219, - [SMALL_STATE(665)] = 35236, - [SMALL_STATE(666)] = 35253, - [SMALL_STATE(667)] = 35270, - [SMALL_STATE(668)] = 35287, - [SMALL_STATE(669)] = 35304, - [SMALL_STATE(670)] = 35321, - [SMALL_STATE(671)] = 35338, - [SMALL_STATE(672)] = 35355, - [SMALL_STATE(673)] = 35372, - [SMALL_STATE(674)] = 35389, - [SMALL_STATE(675)] = 35406, - [SMALL_STATE(676)] = 35423, - [SMALL_STATE(677)] = 35440, - [SMALL_STATE(678)] = 35457, - [SMALL_STATE(679)] = 35474, - [SMALL_STATE(680)] = 35498, - [SMALL_STATE(681)] = 35518, - [SMALL_STATE(682)] = 35549, - [SMALL_STATE(683)] = 35568, - [SMALL_STATE(684)] = 35599, - [SMALL_STATE(685)] = 35630, - [SMALL_STATE(686)] = 35661, - [SMALL_STATE(687)] = 35686, - [SMALL_STATE(688)] = 35717, - [SMALL_STATE(689)] = 35736, - [SMALL_STATE(690)] = 35767, - [SMALL_STATE(691)] = 35798, - [SMALL_STATE(692)] = 35823, - [SMALL_STATE(693)] = 35854, - [SMALL_STATE(694)] = 35875, - [SMALL_STATE(695)] = 35894, - [SMALL_STATE(696)] = 35916, - [SMALL_STATE(697)] = 35944, - [SMALL_STATE(698)] = 35966, - [SMALL_STATE(699)] = 35984, - [SMALL_STATE(700)] = 36002, - [SMALL_STATE(701)] = 36022, - [SMALL_STATE(702)] = 36042, - [SMALL_STATE(703)] = 36056, - [SMALL_STATE(704)] = 36070, - [SMALL_STATE(705)] = 36084, - [SMALL_STATE(706)] = 36098, - [SMALL_STATE(707)] = 36112, - [SMALL_STATE(708)] = 36126, - [SMALL_STATE(709)] = 36140, - [SMALL_STATE(710)] = 36154, - [SMALL_STATE(711)] = 36168, - [SMALL_STATE(712)] = 36190, - [SMALL_STATE(713)] = 36204, - [SMALL_STATE(714)] = 36226, - [SMALL_STATE(715)] = 36254, - [SMALL_STATE(716)] = 36276, - [SMALL_STATE(717)] = 36298, - [SMALL_STATE(718)] = 36317, - [SMALL_STATE(719)] = 36336, - [SMALL_STATE(720)] = 36355, - [SMALL_STATE(721)] = 36374, - [SMALL_STATE(722)] = 36399, - [SMALL_STATE(723)] = 36424, - [SMALL_STATE(724)] = 36449, - [SMALL_STATE(725)] = 36474, - [SMALL_STATE(726)] = 36487, - [SMALL_STATE(727)] = 36512, - [SMALL_STATE(728)] = 36525, - [SMALL_STATE(729)] = 36538, - [SMALL_STATE(730)] = 36551, - [SMALL_STATE(731)] = 36576, - [SMALL_STATE(732)] = 36595, - [SMALL_STATE(733)] = 36608, - [SMALL_STATE(734)] = 36633, - [SMALL_STATE(735)] = 36652, - [SMALL_STATE(736)] = 36677, - [SMALL_STATE(737)] = 36697, - [SMALL_STATE(738)] = 36719, - [SMALL_STATE(739)] = 36741, - [SMALL_STATE(740)] = 36753, - [SMALL_STATE(741)] = 36765, - [SMALL_STATE(742)] = 36785, - [SMALL_STATE(743)] = 36797, - [SMALL_STATE(744)] = 36815, - [SMALL_STATE(745)] = 36837, - [SMALL_STATE(746)] = 36855, - [SMALL_STATE(747)] = 36867, - [SMALL_STATE(748)] = 36889, - [SMALL_STATE(749)] = 36911, - [SMALL_STATE(750)] = 36933, - [SMALL_STATE(751)] = 36955, - [SMALL_STATE(752)] = 36977, - [SMALL_STATE(753)] = 36999, - [SMALL_STATE(754)] = 37021, - [SMALL_STATE(755)] = 37043, - [SMALL_STATE(756)] = 37055, - [SMALL_STATE(757)] = 37073, - [SMALL_STATE(758)] = 37095, - [SMALL_STATE(759)] = 37117, - [SMALL_STATE(760)] = 37129, - [SMALL_STATE(761)] = 37141, - [SMALL_STATE(762)] = 37163, - [SMALL_STATE(763)] = 37175, - [SMALL_STATE(764)] = 37197, - [SMALL_STATE(765)] = 37209, - [SMALL_STATE(766)] = 37231, - [SMALL_STATE(767)] = 37253, - [SMALL_STATE(768)] = 37272, - [SMALL_STATE(769)] = 37289, - [SMALL_STATE(770)] = 37308, - [SMALL_STATE(771)] = 37327, - [SMALL_STATE(772)] = 37346, - [SMALL_STATE(773)] = 37365, - [SMALL_STATE(774)] = 37384, - [SMALL_STATE(775)] = 37401, - [SMALL_STATE(776)] = 37416, - [SMALL_STATE(777)] = 37435, - [SMALL_STATE(778)] = 37454, - [SMALL_STATE(779)] = 37470, - [SMALL_STATE(780)] = 37486, - [SMALL_STATE(781)] = 37496, - [SMALL_STATE(782)] = 37512, - [SMALL_STATE(783)] = 37528, - [SMALL_STATE(784)] = 37544, - [SMALL_STATE(785)] = 37560, - [SMALL_STATE(786)] = 37576, - [SMALL_STATE(787)] = 37590, - [SMALL_STATE(788)] = 37600, - [SMALL_STATE(789)] = 37610, - [SMALL_STATE(790)] = 37626, - [SMALL_STATE(791)] = 37640, - [SMALL_STATE(792)] = 37656, - [SMALL_STATE(793)] = 37670, - [SMALL_STATE(794)] = 37686, - [SMALL_STATE(795)] = 37700, - [SMALL_STATE(796)] = 37716, - [SMALL_STATE(797)] = 37726, - [SMALL_STATE(798)] = 37740, - [SMALL_STATE(799)] = 37756, - [SMALL_STATE(800)] = 37770, - [SMALL_STATE(801)] = 37786, - [SMALL_STATE(802)] = 37796, - [SMALL_STATE(803)] = 37812, - [SMALL_STATE(804)] = 37826, - [SMALL_STATE(805)] = 37839, - [SMALL_STATE(806)] = 37852, - [SMALL_STATE(807)] = 37865, - [SMALL_STATE(808)] = 37878, - [SMALL_STATE(809)] = 37889, - [SMALL_STATE(810)] = 37902, - [SMALL_STATE(811)] = 37915, - [SMALL_STATE(812)] = 37928, - [SMALL_STATE(813)] = 37941, - [SMALL_STATE(814)] = 37954, - [SMALL_STATE(815)] = 37967, - [SMALL_STATE(816)] = 37980, - [SMALL_STATE(817)] = 37993, - [SMALL_STATE(818)] = 38006, - [SMALL_STATE(819)] = 38019, - [SMALL_STATE(820)] = 38032, - [SMALL_STATE(821)] = 38045, - [SMALL_STATE(822)] = 38058, - [SMALL_STATE(823)] = 38071, - [SMALL_STATE(824)] = 38084, - [SMALL_STATE(825)] = 38097, - [SMALL_STATE(826)] = 38110, - [SMALL_STATE(827)] = 38123, - [SMALL_STATE(828)] = 38136, - [SMALL_STATE(829)] = 38149, - [SMALL_STATE(830)] = 38162, - [SMALL_STATE(831)] = 38175, - [SMALL_STATE(832)] = 38184, - [SMALL_STATE(833)] = 38197, - [SMALL_STATE(834)] = 38210, - [SMALL_STATE(835)] = 38223, - [SMALL_STATE(836)] = 38236, - [SMALL_STATE(837)] = 38249, - [SMALL_STATE(838)] = 38262, - [SMALL_STATE(839)] = 38275, - [SMALL_STATE(840)] = 38288, - [SMALL_STATE(841)] = 38301, - [SMALL_STATE(842)] = 38314, - [SMALL_STATE(843)] = 38327, - [SMALL_STATE(844)] = 38340, - [SMALL_STATE(845)] = 38353, - [SMALL_STATE(846)] = 38366, - [SMALL_STATE(847)] = 38379, - [SMALL_STATE(848)] = 38392, - [SMALL_STATE(849)] = 38405, - [SMALL_STATE(850)] = 38418, - [SMALL_STATE(851)] = 38431, - [SMALL_STATE(852)] = 38444, - [SMALL_STATE(853)] = 38457, - [SMALL_STATE(854)] = 38470, - [SMALL_STATE(855)] = 38481, - [SMALL_STATE(856)] = 38494, - [SMALL_STATE(857)] = 38507, - [SMALL_STATE(858)] = 38520, - [SMALL_STATE(859)] = 38533, - [SMALL_STATE(860)] = 38546, - [SMALL_STATE(861)] = 38559, - [SMALL_STATE(862)] = 38572, - [SMALL_STATE(863)] = 38585, - [SMALL_STATE(864)] = 38596, - [SMALL_STATE(865)] = 38609, - [SMALL_STATE(866)] = 38622, - [SMALL_STATE(867)] = 38635, - [SMALL_STATE(868)] = 38648, - [SMALL_STATE(869)] = 38661, - [SMALL_STATE(870)] = 38674, - [SMALL_STATE(871)] = 38687, - [SMALL_STATE(872)] = 38700, - [SMALL_STATE(873)] = 38713, - [SMALL_STATE(874)] = 38726, - [SMALL_STATE(875)] = 38739, - [SMALL_STATE(876)] = 38752, - [SMALL_STATE(877)] = 38765, - [SMALL_STATE(878)] = 38778, - [SMALL_STATE(879)] = 38791, - [SMALL_STATE(880)] = 38804, - [SMALL_STATE(881)] = 38817, - [SMALL_STATE(882)] = 38830, - [SMALL_STATE(883)] = 38840, - [SMALL_STATE(884)] = 38850, - [SMALL_STATE(885)] = 38860, - [SMALL_STATE(886)] = 38868, - [SMALL_STATE(887)] = 38878, - [SMALL_STATE(888)] = 38888, - [SMALL_STATE(889)] = 38896, - [SMALL_STATE(890)] = 38906, - [SMALL_STATE(891)] = 38916, - [SMALL_STATE(892)] = 38926, - [SMALL_STATE(893)] = 38936, - [SMALL_STATE(894)] = 38946, - [SMALL_STATE(895)] = 38954, - [SMALL_STATE(896)] = 38964, - [SMALL_STATE(897)] = 38974, - [SMALL_STATE(898)] = 38984, - [SMALL_STATE(899)] = 38994, - [SMALL_STATE(900)] = 39004, - [SMALL_STATE(901)] = 39014, - [SMALL_STATE(902)] = 39024, - [SMALL_STATE(903)] = 39034, - [SMALL_STATE(904)] = 39044, - [SMALL_STATE(905)] = 39054, - [SMALL_STATE(906)] = 39064, - [SMALL_STATE(907)] = 39074, - [SMALL_STATE(908)] = 39082, - [SMALL_STATE(909)] = 39090, - [SMALL_STATE(910)] = 39098, - [SMALL_STATE(911)] = 39108, - [SMALL_STATE(912)] = 39118, - [SMALL_STATE(913)] = 39128, - [SMALL_STATE(914)] = 39136, - [SMALL_STATE(915)] = 39146, - [SMALL_STATE(916)] = 39156, - [SMALL_STATE(917)] = 39166, - [SMALL_STATE(918)] = 39176, - [SMALL_STATE(919)] = 39186, - [SMALL_STATE(920)] = 39194, - [SMALL_STATE(921)] = 39204, - [SMALL_STATE(922)] = 39214, - [SMALL_STATE(923)] = 39224, - [SMALL_STATE(924)] = 39232, - [SMALL_STATE(925)] = 39239, - [SMALL_STATE(926)] = 39246, - [SMALL_STATE(927)] = 39253, - [SMALL_STATE(928)] = 39260, - [SMALL_STATE(929)] = 39267, - [SMALL_STATE(930)] = 39274, - [SMALL_STATE(931)] = 39281, - [SMALL_STATE(932)] = 39288, - [SMALL_STATE(933)] = 39295, - [SMALL_STATE(934)] = 39302, - [SMALL_STATE(935)] = 39309, - [SMALL_STATE(936)] = 39316, - [SMALL_STATE(937)] = 39323, - [SMALL_STATE(938)] = 39330, - [SMALL_STATE(939)] = 39337, - [SMALL_STATE(940)] = 39344, - [SMALL_STATE(941)] = 39351, - [SMALL_STATE(942)] = 39358, - [SMALL_STATE(943)] = 39365, - [SMALL_STATE(944)] = 39372, - [SMALL_STATE(945)] = 39379, - [SMALL_STATE(946)] = 39386, - [SMALL_STATE(947)] = 39393, - [SMALL_STATE(948)] = 39400, - [SMALL_STATE(949)] = 39407, - [SMALL_STATE(950)] = 39414, - [SMALL_STATE(951)] = 39421, - [SMALL_STATE(952)] = 39428, - [SMALL_STATE(953)] = 39435, - [SMALL_STATE(954)] = 39442, - [SMALL_STATE(955)] = 39449, - [SMALL_STATE(956)] = 39456, - [SMALL_STATE(957)] = 39463, - [SMALL_STATE(958)] = 39470, - [SMALL_STATE(959)] = 39477, - [SMALL_STATE(960)] = 39484, - [SMALL_STATE(961)] = 39491, - [SMALL_STATE(962)] = 39498, - [SMALL_STATE(963)] = 39505, - [SMALL_STATE(964)] = 39512, - [SMALL_STATE(965)] = 39519, - [SMALL_STATE(966)] = 39526, - [SMALL_STATE(967)] = 39533, - [SMALL_STATE(968)] = 39540, - [SMALL_STATE(969)] = 39547, - [SMALL_STATE(970)] = 39554, - [SMALL_STATE(971)] = 39561, - [SMALL_STATE(972)] = 39568, - [SMALL_STATE(973)] = 39575, - [SMALL_STATE(974)] = 39582, - [SMALL_STATE(975)] = 39589, - [SMALL_STATE(976)] = 39596, - [SMALL_STATE(977)] = 39603, - [SMALL_STATE(978)] = 39610, - [SMALL_STATE(979)] = 39617, - [SMALL_STATE(980)] = 39624, - [SMALL_STATE(981)] = 39631, - [SMALL_STATE(982)] = 39638, + [SMALL_STATE(76)] = 81, + [SMALL_STATE(77)] = 164, + [SMALL_STATE(78)] = 243, + [SMALL_STATE(79)] = 315, + [SMALL_STATE(80)] = 389, + [SMALL_STATE(81)] = 461, + [SMALL_STATE(82)] = 533, + [SMALL_STATE(83)] = 604, + [SMALL_STATE(84)] = 671, + [SMALL_STATE(85)] = 738, + [SMALL_STATE(86)] = 805, + [SMALL_STATE(87)] = 872, + [SMALL_STATE(88)] = 939, + [SMALL_STATE(89)] = 1016, + [SMALL_STATE(90)] = 1083, + [SMALL_STATE(91)] = 1150, + [SMALL_STATE(92)] = 1217, + [SMALL_STATE(93)] = 1284, + [SMALL_STATE(94)] = 1351, + [SMALL_STATE(95)] = 1430, + [SMALL_STATE(96)] = 1545, + [SMALL_STATE(97)] = 1658, + [SMALL_STATE(98)] = 1773, + [SMALL_STATE(99)] = 1886, + [SMALL_STATE(100)] = 2001, + [SMALL_STATE(101)] = 2114, + [SMALL_STATE(102)] = 2217, + [SMALL_STATE(103)] = 2330, + [SMALL_STATE(104)] = 2435, + [SMALL_STATE(105)] = 2530, + [SMALL_STATE(106)] = 2621, + [SMALL_STATE(107)] = 2710, + [SMALL_STATE(108)] = 2795, + [SMALL_STATE(109)] = 2890, + [SMALL_STATE(110)] = 3003, + [SMALL_STATE(111)] = 3082, + [SMALL_STATE(112)] = 3195, + [SMALL_STATE(113)] = 3261, + [SMALL_STATE(114)] = 3327, + [SMALL_STATE(115)] = 3393, + [SMALL_STATE(116)] = 3459, + [SMALL_STATE(117)] = 3525, + [SMALL_STATE(118)] = 3591, + [SMALL_STATE(119)] = 3663, + [SMALL_STATE(120)] = 3735, + [SMALL_STATE(121)] = 3801, + [SMALL_STATE(122)] = 3871, + [SMALL_STATE(123)] = 3947, + [SMALL_STATE(124)] = 4013, + [SMALL_STATE(125)] = 4079, + [SMALL_STATE(126)] = 4149, + [SMALL_STATE(127)] = 4215, + [SMALL_STATE(128)] = 4281, + [SMALL_STATE(129)] = 4347, + [SMALL_STATE(130)] = 4413, + [SMALL_STATE(131)] = 4479, + [SMALL_STATE(132)] = 4545, + [SMALL_STATE(133)] = 4611, + [SMALL_STATE(134)] = 4677, + [SMALL_STATE(135)] = 4743, + [SMALL_STATE(136)] = 4813, + [SMALL_STATE(137)] = 4885, + [SMALL_STATE(138)] = 4957, + [SMALL_STATE(139)] = 5023, + [SMALL_STATE(140)] = 5089, + [SMALL_STATE(141)] = 5155, + [SMALL_STATE(142)] = 5221, + [SMALL_STATE(143)] = 5287, + [SMALL_STATE(144)] = 5353, + [SMALL_STATE(145)] = 5419, + [SMALL_STATE(146)] = 5485, + [SMALL_STATE(147)] = 5551, + [SMALL_STATE(148)] = 5617, + [SMALL_STATE(149)] = 5683, + [SMALL_STATE(150)] = 5749, + [SMALL_STATE(151)] = 5815, + [SMALL_STATE(152)] = 5881, + [SMALL_STATE(153)] = 5947, + [SMALL_STATE(154)] = 6013, + [SMALL_STATE(155)] = 6079, + [SMALL_STATE(156)] = 6145, + [SMALL_STATE(157)] = 6210, + [SMALL_STATE(158)] = 6275, + [SMALL_STATE(159)] = 6340, + [SMALL_STATE(160)] = 6405, + [SMALL_STATE(161)] = 6470, + [SMALL_STATE(162)] = 6535, + [SMALL_STATE(163)] = 6600, + [SMALL_STATE(164)] = 6665, + [SMALL_STATE(165)] = 6736, + [SMALL_STATE(166)] = 6801, + [SMALL_STATE(167)] = 6866, + [SMALL_STATE(168)] = 6931, + [SMALL_STATE(169)] = 6996, + [SMALL_STATE(170)] = 7061, + [SMALL_STATE(171)] = 7126, + [SMALL_STATE(172)] = 7191, + [SMALL_STATE(173)] = 7256, + [SMALL_STATE(174)] = 7321, + [SMALL_STATE(175)] = 7386, + [SMALL_STATE(176)] = 7451, + [SMALL_STATE(177)] = 7516, + [SMALL_STATE(178)] = 7581, + [SMALL_STATE(179)] = 7646, + [SMALL_STATE(180)] = 7711, + [SMALL_STATE(181)] = 7776, + [SMALL_STATE(182)] = 7841, + [SMALL_STATE(183)] = 7906, + [SMALL_STATE(184)] = 7974, + [SMALL_STATE(185)] = 8079, + [SMALL_STATE(186)] = 8186, + [SMALL_STATE(187)] = 8293, + [SMALL_STATE(188)] = 8400, + [SMALL_STATE(189)] = 8507, + [SMALL_STATE(190)] = 8612, + [SMALL_STATE(191)] = 8709, + [SMALL_STATE(192)] = 8784, + [SMALL_STATE(193)] = 8883, + [SMALL_STATE(194)] = 8972, + [SMALL_STATE(195)] = 9057, + [SMALL_STATE(196)] = 9140, + [SMALL_STATE(197)] = 9219, + [SMALL_STATE(198)] = 9308, + [SMALL_STATE(199)] = 9413, + [SMALL_STATE(200)] = 9518, + [SMALL_STATE(201)] = 9585, + [SMALL_STATE(202)] = 9650, + [SMALL_STATE(203)] = 9717, + [SMALL_STATE(204)] = 9784, + [SMALL_STATE(205)] = 9851, + [SMALL_STATE(206)] = 9946, + [SMALL_STATE(207)] = 10041, + [SMALL_STATE(208)] = 10136, + [SMALL_STATE(209)] = 10228, + [SMALL_STATE(210)] = 10298, + [SMALL_STATE(211)] = 10390, + [SMALL_STATE(212)] = 10482, + [SMALL_STATE(213)] = 10582, + [SMALL_STATE(214)] = 10672, + [SMALL_STATE(215)] = 10762, + [SMALL_STATE(216)] = 10852, + [SMALL_STATE(217)] = 10942, + [SMALL_STATE(218)] = 11042, + [SMALL_STATE(219)] = 11142, + [SMALL_STATE(220)] = 11234, + [SMALL_STATE(221)] = 11324, + [SMALL_STATE(222)] = 11424, + [SMALL_STATE(223)] = 11518, + [SMALL_STATE(224)] = 11602, + [SMALL_STATE(225)] = 11682, + [SMALL_STATE(226)] = 11760, + [SMALL_STATE(227)] = 11850, + [SMALL_STATE(228)] = 11940, + [SMALL_STATE(229)] = 12014, + [SMALL_STATE(230)] = 12098, + [SMALL_STATE(231)] = 12187, + [SMALL_STATE(232)] = 12274, + [SMALL_STATE(233)] = 12361, + [SMALL_STATE(234)] = 12450, + [SMALL_STATE(235)] = 12513, + [SMALL_STATE(236)] = 12602, + [SMALL_STATE(237)] = 12665, + [SMALL_STATE(238)] = 12754, + [SMALL_STATE(239)] = 12815, + [SMALL_STATE(240)] = 12904, + [SMALL_STATE(241)] = 12967, + [SMALL_STATE(242)] = 13056, + [SMALL_STATE(243)] = 13143, + [SMALL_STATE(244)] = 13230, + [SMALL_STATE(245)] = 13293, + [SMALL_STATE(246)] = 13395, + [SMALL_STATE(247)] = 13497, + [SMALL_STATE(248)] = 13575, + [SMALL_STATE(249)] = 13661, + [SMALL_STATE(250)] = 13747, + [SMALL_STATE(251)] = 13821, + [SMALL_STATE(252)] = 13887, + [SMALL_STATE(253)] = 13971, + [SMALL_STATE(254)] = 14057, + [SMALL_STATE(255)] = 14143, + [SMALL_STATE(256)] = 14237, + [SMALL_STATE(257)] = 14339, + [SMALL_STATE(258)] = 14423, + [SMALL_STATE(259)] = 14503, + [SMALL_STATE(260)] = 14595, + [SMALL_STATE(261)] = 14661, + [SMALL_STATE(262)] = 14747, + [SMALL_STATE(263)] = 14831, + [SMALL_STATE(264)] = 14933, + [SMALL_STATE(265)] = 15019, + [SMALL_STATE(266)] = 15103, + [SMALL_STATE(267)] = 15171, + [SMALL_STATE(268)] = 15273, + [SMALL_STATE(269)] = 15356, + [SMALL_STATE(270)] = 15439, + [SMALL_STATE(271)] = 15522, + [SMALL_STATE(272)] = 15605, + [SMALL_STATE(273)] = 15688, + [SMALL_STATE(274)] = 15789, + [SMALL_STATE(275)] = 15872, + [SMALL_STATE(276)] = 15933, + [SMALL_STATE(277)] = 16016, + [SMALL_STATE(278)] = 16099, + [SMALL_STATE(279)] = 16182, + [SMALL_STATE(280)] = 16265, + [SMALL_STATE(281)] = 16348, + [SMALL_STATE(282)] = 16449, + [SMALL_STATE(283)] = 16532, + [SMALL_STATE(284)] = 16615, + [SMALL_STATE(285)] = 16698, + [SMALL_STATE(286)] = 16781, + [SMALL_STATE(287)] = 16840, + [SMALL_STATE(288)] = 16941, + [SMALL_STATE(289)] = 17038, + [SMALL_STATE(290)] = 17121, + [SMALL_STATE(291)] = 17182, + [SMALL_STATE(292)] = 17283, + [SMALL_STATE(293)] = 17366, + [SMALL_STATE(294)] = 17467, + [SMALL_STATE(295)] = 17568, + [SMALL_STATE(296)] = 17669, + [SMALL_STATE(297)] = 17766, + [SMALL_STATE(298)] = 17849, + [SMALL_STATE(299)] = 17932, + [SMALL_STATE(300)] = 18012, + [SMALL_STATE(301)] = 18092, + [SMALL_STATE(302)] = 18172, + [SMALL_STATE(303)] = 18252, + [SMALL_STATE(304)] = 18332, + [SMALL_STATE(305)] = 18412, + [SMALL_STATE(306)] = 18508, + [SMALL_STATE(307)] = 18588, + [SMALL_STATE(308)] = 18668, + [SMALL_STATE(309)] = 18764, + [SMALL_STATE(310)] = 18844, + [SMALL_STATE(311)] = 18924, + [SMALL_STATE(312)] = 19004, + [SMALL_STATE(313)] = 19084, + [SMALL_STATE(314)] = 19164, + [SMALL_STATE(315)] = 19260, + [SMALL_STATE(316)] = 19340, + [SMALL_STATE(317)] = 19420, + [SMALL_STATE(318)] = 19500, + [SMALL_STATE(319)] = 19580, + [SMALL_STATE(320)] = 19660, + [SMALL_STATE(321)] = 19740, + [SMALL_STATE(322)] = 19820, + [SMALL_STATE(323)] = 19900, + [SMALL_STATE(324)] = 19980, + [SMALL_STATE(325)] = 20060, + [SMALL_STATE(326)] = 20140, + [SMALL_STATE(327)] = 20238, + [SMALL_STATE(328)] = 20318, + [SMALL_STATE(329)] = 20398, + [SMALL_STATE(330)] = 20494, + [SMALL_STATE(331)] = 20574, + [SMALL_STATE(332)] = 20654, + [SMALL_STATE(333)] = 20734, + [SMALL_STATE(334)] = 20814, + [SMALL_STATE(335)] = 20910, + [SMALL_STATE(336)] = 20990, + [SMALL_STATE(337)] = 21070, + [SMALL_STATE(338)] = 21150, + [SMALL_STATE(339)] = 21230, + [SMALL_STATE(340)] = 21310, + [SMALL_STATE(341)] = 21390, + [SMALL_STATE(342)] = 21470, + [SMALL_STATE(343)] = 21550, + [SMALL_STATE(344)] = 21630, + [SMALL_STATE(345)] = 21710, + [SMALL_STATE(346)] = 21806, + [SMALL_STATE(347)] = 21886, + [SMALL_STATE(348)] = 21966, + [SMALL_STATE(349)] = 22046, + [SMALL_STATE(350)] = 22126, + [SMALL_STATE(351)] = 22222, + [SMALL_STATE(352)] = 22302, + [SMALL_STATE(353)] = 22382, + [SMALL_STATE(354)] = 22462, + [SMALL_STATE(355)] = 22542, + [SMALL_STATE(356)] = 22622, + [SMALL_STATE(357)] = 22702, + [SMALL_STATE(358)] = 22782, + [SMALL_STATE(359)] = 22862, + [SMALL_STATE(360)] = 22942, + [SMALL_STATE(361)] = 23022, + [SMALL_STATE(362)] = 23102, + [SMALL_STATE(363)] = 23182, + [SMALL_STATE(364)] = 23262, + [SMALL_STATE(365)] = 23342, + [SMALL_STATE(366)] = 23422, + [SMALL_STATE(367)] = 23502, + [SMALL_STATE(368)] = 23582, + [SMALL_STATE(369)] = 23662, + [SMALL_STATE(370)] = 23742, + [SMALL_STATE(371)] = 23822, + [SMALL_STATE(372)] = 23902, + [SMALL_STATE(373)] = 23982, + [SMALL_STATE(374)] = 24062, + [SMALL_STATE(375)] = 24142, + [SMALL_STATE(376)] = 24222, + [SMALL_STATE(377)] = 24302, + [SMALL_STATE(378)] = 24382, + [SMALL_STATE(379)] = 24462, + [SMALL_STATE(380)] = 24542, + [SMALL_STATE(381)] = 24622, + [SMALL_STATE(382)] = 24702, + [SMALL_STATE(383)] = 24782, + [SMALL_STATE(384)] = 24862, + [SMALL_STATE(385)] = 24942, + [SMALL_STATE(386)] = 25022, + [SMALL_STATE(387)] = 25102, + [SMALL_STATE(388)] = 25182, + [SMALL_STATE(389)] = 25262, + [SMALL_STATE(390)] = 25358, + [SMALL_STATE(391)] = 25438, + [SMALL_STATE(392)] = 25518, + [SMALL_STATE(393)] = 25614, + [SMALL_STATE(394)] = 25694, + [SMALL_STATE(395)] = 25774, + [SMALL_STATE(396)] = 25854, + [SMALL_STATE(397)] = 25950, + [SMALL_STATE(398)] = 26030, + [SMALL_STATE(399)] = 26110, + [SMALL_STATE(400)] = 26190, + [SMALL_STATE(401)] = 26270, + [SMALL_STATE(402)] = 26350, + [SMALL_STATE(403)] = 26430, + [SMALL_STATE(404)] = 26510, + [SMALL_STATE(405)] = 26590, + [SMALL_STATE(406)] = 26670, + [SMALL_STATE(407)] = 26750, + [SMALL_STATE(408)] = 26830, + [SMALL_STATE(409)] = 26910, + [SMALL_STATE(410)] = 27005, + [SMALL_STATE(411)] = 27100, + [SMALL_STATE(412)] = 27195, + [SMALL_STATE(413)] = 27290, + [SMALL_STATE(414)] = 27385, + [SMALL_STATE(415)] = 27474, + [SMALL_STATE(416)] = 27569, + [SMALL_STATE(417)] = 27664, + [SMALL_STATE(418)] = 27759, + [SMALL_STATE(419)] = 27846, + [SMALL_STATE(420)] = 27925, + [SMALL_STATE(421)] = 28000, + [SMALL_STATE(422)] = 28073, + [SMALL_STATE(423)] = 28168, + [SMALL_STATE(424)] = 28263, + [SMALL_STATE(425)] = 28342, + [SMALL_STATE(426)] = 28437, + [SMALL_STATE(427)] = 28502, + [SMALL_STATE(428)] = 28597, + [SMALL_STATE(429)] = 28692, + [SMALL_STATE(430)] = 28787, + [SMALL_STATE(431)] = 28882, + [SMALL_STATE(432)] = 28977, + [SMALL_STATE(433)] = 29072, + [SMALL_STATE(434)] = 29167, + [SMALL_STATE(435)] = 29236, + [SMALL_STATE(436)] = 29331, + [SMALL_STATE(437)] = 29372, + [SMALL_STATE(438)] = 29419, + [SMALL_STATE(439)] = 29460, + [SMALL_STATE(440)] = 29500, + [SMALL_STATE(441)] = 29542, + [SMALL_STATE(442)] = 29581, + [SMALL_STATE(443)] = 29620, + [SMALL_STATE(444)] = 29659, + [SMALL_STATE(445)] = 29698, + [SMALL_STATE(446)] = 29739, + [SMALL_STATE(447)] = 29778, + [SMALL_STATE(448)] = 29817, + [SMALL_STATE(449)] = 29856, + [SMALL_STATE(450)] = 29895, + [SMALL_STATE(451)] = 29934, + [SMALL_STATE(452)] = 29973, + [SMALL_STATE(453)] = 30012, + [SMALL_STATE(454)] = 30051, + [SMALL_STATE(455)] = 30097, + [SMALL_STATE(456)] = 30141, + [SMALL_STATE(457)] = 30199, + [SMALL_STATE(458)] = 30257, + [SMALL_STATE(459)] = 30290, + [SMALL_STATE(460)] = 30323, + [SMALL_STATE(461)] = 30356, + [SMALL_STATE(462)] = 30389, + [SMALL_STATE(463)] = 30434, + [SMALL_STATE(464)] = 30467, + [SMALL_STATE(465)] = 30500, + [SMALL_STATE(466)] = 30543, + [SMALL_STATE(467)] = 30586, + [SMALL_STATE(468)] = 30629, + [SMALL_STATE(469)] = 30672, + [SMALL_STATE(470)] = 30705, + [SMALL_STATE(471)] = 30738, + [SMALL_STATE(472)] = 30771, + [SMALL_STATE(473)] = 30804, + [SMALL_STATE(474)] = 30847, + [SMALL_STATE(475)] = 30877, + [SMALL_STATE(476)] = 30907, + [SMALL_STATE(477)] = 30937, + [SMALL_STATE(478)] = 30967, + [SMALL_STATE(479)] = 30997, + [SMALL_STATE(480)] = 31027, + [SMALL_STATE(481)] = 31057, + [SMALL_STATE(482)] = 31087, + [SMALL_STATE(483)] = 31117, + [SMALL_STATE(484)] = 31144, + [SMALL_STATE(485)] = 31171, + [SMALL_STATE(486)] = 31198, + [SMALL_STATE(487)] = 31225, + [SMALL_STATE(488)] = 31252, + [SMALL_STATE(489)] = 31279, + [SMALL_STATE(490)] = 31306, + [SMALL_STATE(491)] = 31333, + [SMALL_STATE(492)] = 31360, + [SMALL_STATE(493)] = 31387, + [SMALL_STATE(494)] = 31414, + [SMALL_STATE(495)] = 31441, + [SMALL_STATE(496)] = 31477, + [SMALL_STATE(497)] = 31521, + [SMALL_STATE(498)] = 31555, + [SMALL_STATE(499)] = 31599, + [SMALL_STATE(500)] = 31643, + [SMALL_STATE(501)] = 31687, + [SMALL_STATE(502)] = 31731, + [SMALL_STATE(503)] = 31775, + [SMALL_STATE(504)] = 31819, + [SMALL_STATE(505)] = 31863, + [SMALL_STATE(506)] = 31890, + [SMALL_STATE(507)] = 31919, + [SMALL_STATE(508)] = 31948, + [SMALL_STATE(509)] = 31977, + [SMALL_STATE(510)] = 32006, + [SMALL_STATE(511)] = 32041, + [SMALL_STATE(512)] = 32070, + [SMALL_STATE(513)] = 32099, + [SMALL_STATE(514)] = 32131, + [SMALL_STATE(515)] = 32151, + [SMALL_STATE(516)] = 32177, + [SMALL_STATE(517)] = 32201, + [SMALL_STATE(518)] = 32227, + [SMALL_STATE(519)] = 32255, + [SMALL_STATE(520)] = 32275, + [SMALL_STATE(521)] = 32303, + [SMALL_STATE(522)] = 32331, + [SMALL_STATE(523)] = 32359, + [SMALL_STATE(524)] = 32391, + [SMALL_STATE(525)] = 32419, + [SMALL_STATE(526)] = 32447, + [SMALL_STATE(527)] = 32467, + [SMALL_STATE(528)] = 32495, + [SMALL_STATE(529)] = 32523, + [SMALL_STATE(530)] = 32543, + [SMALL_STATE(531)] = 32567, + [SMALL_STATE(532)] = 32599, + [SMALL_STATE(533)] = 32627, + [SMALL_STATE(534)] = 32659, + [SMALL_STATE(535)] = 32687, + [SMALL_STATE(536)] = 32716, + [SMALL_STATE(537)] = 32745, + [SMALL_STATE(538)] = 32764, + [SMALL_STATE(539)] = 32789, + [SMALL_STATE(540)] = 32812, + [SMALL_STATE(541)] = 32841, + [SMALL_STATE(542)] = 32870, + [SMALL_STATE(543)] = 32899, + [SMALL_STATE(544)] = 32928, + [SMALL_STATE(545)] = 32957, + [SMALL_STATE(546)] = 32986, + [SMALL_STATE(547)] = 33009, + [SMALL_STATE(548)] = 33038, + [SMALL_STATE(549)] = 33063, + [SMALL_STATE(550)] = 33086, + [SMALL_STATE(551)] = 33105, + [SMALL_STATE(552)] = 33130, + [SMALL_STATE(553)] = 33153, + [SMALL_STATE(554)] = 33176, + [SMALL_STATE(555)] = 33205, + [SMALL_STATE(556)] = 33234, + [SMALL_STATE(557)] = 33259, + [SMALL_STATE(558)] = 33278, + [SMALL_STATE(559)] = 33303, + [SMALL_STATE(560)] = 33332, + [SMALL_STATE(561)] = 33358, + [SMALL_STATE(562)] = 33384, + [SMALL_STATE(563)] = 33410, + [SMALL_STATE(564)] = 33436, + [SMALL_STATE(565)] = 33462, + [SMALL_STATE(566)] = 33488, + [SMALL_STATE(567)] = 33514, + [SMALL_STATE(568)] = 33540, + [SMALL_STATE(569)] = 33566, + [SMALL_STATE(570)] = 33592, + [SMALL_STATE(571)] = 33618, + [SMALL_STATE(572)] = 33644, + [SMALL_STATE(573)] = 33670, + [SMALL_STATE(574)] = 33696, + [SMALL_STATE(575)] = 33722, + [SMALL_STATE(576)] = 33748, + [SMALL_STATE(577)] = 33774, + [SMALL_STATE(578)] = 33800, + [SMALL_STATE(579)] = 33826, + [SMALL_STATE(580)] = 33852, + [SMALL_STATE(581)] = 33878, + [SMALL_STATE(582)] = 33904, + [SMALL_STATE(583)] = 33930, + [SMALL_STATE(584)] = 33956, + [SMALL_STATE(585)] = 33982, + [SMALL_STATE(586)] = 34008, + [SMALL_STATE(587)] = 34034, + [SMALL_STATE(588)] = 34060, + [SMALL_STATE(589)] = 34086, + [SMALL_STATE(590)] = 34112, + [SMALL_STATE(591)] = 34138, + [SMALL_STATE(592)] = 34164, + [SMALL_STATE(593)] = 34190, + [SMALL_STATE(594)] = 34216, + [SMALL_STATE(595)] = 34242, + [SMALL_STATE(596)] = 34268, + [SMALL_STATE(597)] = 34294, + [SMALL_STATE(598)] = 34320, + [SMALL_STATE(599)] = 34346, + [SMALL_STATE(600)] = 34372, + [SMALL_STATE(601)] = 34398, + [SMALL_STATE(602)] = 34424, + [SMALL_STATE(603)] = 34450, + [SMALL_STATE(604)] = 34476, + [SMALL_STATE(605)] = 34502, + [SMALL_STATE(606)] = 34528, + [SMALL_STATE(607)] = 34554, + [SMALL_STATE(608)] = 34580, + [SMALL_STATE(609)] = 34606, + [SMALL_STATE(610)] = 34632, + [SMALL_STATE(611)] = 34658, + [SMALL_STATE(612)] = 34684, + [SMALL_STATE(613)] = 34710, + [SMALL_STATE(614)] = 34736, + [SMALL_STATE(615)] = 34762, + [SMALL_STATE(616)] = 34788, + [SMALL_STATE(617)] = 34814, + [SMALL_STATE(618)] = 34840, + [SMALL_STATE(619)] = 34866, + [SMALL_STATE(620)] = 34892, + [SMALL_STATE(621)] = 34909, + [SMALL_STATE(622)] = 34926, + [SMALL_STATE(623)] = 34943, + [SMALL_STATE(624)] = 34960, + [SMALL_STATE(625)] = 34977, + [SMALL_STATE(626)] = 34994, + [SMALL_STATE(627)] = 35011, + [SMALL_STATE(628)] = 35028, + [SMALL_STATE(629)] = 35045, + [SMALL_STATE(630)] = 35062, + [SMALL_STATE(631)] = 35079, + [SMALL_STATE(632)] = 35096, + [SMALL_STATE(633)] = 35113, + [SMALL_STATE(634)] = 35130, + [SMALL_STATE(635)] = 35147, + [SMALL_STATE(636)] = 35164, + [SMALL_STATE(637)] = 35181, + [SMALL_STATE(638)] = 35198, + [SMALL_STATE(639)] = 35215, + [SMALL_STATE(640)] = 35232, + [SMALL_STATE(641)] = 35249, + [SMALL_STATE(642)] = 35266, + [SMALL_STATE(643)] = 35283, + [SMALL_STATE(644)] = 35300, + [SMALL_STATE(645)] = 35317, + [SMALL_STATE(646)] = 35334, + [SMALL_STATE(647)] = 35351, + [SMALL_STATE(648)] = 35368, + [SMALL_STATE(649)] = 35385, + [SMALL_STATE(650)] = 35402, + [SMALL_STATE(651)] = 35419, + [SMALL_STATE(652)] = 35436, + [SMALL_STATE(653)] = 35453, + [SMALL_STATE(654)] = 35470, + [SMALL_STATE(655)] = 35487, + [SMALL_STATE(656)] = 35504, + [SMALL_STATE(657)] = 35521, + [SMALL_STATE(658)] = 35538, + [SMALL_STATE(659)] = 35555, + [SMALL_STATE(660)] = 35572, + [SMALL_STATE(661)] = 35589, + [SMALL_STATE(662)] = 35606, + [SMALL_STATE(663)] = 35623, + [SMALL_STATE(664)] = 35640, + [SMALL_STATE(665)] = 35657, + [SMALL_STATE(666)] = 35674, + [SMALL_STATE(667)] = 35691, + [SMALL_STATE(668)] = 35708, + [SMALL_STATE(669)] = 35725, + [SMALL_STATE(670)] = 35742, + [SMALL_STATE(671)] = 35759, + [SMALL_STATE(672)] = 35776, + [SMALL_STATE(673)] = 35793, + [SMALL_STATE(674)] = 35810, + [SMALL_STATE(675)] = 35827, + [SMALL_STATE(676)] = 35844, + [SMALL_STATE(677)] = 35861, + [SMALL_STATE(678)] = 35878, + [SMALL_STATE(679)] = 35895, + [SMALL_STATE(680)] = 35912, + [SMALL_STATE(681)] = 35929, + [SMALL_STATE(682)] = 35946, + [SMALL_STATE(683)] = 35963, + [SMALL_STATE(684)] = 35980, + [SMALL_STATE(685)] = 35997, + [SMALL_STATE(686)] = 36014, + [SMALL_STATE(687)] = 36031, + [SMALL_STATE(688)] = 36048, + [SMALL_STATE(689)] = 36065, + [SMALL_STATE(690)] = 36082, + [SMALL_STATE(691)] = 36099, + [SMALL_STATE(692)] = 36116, + [SMALL_STATE(693)] = 36133, + [SMALL_STATE(694)] = 36153, + [SMALL_STATE(695)] = 36177, + [SMALL_STATE(696)] = 36208, + [SMALL_STATE(697)] = 36227, + [SMALL_STATE(698)] = 36258, + [SMALL_STATE(699)] = 36279, + [SMALL_STATE(700)] = 36304, + [SMALL_STATE(701)] = 36335, + [SMALL_STATE(702)] = 36366, + [SMALL_STATE(703)] = 36385, + [SMALL_STATE(704)] = 36416, + [SMALL_STATE(705)] = 36447, + [SMALL_STATE(706)] = 36466, + [SMALL_STATE(707)] = 36491, + [SMALL_STATE(708)] = 36522, + [SMALL_STATE(709)] = 36553, + [SMALL_STATE(710)] = 36567, + [SMALL_STATE(711)] = 36581, + [SMALL_STATE(712)] = 36609, + [SMALL_STATE(713)] = 36631, + [SMALL_STATE(714)] = 36645, + [SMALL_STATE(715)] = 36673, + [SMALL_STATE(716)] = 36695, + [SMALL_STATE(717)] = 36717, + [SMALL_STATE(718)] = 36739, + [SMALL_STATE(719)] = 36761, + [SMALL_STATE(720)] = 36779, + [SMALL_STATE(721)] = 36797, + [SMALL_STATE(722)] = 36817, + [SMALL_STATE(723)] = 36831, + [SMALL_STATE(724)] = 36845, + [SMALL_STATE(725)] = 36859, + [SMALL_STATE(726)] = 36879, + [SMALL_STATE(727)] = 36893, + [SMALL_STATE(728)] = 36915, + [SMALL_STATE(729)] = 36929, + [SMALL_STATE(730)] = 36943, + [SMALL_STATE(731)] = 36957, + [SMALL_STATE(732)] = 36970, + [SMALL_STATE(733)] = 36989, + [SMALL_STATE(734)] = 37014, + [SMALL_STATE(735)] = 37039, + [SMALL_STATE(736)] = 37052, + [SMALL_STATE(737)] = 37071, + [SMALL_STATE(738)] = 37096, + [SMALL_STATE(739)] = 37121, + [SMALL_STATE(740)] = 37146, + [SMALL_STATE(741)] = 37159, + [SMALL_STATE(742)] = 37184, + [SMALL_STATE(743)] = 37197, + [SMALL_STATE(744)] = 37222, + [SMALL_STATE(745)] = 37241, + [SMALL_STATE(746)] = 37254, + [SMALL_STATE(747)] = 37273, + [SMALL_STATE(748)] = 37298, + [SMALL_STATE(749)] = 37311, + [SMALL_STATE(750)] = 37330, + [SMALL_STATE(751)] = 37352, + [SMALL_STATE(752)] = 37374, + [SMALL_STATE(753)] = 37396, + [SMALL_STATE(754)] = 37416, + [SMALL_STATE(755)] = 37438, + [SMALL_STATE(756)] = 37460, + [SMALL_STATE(757)] = 37482, + [SMALL_STATE(758)] = 37504, + [SMALL_STATE(759)] = 37526, + [SMALL_STATE(760)] = 37548, + [SMALL_STATE(761)] = 37566, + [SMALL_STATE(762)] = 37588, + [SMALL_STATE(763)] = 37600, + [SMALL_STATE(764)] = 37612, + [SMALL_STATE(765)] = 37634, + [SMALL_STATE(766)] = 37646, + [SMALL_STATE(767)] = 37668, + [SMALL_STATE(768)] = 37690, + [SMALL_STATE(769)] = 37712, + [SMALL_STATE(770)] = 37732, + [SMALL_STATE(771)] = 37744, + [SMALL_STATE(772)] = 37756, + [SMALL_STATE(773)] = 37778, + [SMALL_STATE(774)] = 37790, + [SMALL_STATE(775)] = 37802, + [SMALL_STATE(776)] = 37814, + [SMALL_STATE(777)] = 37836, + [SMALL_STATE(778)] = 37858, + [SMALL_STATE(779)] = 37876, + [SMALL_STATE(780)] = 37894, + [SMALL_STATE(781)] = 37906, + [SMALL_STATE(782)] = 37925, + [SMALL_STATE(783)] = 37940, + [SMALL_STATE(784)] = 37959, + [SMALL_STATE(785)] = 37978, + [SMALL_STATE(786)] = 37995, + [SMALL_STATE(787)] = 38012, + [SMALL_STATE(788)] = 38031, + [SMALL_STATE(789)] = 38050, + [SMALL_STATE(790)] = 38069, + [SMALL_STATE(791)] = 38088, + [SMALL_STATE(792)] = 38107, + [SMALL_STATE(793)] = 38121, + [SMALL_STATE(794)] = 38135, + [SMALL_STATE(795)] = 38151, + [SMALL_STATE(796)] = 38167, + [SMALL_STATE(797)] = 38177, + [SMALL_STATE(798)] = 38187, + [SMALL_STATE(799)] = 38203, + [SMALL_STATE(800)] = 38219, + [SMALL_STATE(801)] = 38233, + [SMALL_STATE(802)] = 38249, + [SMALL_STATE(803)] = 38265, + [SMALL_STATE(804)] = 38277, + [SMALL_STATE(805)] = 38293, + [SMALL_STATE(806)] = 38307, + [SMALL_STATE(807)] = 38321, + [SMALL_STATE(808)] = 38331, + [SMALL_STATE(809)] = 38347, + [SMALL_STATE(810)] = 38363, + [SMALL_STATE(811)] = 38373, + [SMALL_STATE(812)] = 38383, + [SMALL_STATE(813)] = 38399, + [SMALL_STATE(814)] = 38413, + [SMALL_STATE(815)] = 38429, + [SMALL_STATE(816)] = 38443, + [SMALL_STATE(817)] = 38459, + [SMALL_STATE(818)] = 38475, + [SMALL_STATE(819)] = 38491, + [SMALL_STATE(820)] = 38504, + [SMALL_STATE(821)] = 38517, + [SMALL_STATE(822)] = 38530, + [SMALL_STATE(823)] = 38543, + [SMALL_STATE(824)] = 38556, + [SMALL_STATE(825)] = 38569, + [SMALL_STATE(826)] = 38582, + [SMALL_STATE(827)] = 38595, + [SMALL_STATE(828)] = 38608, + [SMALL_STATE(829)] = 38621, + [SMALL_STATE(830)] = 38634, + [SMALL_STATE(831)] = 38647, + [SMALL_STATE(832)] = 38660, + [SMALL_STATE(833)] = 38673, + [SMALL_STATE(834)] = 38686, + [SMALL_STATE(835)] = 38699, + [SMALL_STATE(836)] = 38712, + [SMALL_STATE(837)] = 38725, + [SMALL_STATE(838)] = 38738, + [SMALL_STATE(839)] = 38751, + [SMALL_STATE(840)] = 38764, + [SMALL_STATE(841)] = 38777, + [SMALL_STATE(842)] = 38790, + [SMALL_STATE(843)] = 38803, + [SMALL_STATE(844)] = 38816, + [SMALL_STATE(845)] = 38829, + [SMALL_STATE(846)] = 38842, + [SMALL_STATE(847)] = 38855, + [SMALL_STATE(848)] = 38868, + [SMALL_STATE(849)] = 38881, + [SMALL_STATE(850)] = 38894, + [SMALL_STATE(851)] = 38907, + [SMALL_STATE(852)] = 38920, + [SMALL_STATE(853)] = 38929, + [SMALL_STATE(854)] = 38942, + [SMALL_STATE(855)] = 38955, + [SMALL_STATE(856)] = 38968, + [SMALL_STATE(857)] = 38981, + [SMALL_STATE(858)] = 38994, + [SMALL_STATE(859)] = 39007, + [SMALL_STATE(860)] = 39020, + [SMALL_STATE(861)] = 39033, + [SMALL_STATE(862)] = 39046, + [SMALL_STATE(863)] = 39059, + [SMALL_STATE(864)] = 39072, + [SMALL_STATE(865)] = 39085, + [SMALL_STATE(866)] = 39098, + [SMALL_STATE(867)] = 39111, + [SMALL_STATE(868)] = 39124, + [SMALL_STATE(869)] = 39137, + [SMALL_STATE(870)] = 39150, + [SMALL_STATE(871)] = 39163, + [SMALL_STATE(872)] = 39176, + [SMALL_STATE(873)] = 39189, + [SMALL_STATE(874)] = 39202, + [SMALL_STATE(875)] = 39215, + [SMALL_STATE(876)] = 39228, + [SMALL_STATE(877)] = 39239, + [SMALL_STATE(878)] = 39252, + [SMALL_STATE(879)] = 39265, + [SMALL_STATE(880)] = 39278, + [SMALL_STATE(881)] = 39291, + [SMALL_STATE(882)] = 39304, + [SMALL_STATE(883)] = 39317, + [SMALL_STATE(884)] = 39330, + [SMALL_STATE(885)] = 39343, + [SMALL_STATE(886)] = 39354, + [SMALL_STATE(887)] = 39367, + [SMALL_STATE(888)] = 39380, + [SMALL_STATE(889)] = 39393, + [SMALL_STATE(890)] = 39406, + [SMALL_STATE(891)] = 39419, + [SMALL_STATE(892)] = 39432, + [SMALL_STATE(893)] = 39445, + [SMALL_STATE(894)] = 39458, + [SMALL_STATE(895)] = 39471, + [SMALL_STATE(896)] = 39484, + [SMALL_STATE(897)] = 39497, + [SMALL_STATE(898)] = 39510, + [SMALL_STATE(899)] = 39520, + [SMALL_STATE(900)] = 39530, + [SMALL_STATE(901)] = 39540, + [SMALL_STATE(902)] = 39548, + [SMALL_STATE(903)] = 39558, + [SMALL_STATE(904)] = 39568, + [SMALL_STATE(905)] = 39578, + [SMALL_STATE(906)] = 39588, + [SMALL_STATE(907)] = 39596, + [SMALL_STATE(908)] = 39606, + [SMALL_STATE(909)] = 39616, + [SMALL_STATE(910)] = 39626, + [SMALL_STATE(911)] = 39636, + [SMALL_STATE(912)] = 39646, + [SMALL_STATE(913)] = 39654, + [SMALL_STATE(914)] = 39662, + [SMALL_STATE(915)] = 39672, + [SMALL_STATE(916)] = 39682, + [SMALL_STATE(917)] = 39692, + [SMALL_STATE(918)] = 39702, + [SMALL_STATE(919)] = 39712, + [SMALL_STATE(920)] = 39722, + [SMALL_STATE(921)] = 39730, + [SMALL_STATE(922)] = 39740, + [SMALL_STATE(923)] = 39748, + [SMALL_STATE(924)] = 39756, + [SMALL_STATE(925)] = 39766, + [SMALL_STATE(926)] = 39774, + [SMALL_STATE(927)] = 39784, + [SMALL_STATE(928)] = 39794, + [SMALL_STATE(929)] = 39804, + [SMALL_STATE(930)] = 39814, + [SMALL_STATE(931)] = 39824, + [SMALL_STATE(932)] = 39834, + [SMALL_STATE(933)] = 39844, + [SMALL_STATE(934)] = 39852, + [SMALL_STATE(935)] = 39862, + [SMALL_STATE(936)] = 39872, + [SMALL_STATE(937)] = 39882, + [SMALL_STATE(938)] = 39892, + [SMALL_STATE(939)] = 39902, + [SMALL_STATE(940)] = 39909, + [SMALL_STATE(941)] = 39916, + [SMALL_STATE(942)] = 39923, + [SMALL_STATE(943)] = 39930, + [SMALL_STATE(944)] = 39937, + [SMALL_STATE(945)] = 39944, + [SMALL_STATE(946)] = 39951, + [SMALL_STATE(947)] = 39958, + [SMALL_STATE(948)] = 39965, + [SMALL_STATE(949)] = 39972, + [SMALL_STATE(950)] = 39979, + [SMALL_STATE(951)] = 39986, + [SMALL_STATE(952)] = 39993, + [SMALL_STATE(953)] = 40000, + [SMALL_STATE(954)] = 40007, + [SMALL_STATE(955)] = 40014, + [SMALL_STATE(956)] = 40021, + [SMALL_STATE(957)] = 40028, + [SMALL_STATE(958)] = 40035, + [SMALL_STATE(959)] = 40042, + [SMALL_STATE(960)] = 40049, + [SMALL_STATE(961)] = 40056, + [SMALL_STATE(962)] = 40063, + [SMALL_STATE(963)] = 40070, + [SMALL_STATE(964)] = 40077, + [SMALL_STATE(965)] = 40084, + [SMALL_STATE(966)] = 40091, + [SMALL_STATE(967)] = 40098, + [SMALL_STATE(968)] = 40105, + [SMALL_STATE(969)] = 40112, + [SMALL_STATE(970)] = 40119, + [SMALL_STATE(971)] = 40126, + [SMALL_STATE(972)] = 40133, + [SMALL_STATE(973)] = 40140, + [SMALL_STATE(974)] = 40147, + [SMALL_STATE(975)] = 40154, + [SMALL_STATE(976)] = 40161, + [SMALL_STATE(977)] = 40168, + [SMALL_STATE(978)] = 40175, + [SMALL_STATE(979)] = 40182, + [SMALL_STATE(980)] = 40189, + [SMALL_STATE(981)] = 40196, + [SMALL_STATE(982)] = 40203, + [SMALL_STATE(983)] = 40210, + [SMALL_STATE(984)] = 40217, + [SMALL_STATE(985)] = 40224, + [SMALL_STATE(986)] = 40231, + [SMALL_STATE(987)] = 40238, + [SMALL_STATE(988)] = 40245, + [SMALL_STATE(989)] = 40252, + [SMALL_STATE(990)] = 40259, + [SMALL_STATE(991)] = 40266, + [SMALL_STATE(992)] = 40273, + [SMALL_STATE(993)] = 40280, + [SMALL_STATE(994)] = 40287, + [SMALL_STATE(995)] = 40294, + [SMALL_STATE(996)] = 40301, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -43588,1309 +44223,1305 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(940), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(982), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(984), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(962), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 25), [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 25), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 38), [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 38), [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 25), REDUCE(sym_union_type, 5, 0, 38), [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 4), [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 4), [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 1, 0, 18), [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_instance_argument, 1, 0, 18), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(591), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(566), [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_hint, 1, 100, 4), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 47), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_operator, 5, 0, 94), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_operator, 5, 0, 94), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 28), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 28), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2, 0, 29), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2, 0, 29), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 46), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 46), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), SHIFT(461), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_assignment, 3, 0, 50), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_assignment, 3, 0, 50), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_lt_gt, 3, 0, 47), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_lt_gt, 3, 0, 47), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(603), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 10), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 10), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 20), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 20), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 4, 103, 0), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 4, 103, 0), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 3, 1, 40), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 3, 1, 40), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 2, 103, 0), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 2, 0, 0), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 2, 0, 0), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_as_operator, 3, 0, 51), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_as_operator, 3, 0, 51), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, 0, 75), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, 0, 75), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_type_operator, 3, 0, 52), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_type_operator, 3, 0, 52), - [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 2, 103, 0), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 4, 1, 65), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 4, 1, 65), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_instantiatedTs, 2, 104, 8), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instantiatedTs, 2, 104, 8), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 25), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 25), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_callable_type, 3, 0, 26), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_callable_type, 3, 0, 26), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 38), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 38), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 25), REDUCE(sym_union_type, 4, 0, 38), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 5, 0, 0), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 5, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 1, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 1, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 20), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 20), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 4, 0, 0), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 4, 0, 0), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 4, 0, 0), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 4, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 4, 0, 0), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 4, 0, 0), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 5, 0, 0), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 5, 0, 0), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 5, 0, 0), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 5, 0, 0), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 93), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 93), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 2, 0, 0), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 2, 0, 0), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 3, 0, 0), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 3, 0, 0), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 11), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 11), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 1, 99, 12), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 1, 99, 12), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 2, 0, 0), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 2, 0, 0), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 99, 32), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 99, 32), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_null_operator, 2, 0, 10), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_null_operator, 2, 0, 10), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 30), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 30), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 2, 0, 31), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 2, 0, 31), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 3, 0, 0), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 3, 0, 0), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 20), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 20), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 3, 0, 0), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 3, 0, 0), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_access, 3, 0, 49), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_access, 3, 0, 49), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(594), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), SHIFT(451), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 129), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 129), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 69), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 69), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 133), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 133), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 137), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 137), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annotation_arguments_repeat1, 1, 0, 0), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 1, 0, 0), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), SHIFT(463), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 28), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 28), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2, 0, 29), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2, 0, 29), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 46), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 46), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 47), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), SHIFT(467), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_assignment, 3, 0, 50), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_assignment, 3, 0, 50), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_lt_gt, 3, 0, 47), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_lt_gt, 3, 0, 47), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_operator, 5, 0, 94), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_operator, 5, 0, 94), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(610), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_instantiatedTs, 2, 104, 8), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instantiatedTs, 2, 104, 8), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 38), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 38), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 25), REDUCE(sym_union_type, 4, 0, 38), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_as_operator, 3, 0, 51), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_as_operator, 3, 0, 51), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_type_operator, 3, 0, 52), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_type_operator, 3, 0, 52), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, 0, 75), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, 0, 75), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 2, 103, 0), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 2, 103, 0), + [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 10), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 10), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 20), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 20), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 2, 0, 0), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 2, 0, 0), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 4, 103, 0), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 4, 103, 0), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 3, 1, 40), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 3, 1, 40), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 4, 1, 65), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 4, 1, 65), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 25), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 25), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_callable_type, 3, 0, 26), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_callable_type, 3, 0, 26), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 5, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 5, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 4, 0, 0), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 4, 0, 0), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 4, 0, 0), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 4, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 4, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 4, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 2, 0, 0), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 2, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 5, 0, 0), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 5, 0, 0), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 5, 0, 0), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 5, 0, 0), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 93), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 93), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 2, 0, 0), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 2, 0, 0), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 3, 0, 0), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 3, 0, 0), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_null_operator, 2, 0, 10), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_null_operator, 2, 0, 10), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 30), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 30), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 2, 0, 31), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 2, 0, 31), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 99, 32), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 99, 32), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 20), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 20), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 3, 0, 0), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 3, 0, 0), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 3, 0, 0), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 3, 0, 0), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_access, 3, 0, 49), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_access, 3, 0, 49), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 1, 0, 0), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 1, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 11), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 11), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 20), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 20), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 1, 99, 12), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 1, 99, 12), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(602), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(612), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 129), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 129), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 69), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 69), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 137), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 137), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 133), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 133), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), SHIFT(473), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 95), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 16), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 54), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 59), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(599), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(392), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 2, 0, 18), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 5, 0, 105), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 5, 0, 105), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tensor_expression_repeat1, 2, 0, 0), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 60), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 3, 0, 74), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 2, 0, 76), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 87), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 6, 0, 117), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 1, 0, 48), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 124), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 5, 0, 105), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 4, 0, 107), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 3, 100, 0), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 100, 0), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4, 100, 0), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4, 100, 0), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 108), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 108), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 120), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 120), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 140), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 140), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, 0, 110), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, 0, 110), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 119), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 119), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 120), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 120), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 138), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 138), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 4, 0, 139), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 4, 0, 139), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 1, 0, 109), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 1, 0, 109), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 122), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 122), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(966), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(893), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(445), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(553), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(536), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(551), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 25), REDUCE(sym_union_type, 5, 0, 38), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 132), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 132), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 134), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 134), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 131), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 131), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 136), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 136), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 135), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 135), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 126), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 126), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 127), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 127), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 130), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 130), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 128), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 128), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 130), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 130), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 128), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 128), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 134), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 134), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 129), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 129), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 131), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 131), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 132), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 132), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 133), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 133), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 135), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 135), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 136), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 136), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 137), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 137), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 14), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 3), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 79), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 37), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 96), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 61), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, 0, 15), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 4, 0, 17), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2, 0, 0), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 35), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 77), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 78), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 36), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 53), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 55), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 98), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), SHIFT_REPEAT(529), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 34), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 2, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 4, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 7, 0, 0), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 63), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 7), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 5, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 6, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 100), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 6, 0, 53), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tolk_required_version, 2, 0, 1), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 54), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_directive, 2, 0, 2), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 55), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 17), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 8, 0, 96), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 121), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 6), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 80), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 81), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 56), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 57), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 82), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 8, 0, 112), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 58), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 35), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 83), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 84), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 59), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 36), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 61), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 85), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 62), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 4, 0, 0), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 5, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 88), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 114), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 90), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 91), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 92), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 66), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 41), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 21), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 22), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 23), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 24), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 111), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 77), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 115), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 78), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 97), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 33), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 8, 0, 116), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 101), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 102), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 3, 0, 0), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 43), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 103), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 104), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 70), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 71), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 27), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 72), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 73), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 44), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 45), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 15), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 8, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 19), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 16), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 8, 0, 95), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 3), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 64), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_list, 1, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 3, 0, 64), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 1, 0, 18), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 18), REDUCE(sym__type_hint, 1, 100, 4), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 2, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 5), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 13), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 4, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 3, 0, 0), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 64), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 106), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 118), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 86), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 89), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 5, 0, 118), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 3, 0, 106), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 106), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 118), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 3, 0, 106), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 5, 0, 118), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 60), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 18), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 54), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 59), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 16), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 47), SHIFT(468), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 2, 0, 18), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 5, 0, 105), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 5, 0, 105), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 4, 0, 107), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 3, 0, 74), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 2, 0, 76), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 87), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 5, 0, 105), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 6, 0, 117), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 124), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 1, 0, 48), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 60), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4, 100, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4, 100, 0), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 108), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 108), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 3, 100, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 100, 0), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 120), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 120), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 119), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 119), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 120), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 120), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 138), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 138), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 4, 0, 139), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 4, 0, 139), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 140), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 140), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 1, 0, 109), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 1, 0, 109), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, 0, 110), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, 0, 110), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 122), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 122), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(961), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(914), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 25), REDUCE(sym_union_type, 5, 0, 38), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(453), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(588), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(555), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(540), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 136), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 136), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 128), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 128), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 135), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 135), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 134), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 134), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 130), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 130), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 127), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 127), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 131), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 131), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 126), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 126), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 132), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 132), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 136), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 136), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 134), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 134), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 132), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 132), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 133), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 133), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 128), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 128), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 129), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 129), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 130), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 130), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 131), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 131), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 135), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 135), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 137), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 137), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 14), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 37), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 79), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 3), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 53), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 61), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 77), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 78), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, 0, 15), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 35), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 36), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 55), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 96), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 4, 0, 17), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 34), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), SHIFT_REPEAT(546), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 7, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 63), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 6, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 7), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 98), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 5, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 2, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 72), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 73), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 44), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 6, 0, 53), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 54), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 55), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 6), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 80), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 81), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 45), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 56), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 82), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 83), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 84), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 59), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 61), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 85), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 5, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 88), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 57), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 90), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 91), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 92), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tolk_required_version, 2, 0, 1), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 58), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 35), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 36), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 77), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 33), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 78), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 62), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 97), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 100), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 101), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 102), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 103), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 104), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 4, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 15), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 16), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_directive, 2, 0, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 17), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 111), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 8, 0, 95), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 8, 0, 96), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 8, 0, 112), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 114), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 115), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 66), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 8, 0, 116), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 19), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 21), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 121), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 22), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 23), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 24), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 27), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 3, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 41), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 70), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 71), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 8, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 43), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 64), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_list, 1, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 3), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 3, 0, 64), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 1, 0, 18), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 18), REDUCE(sym__type_hint, 1, 100, 4), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 3, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 2, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 4, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 13), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 5), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 5, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 64), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 5, 0, 118), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 89), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 5, 0, 118), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 86), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 106), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 118), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 106), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 3, 0, 106), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 118), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 3, 0, 106), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 60), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 39), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 18), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 2, 0, 68), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), SHIFT_REPEAT(815), [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tensor_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 39), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 18), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), SHIFT_REPEAT(853), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 2, 0, 68), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 125), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 123), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2669] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_receiver, 2, 0, 9), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), SHIFT_REPEAT(824), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 18), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 123), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 125), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2626] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_receiver, 2, 0, 9), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), }; #ifdef __cplusplus