diff --git a/server/src/languages/tolk/tree-sitter-tolk/grammar.js b/server/src/languages/tolk/tree-sitter-tolk/grammar.js index e3199969..c5351008 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/grammar.js +++ b/server/src/languages/tolk/tree-sitter-tolk/grammar.js @@ -596,6 +596,7 @@ const TOLK_GRAMMAR = { $.fun_callable_type, $.nullable_type, $.union_type, + $.null_literal, ), ), @@ -638,7 +639,7 @@ const TOLK_GRAMMAR = { string_literal: $ => token( choice( - /"""\s*[\s\S]*?"""/, // triple quotes + seq('"""', repeat(choice(/[^"]/, /"[^"]/, /""[^"]/)), '"""'), /"(?:[^"\\\n]|\\.)*"/, // sing quote ), ), diff --git a/server/src/languages/tolk/tree-sitter-tolk/package.json b/server/src/languages/tolk/tree-sitter-tolk/package.json index 99839003..80fa86d3 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/package.json +++ b/server/src/languages/tolk/tree-sitter-tolk/package.json @@ -17,6 +17,7 @@ "scripts": { "test": "tree-sitter test", "test:update": "tree-sitter test -u", + "parse": "tree-sitter parse main.tolk -D --open-log", "play": "yarn run grammar:wasm && tree-sitter playground", "grammar:wasm": "tree-sitter generate && tree-sitter build --wasm" }, 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 810123ee..346354b2 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/src/grammar.json +++ b/server/src/languages/tolk/tree-sitter-tolk/src/grammar.json @@ -3788,6 +3788,10 @@ { "type": "SYMBOL", "name": "union_type" + }, + { + "type": "SYMBOL", + "name": "null_literal" } ] } @@ -4104,8 +4108,37 @@ "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "\"\"\"\\s*[\\s\\S]*?\"\"\"" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"\"\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^\"]" + }, + { + "type": "PATTERN", + "value": "\"[^\"]" + }, + { + "type": "PATTERN", + "value": "\"\"[^\"]" + } + ] + } + }, + { + "type": "STRING", + "value": "\"\"\"" + } + ] }, { "type": "PATTERN", diff --git a/server/src/languages/tolk/tree-sitter-tolk/src/node-types.json b/server/src/languages/tolk/tree-sitter-tolk/src/node-types.json index 7ed06177..537e3ee1 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/src/node-types.json +++ b/server/src/languages/tolk/tree-sitter-tolk/src/node-types.json @@ -979,6 +979,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -1177,6 +1181,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -1581,6 +1589,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -1862,6 +1874,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -1900,6 +1916,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -2118,6 +2138,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -2354,6 +2378,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -2418,6 +2446,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -2724,6 +2756,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -2880,6 +2916,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -3380,6 +3420,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -3662,6 +3706,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -3716,6 +3764,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -3864,6 +3916,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -3918,6 +3974,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -4095,6 +4155,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -4258,6 +4322,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -5003,6 +5071,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -5150,6 +5222,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -5666,6 +5742,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -5771,6 +5851,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -5841,6 +5925,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -6139,6 +6227,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -6177,6 +6269,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -6241,6 +6337,10 @@ "type": "fun_callable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true 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 cc31e160..4d7ddd97 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/src/parser.c +++ b/server/src/languages/tolk/tree-sitter-tolk/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1098 -#define LARGE_STATE_COUNT 81 +#define STATE_COUNT 1103 +#define LARGE_STATE_COUNT 82 #define SYMBOL_COUNT 192 #define ALIAS_COUNT 1 #define TOKEN_COUNT 93 @@ -2775,7 +2775,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 6, - [8] = 4, + [8] = 5, [9] = 9, [10] = 10, [11] = 11, @@ -2844,398 +2844,398 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [74] = 74, [75] = 75, [76] = 76, - [77] = 10, + [77] = 77, [78] = 9, - [79] = 9, + [79] = 10, [80] = 10, - [81] = 29, - [82] = 33, - [83] = 30, - [84] = 37, - [85] = 34, - [86] = 46, - [87] = 45, - [88] = 38, - [89] = 39, - [90] = 31, + [81] = 9, + [82] = 29, + [83] = 48, + [84] = 31, + [85] = 32, + [86] = 45, + [87] = 30, + [88] = 41, + [89] = 35, + [90] = 39, [91] = 40, - [92] = 41, - [93] = 42, + [92] = 37, + [93] = 36, [94] = 94, - [95] = 43, - [96] = 44, - [97] = 70, - [98] = 51, - [99] = 64, - [100] = 52, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 57, - [105] = 58, - [106] = 60, - [107] = 68, - [108] = 65, - [109] = 66, - [110] = 69, - [111] = 71, - [112] = 49, - [113] = 59, - [114] = 72, - [115] = 73, - [116] = 74, - [117] = 63, - [118] = 75, - [119] = 53, - [120] = 54, - [121] = 55, - [122] = 56, - [123] = 30, - [124] = 62, - [125] = 67, - [126] = 16, - [127] = 13, - [128] = 27, - [129] = 19, - [130] = 22, - [131] = 20, - [132] = 21, - [133] = 28, - [134] = 23, - [135] = 24, - [136] = 25, - [137] = 26, - [138] = 17, - [139] = 18, - [140] = 61, - [141] = 46, - [142] = 37, - [143] = 29, - [144] = 34, - [145] = 10, - [146] = 38, - [147] = 39, - [148] = 31, - [149] = 40, - [150] = 41, - [151] = 42, - [152] = 47, - [153] = 48, - [154] = 32, - [155] = 43, - [156] = 44, - [157] = 45, - [158] = 9, - [159] = 35, - [160] = 36, - [161] = 73, - [162] = 57, - [163] = 64, - [164] = 58, - [165] = 67, - [166] = 68, - [167] = 33, - [168] = 60, - [169] = 69, - [170] = 70, - [171] = 59, - [172] = 66, - [173] = 51, - [174] = 52, - [175] = 71, - [176] = 72, - [177] = 56, - [178] = 74, - [179] = 75, - [180] = 61, - [181] = 62, - [182] = 65, - [183] = 53, - [184] = 54, - [185] = 55, - [186] = 49, - [187] = 63, - [188] = 20, - [189] = 189, - [190] = 190, - [191] = 50, - [192] = 192, - [193] = 193, - [194] = 27, - [195] = 19, - [196] = 22, - [197] = 17, - [198] = 21, - [199] = 28, - [200] = 23, - [201] = 24, - [202] = 25, - [203] = 26, - [204] = 18, - [205] = 48, - [206] = 32, - [207] = 35, - [208] = 47, - [209] = 36, - [210] = 210, - [211] = 211, - [212] = 212, + [95] = 38, + [96] = 49, + [97] = 33, + [98] = 34, + [99] = 21, + [100] = 60, + [101] = 50, + [102] = 61, + [103] = 63, + [104] = 64, + [105] = 65, + [106] = 68, + [107] = 58, + [108] = 69, + [109] = 70, + [110] = 71, + [111] = 72, + [112] = 73, + [113] = 74, + [114] = 75, + [115] = 10, + [116] = 52, + [117] = 55, + [118] = 76, + [119] = 119, + [120] = 53, + [121] = 9, + [122] = 59, + [123] = 27, + [124] = 124, + [125] = 66, + [126] = 126, + [127] = 67, + [128] = 22, + [129] = 54, + [130] = 56, + [131] = 13, + [132] = 17, + [133] = 18, + [134] = 19, + [135] = 20, + [136] = 16, + [137] = 77, + [138] = 12, + [139] = 23, + [140] = 25, + [141] = 14, + [142] = 15, + [143] = 57, + [144] = 30, + [145] = 47, + [146] = 46, + [147] = 49, + [148] = 33, + [149] = 34, + [150] = 35, + [151] = 36, + [152] = 37, + [153] = 42, + [154] = 43, + [155] = 44, + [156] = 38, + [157] = 39, + [158] = 40, + [159] = 32, + [160] = 41, + [161] = 31, + [162] = 29, + [163] = 58, + [164] = 52, + [165] = 53, + [166] = 54, + [167] = 55, + [168] = 56, + [169] = 57, + [170] = 59, + [171] = 60, + [172] = 61, + [173] = 63, + [174] = 64, + [175] = 65, + [176] = 66, + [177] = 67, + [178] = 50, + [179] = 68, + [180] = 69, + [181] = 70, + [182] = 71, + [183] = 72, + [184] = 73, + [185] = 74, + [186] = 75, + [187] = 76, + [188] = 48, + [189] = 77, + [190] = 45, + [191] = 13, + [192] = 15, + [193] = 14, + [194] = 62, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 17, + [200] = 18, + [201] = 19, + [202] = 20, + [203] = 16, + [204] = 21, + [205] = 12, + [206] = 23, + [207] = 25, + [208] = 42, + [209] = 44, + [210] = 43, + [211] = 46, + [212] = 47, [213] = 213, [214] = 214, [215] = 215, - [216] = 214, - [217] = 214, - [218] = 215, + [216] = 216, + [217] = 216, + [218] = 216, [219] = 219, - [220] = 213, - [221] = 215, - [222] = 213, - [223] = 23, - [224] = 224, - [225] = 224, - [226] = 224, + [220] = 220, + [221] = 221, + [222] = 221, + [223] = 220, + [224] = 220, + [225] = 221, + [226] = 226, [227] = 227, - [228] = 27, - [229] = 26, - [230] = 20, - [231] = 227, - [232] = 19, - [233] = 21, - [234] = 28, - [235] = 235, - [236] = 94, - [237] = 18, - [238] = 24, - [239] = 25, - [240] = 17, - [241] = 22, - [242] = 235, - [243] = 235, - [244] = 227, - [245] = 245, - [246] = 29, - [247] = 17, - [248] = 18, - [249] = 35, - [250] = 36, - [251] = 27, - [252] = 19, - [253] = 22, - [254] = 20, - [255] = 21, - [256] = 28, - [257] = 23, - [258] = 24, - [259] = 25, - [260] = 47, - [261] = 48, - [262] = 26, - [263] = 263, - [264] = 32, - [265] = 29, - [266] = 266, - [267] = 266, - [268] = 268, - [269] = 266, - [270] = 266, - [271] = 271, - [272] = 272, - [273] = 34, - [274] = 33, + [228] = 25, + [229] = 14, + [230] = 15, + [231] = 226, + [232] = 13, + [233] = 17, + [234] = 18, + [235] = 19, + [236] = 20, + [237] = 16, + [238] = 21, + [239] = 12, + [240] = 23, + [241] = 94, + [242] = 242, + [243] = 227, + [244] = 242, + [245] = 242, + [246] = 227, + [247] = 226, + [248] = 15, + [249] = 249, + [250] = 250, + [251] = 13, + [252] = 17, + [253] = 18, + [254] = 19, + [255] = 20, + [256] = 16, + [257] = 21, + [258] = 12, + [259] = 259, + [260] = 260, + [261] = 23, + [262] = 42, + [263] = 43, + [264] = 44, + [265] = 46, + [266] = 47, + [267] = 25, + [268] = 29, + [269] = 269, + [270] = 269, + [271] = 29, + [272] = 269, + [273] = 14, + [274] = 269, [275] = 275, [276] = 276, [277] = 277, - [278] = 278, + [278] = 48, [279] = 279, - [280] = 280, + [280] = 45, [281] = 281, [282] = 282, [283] = 283, - [284] = 278, - [285] = 279, - [286] = 282, - [287] = 280, + [284] = 284, + [285] = 276, + [286] = 277, + [287] = 279, [288] = 288, [289] = 289, - [290] = 275, - [291] = 283, - [292] = 279, - [293] = 280, - [294] = 281, - [295] = 282, - [296] = 283, - [297] = 278, - [298] = 275, - [299] = 281, - [300] = 275, - [301] = 33, - [302] = 275, - [303] = 303, - [304] = 304, - [305] = 305, + [290] = 48, + [291] = 291, + [292] = 288, + [293] = 289, + [294] = 45, + [295] = 281, + [296] = 284, + [297] = 284, + [298] = 276, + [299] = 277, + [300] = 279, + [301] = 288, + [302] = 289, + [303] = 32, + [304] = 281, + [305] = 281, [306] = 306, - [307] = 307, + [307] = 281, [308] = 308, [309] = 309, - [310] = 303, + [310] = 308, [311] = 311, [312] = 312, - [313] = 305, - [314] = 306, - [315] = 307, - [316] = 308, - [317] = 309, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, [318] = 318, - [319] = 305, - [320] = 318, - [321] = 307, - [322] = 322, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 321, [323] = 323, [324] = 324, [325] = 325, - [326] = 308, - [327] = 322, - [328] = 306, + [326] = 326, + [327] = 327, + [328] = 328, [329] = 329, [330] = 330, - [331] = 331, - [332] = 307, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 304, - [337] = 311, + [331] = 309, + [332] = 332, + [333] = 312, + [334] = 313, + [335] = 321, + [336] = 336, + [337] = 337, [338] = 338, - [339] = 308, - [340] = 309, - [341] = 341, - [342] = 342, - [343] = 342, - [344] = 318, - [345] = 335, - [346] = 312, - [347] = 347, - [348] = 303, - [349] = 349, - [350] = 311, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 318, - [356] = 303, - [357] = 311, - [358] = 312, - [359] = 305, - [360] = 306, - [361] = 307, - [362] = 309, - [363] = 318, - [364] = 338, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 322, - [371] = 322, - [372] = 372, - [373] = 322, - [374] = 341, - [375] = 342, - [376] = 312, - [377] = 377, - [378] = 306, - [379] = 379, - [380] = 380, - [381] = 305, - [382] = 382, - [383] = 383, - [384] = 303, - [385] = 311, - [386] = 341, - [387] = 342, - [388] = 312, - [389] = 341, - [390] = 342, - [391] = 304, - [392] = 392, - [393] = 304, - [394] = 304, - [395] = 304, - [396] = 309, - [397] = 341, - [398] = 398, - [399] = 303, - [400] = 311, - [401] = 312, - [402] = 305, - [403] = 306, - [404] = 307, - [405] = 308, - [406] = 309, - [407] = 318, - [408] = 322, - [409] = 342, - [410] = 341, - [411] = 308, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 14, - [416] = 416, + [339] = 339, + [340] = 340, + [341] = 326, + [342] = 317, + [343] = 343, + [344] = 327, + [345] = 345, + [346] = 336, + [347] = 338, + [348] = 348, + [349] = 319, + [350] = 350, + [351] = 328, + [352] = 326, + [353] = 327, + [354] = 328, + [355] = 329, + [356] = 330, + [357] = 309, + [358] = 308, + [359] = 359, + [360] = 326, + [361] = 327, + [362] = 328, + [363] = 329, + [364] = 364, + [365] = 309, + [366] = 308, + [367] = 312, + [368] = 313, + [369] = 312, + [370] = 370, + [371] = 371, + [372] = 313, + [373] = 321, + [374] = 374, + [375] = 375, + [376] = 321, + [377] = 332, + [378] = 326, + [379] = 336, + [380] = 338, + [381] = 327, + [382] = 328, + [383] = 329, + [384] = 330, + [385] = 385, + [386] = 309, + [387] = 308, + [388] = 388, + [389] = 312, + [390] = 329, + [391] = 336, + [392] = 338, + [393] = 313, + [394] = 336, + [395] = 338, + [396] = 330, + [397] = 332, + [398] = 332, + [399] = 332, + [400] = 332, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 326, + [405] = 327, + [406] = 328, + [407] = 329, + [408] = 330, + [409] = 309, + [410] = 308, + [411] = 312, + [412] = 313, + [413] = 321, + [414] = 338, + [415] = 336, + [416] = 330, [417] = 417, - [418] = 416, - [419] = 417, - [420] = 24, - [421] = 23, - [422] = 422, - [423] = 25, - [424] = 416, - [425] = 417, - [426] = 417, - [427] = 26, - [428] = 428, - [429] = 429, - [430] = 417, - [431] = 27, - [432] = 19, - [433] = 22, - [434] = 20, - [435] = 21, - [436] = 417, - [437] = 17, - [438] = 18, - [439] = 28, - [440] = 10, - [441] = 9, - [442] = 30, - [443] = 31, - [444] = 47, - [445] = 445, - [446] = 446, - [447] = 41, - [448] = 448, - [449] = 43, + [418] = 417, + [419] = 419, + [420] = 417, + [421] = 421, + [422] = 13, + [423] = 17, + [424] = 18, + [425] = 19, + [426] = 20, + [427] = 16, + [428] = 21, + [429] = 23, + [430] = 25, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 14, + [437] = 15, + [438] = 419, + [439] = 417, + [440] = 12, + [441] = 26, + [442] = 419, + [443] = 417, + [444] = 417, + [445] = 10, + [446] = 9, + [447] = 30, + [448] = 49, + [449] = 449, [450] = 450, - [451] = 38, - [452] = 44, + [451] = 451, + [452] = 452, [453] = 453, - [454] = 48, - [455] = 455, - [456] = 45, - [457] = 42, - [458] = 40, - [459] = 46, - [460] = 39, + [454] = 41, + [455] = 38, + [456] = 39, + [457] = 40, + [458] = 44, + [459] = 33, + [460] = 460, [461] = 461, - [462] = 32, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, + [462] = 462, + [463] = 35, + [464] = 34, + [465] = 43, + [466] = 42, + [467] = 37, + [468] = 36, [469] = 469, [470] = 470, [471] = 471, @@ -3254,9 +3254,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [484] = 484, [485] = 485, [486] = 486, - [487] = 487, - [488] = 483, - [489] = 487, + [487] = 483, + [488] = 488, + [489] = 489, [490] = 490, [491] = 491, [492] = 492, @@ -3268,7 +3268,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [498] = 498, [499] = 499, [500] = 500, - [501] = 501, + [501] = 489, [502] = 502, [503] = 503, [504] = 504, @@ -3281,35 +3281,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [511] = 511, [512] = 512, [513] = 513, - [514] = 10, - [515] = 9, + [514] = 514, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, - [519] = 519, - [520] = 30, - [521] = 10, - [522] = 46, + [519] = 9, + [520] = 10, + [521] = 521, + [522] = 522, [523] = 523, - [524] = 42, - [525] = 523, - [526] = 43, - [527] = 44, - [528] = 45, - [529] = 38, - [530] = 39, - [531] = 31, - [532] = 40, - [533] = 523, + [524] = 524, + [525] = 9, + [526] = 30, + [527] = 33, + [528] = 36, + [529] = 40, + [530] = 530, + [531] = 49, + [532] = 38, + [533] = 39, [534] = 41, - [535] = 535, - [536] = 536, - [537] = 10, - [538] = 9, - [539] = 539, + [535] = 530, + [536] = 34, + [537] = 35, + [538] = 530, + [539] = 37, [540] = 540, - [541] = 541, - [542] = 542, + [541] = 9, + [542] = 10, [543] = 543, [544] = 544, [545] = 545, @@ -3371,16 +3371,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [601] = 601, [602] = 602, [603] = 603, - [604] = 48, + [604] = 604, [605] = 605, [606] = 606, - [607] = 47, - [608] = 32, - [609] = 609, + [607] = 607, + [608] = 608, + [609] = 42, [610] = 610, - [611] = 611, + [611] = 43, [612] = 612, - [613] = 613, + [613] = 44, [614] = 614, [615] = 615, [616] = 616, @@ -3392,7 +3392,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [622] = 622, [623] = 623, [624] = 624, - [625] = 32, + [625] = 625, [626] = 626, [627] = 627, [628] = 628, @@ -3402,43 +3402,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [632] = 632, [633] = 633, [634] = 634, - [635] = 469, + [635] = 635, [636] = 636, [637] = 637, [638] = 638, - [639] = 639, + [639] = 44, [640] = 640, [641] = 641, [642] = 642, - [643] = 470, - [644] = 644, + [643] = 643, + [644] = 476, [645] = 645, [646] = 646, - [647] = 468, + [647] = 647, [648] = 648, - [649] = 648, + [649] = 649, [650] = 650, - [651] = 648, - [652] = 650, + [651] = 651, + [652] = 473, [653] = 653, [654] = 654, - [655] = 648, + [655] = 655, [656] = 656, - [657] = 648, - [658] = 658, - [659] = 650, - [660] = 650, + [657] = 657, + [658] = 657, + [659] = 659, + [660] = 659, [661] = 661, [662] = 662, - [663] = 650, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, + [663] = 663, + [664] = 657, + [665] = 659, + [666] = 657, + [667] = 659, [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, + [669] = 657, + [670] = 659, + [671] = 472, [672] = 672, [673] = 673, [674] = 674, @@ -3447,54 +3447,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [677] = 677, [678] = 678, [679] = 679, - [680] = 680, + [680] = 673, [681] = 681, [682] = 682, - [683] = 683, + [683] = 674, [684] = 684, [685] = 685, [686] = 686, - [687] = 687, + [687] = 674, [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, + [689] = 675, + [690] = 676, + [691] = 688, [692] = 692, - [693] = 693, - [694] = 694, + [693] = 674, + [694] = 692, [695] = 695, [696] = 696, - [697] = 697, + [697] = 692, [698] = 698, [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 669, - [717] = 717, - [718] = 718, - [719] = 669, - [720] = 720, - [721] = 721, - [722] = 722, + [700] = 675, + [701] = 676, + [702] = 681, + [703] = 692, + [704] = 688, + [705] = 688, + [706] = 692, + [707] = 679, + [708] = 688, + [709] = 673, + [710] = 674, + [711] = 688, + [712] = 674, + [713] = 679, + [714] = 688, + [715] = 679, + [716] = 673, + [717] = 679, + [718] = 673, + [719] = 679, + [720] = 692, + [721] = 675, + [722] = 676, [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, + [724] = 692, + [725] = 679, + [726] = 674, + [727] = 674, [728] = 728, [729] = 729, [730] = 730, @@ -3507,11 +3507,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [737] = 737, [738] = 738, [739] = 739, - [740] = 709, - [741] = 710, + [740] = 740, + [741] = 741, [742] = 742, [743] = 743, - [744] = 669, + [744] = 744, [745] = 745, [746] = 746, [747] = 747, @@ -3529,18 +3529,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [759] = 759, [760] = 760, [761] = 761, - [762] = 709, - [763] = 710, + [762] = 762, + [763] = 763, [764] = 764, [765] = 765, - [766] = 485, + [766] = 766, [767] = 767, [768] = 768, [769] = 769, [770] = 770, [771] = 771, [772] = 772, - [773] = 669, + [773] = 773, [774] = 774, [775] = 775, [776] = 776, @@ -3548,17 +3548,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [778] = 778, [779] = 779, [780] = 780, - [781] = 689, - [782] = 690, + [781] = 781, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, [787] = 787, [788] = 788, - [789] = 709, - [790] = 710, - [791] = 669, + [789] = 789, + [790] = 790, + [791] = 791, [792] = 792, [793] = 793, [794] = 794, @@ -3566,9 +3566,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [796] = 796, [797] = 797, [798] = 798, - [799] = 692, - [800] = 689, - [801] = 690, + [799] = 511, + [800] = 800, + [801] = 801, [802] = 802, [803] = 803, [804] = 804, @@ -3580,50 +3580,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [810] = 810, [811] = 811, [812] = 812, - [813] = 682, - [814] = 709, - [815] = 715, - [816] = 669, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, [817] = 817, [818] = 818, - [819] = 709, - [820] = 669, + [819] = 819, + [820] = 820, [821] = 821, [822] = 822, - [823] = 682, - [824] = 715, + [823] = 823, + [824] = 824, [825] = 825, [826] = 826, [827] = 827, - [828] = 682, - [829] = 715, + [828] = 828, + [829] = 829, [830] = 830, - [831] = 682, - [832] = 715, + [831] = 831, + [832] = 832, [833] = 833, - [834] = 682, - [835] = 710, - [836] = 689, - [837] = 690, - [838] = 710, - [839] = 682, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, [840] = 840, - [841] = 709, + [841] = 841, [842] = 842, [843] = 843, - [844] = 710, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, - [848] = 48, - [849] = 47, + [848] = 848, + [849] = 849, [850] = 850, - [851] = 32, + [851] = 851, [852] = 852, - [853] = 853, + [853] = 43, [854] = 854, - [855] = 855, - [856] = 856, + [855] = 42, + [856] = 44, [857] = 857, [858] = 858, [859] = 859, @@ -3639,47 +3639,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [869] = 869, [870] = 870, [871] = 871, - [872] = 870, + [872] = 872, [873] = 873, - [874] = 874, + [874] = 471, [875] = 875, - [876] = 465, + [876] = 876, [877] = 877, [878] = 878, - [879] = 879, - [880] = 879, + [879] = 875, + [880] = 880, [881] = 881, [882] = 882, [883] = 883, - [884] = 878, - [885] = 877, - [886] = 877, - [887] = 879, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 883, [888] = 888, - [889] = 878, - [890] = 466, - [891] = 877, - [892] = 879, - [893] = 878, - [894] = 894, - [895] = 877, - [896] = 879, - [897] = 878, + [889] = 883, + [890] = 884, + [891] = 883, + [892] = 884, + [893] = 893, + [894] = 885, + [895] = 895, + [896] = 470, + [897] = 885, [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, + [899] = 884, + [900] = 884, + [901] = 883, + [902] = 885, + [903] = 885, [904] = 904, - [905] = 899, - [906] = 899, - [907] = 907, + [905] = 905, + [906] = 906, + [907] = 904, [908] = 908, [909] = 909, [910] = 910, [911] = 911, - [912] = 912, + [912] = 904, [913] = 913, [914] = 914, [915] = 915, @@ -3692,16 +3692,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [922] = 922, [923] = 923, [924] = 924, - [925] = 916, - [926] = 916, - [927] = 927, + [925] = 925, + [926] = 926, + [927] = 918, [928] = 928, [929] = 929, [930] = 930, [931] = 931, [932] = 932, [933] = 933, - [934] = 934, + [934] = 918, [935] = 935, [936] = 936, [937] = 937, @@ -3713,92 +3713,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [943] = 943, [944] = 944, [945] = 945, - [946] = 946, + [946] = 937, [947] = 947, [948] = 948, - [949] = 948, + [949] = 949, [950] = 950, [951] = 951, [952] = 952, [953] = 953, [954] = 954, [955] = 955, - [956] = 943, - [957] = 947, + [956] = 940, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 955, + [961] = 958, [962] = 962, - [963] = 963, - [964] = 931, - [965] = 937, - [966] = 942, + [963] = 948, + [964] = 960, + [965] = 965, + [966] = 966, [967] = 967, - [968] = 932, - [969] = 969, + [968] = 968, + [969] = 959, [970] = 970, - [971] = 967, - [972] = 972, - [973] = 973, - [974] = 974, + [971] = 949, + [972] = 943, + [973] = 967, + [974] = 937, [975] = 975, - [976] = 943, - [977] = 947, - [978] = 955, - [979] = 948, + [976] = 940, + [977] = 948, + [978] = 960, + [979] = 958, [980] = 980, - [981] = 948, - [982] = 943, - [983] = 947, - [984] = 955, - [985] = 985, - [986] = 943, - [987] = 947, - [988] = 988, - [989] = 948, - [990] = 959, - [991] = 959, - [992] = 992, - [993] = 948, - [994] = 962, + [981] = 981, + [982] = 982, + [983] = 948, + [984] = 960, + [985] = 970, + [986] = 986, + [987] = 987, + [988] = 965, + [989] = 958, + [990] = 965, + [991] = 991, + [992] = 948, + [993] = 960, + [994] = 967, [995] = 995, - [996] = 967, + [996] = 996, [997] = 997, [998] = 998, - [999] = 955, - [1000] = 962, - [1001] = 932, - [1002] = 963, - [1003] = 937, - [1004] = 1004, - [1005] = 942, - [1006] = 963, - [1007] = 931, - [1008] = 948, + [999] = 999, + [1000] = 958, + [1001] = 1001, + [1002] = 958, + [1003] = 967, + [1004] = 958, + [1005] = 968, + [1006] = 959, + [1007] = 970, + [1008] = 949, [1009] = 1009, - [1010] = 1010, + [1010] = 968, [1011] = 1011, - [1012] = 1012, - [1013] = 1013, + [1012] = 943, + [1013] = 967, [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 1020, + [1020] = 1015, [1021] = 1021, [1022] = 1022, - [1023] = 1014, - [1024] = 1014, - [1025] = 471, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, [1026] = 1026, [1027] = 1027, - [1028] = 1028, + [1028] = 1015, [1029] = 1029, [1030] = 1030, - [1031] = 1031, + [1031] = 477, [1032] = 1032, [1033] = 1033, [1034] = 1034, @@ -3815,56 +3815,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1045] = 1045, [1046] = 1046, [1047] = 1047, - [1048] = 1038, + [1048] = 1048, [1049] = 1049, [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 1042, - [1054] = 1054, + [1053] = 1053, + [1054] = 1046, [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, [1059] = 1059, - [1060] = 1055, - [1061] = 1038, + [1060] = 1060, + [1061] = 1061, [1062] = 1062, [1063] = 1063, - [1064] = 1055, + [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 1068, + [1068] = 1048, [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1042, - [1074] = 1074, - [1075] = 1063, - [1076] = 1076, + [1073] = 1073, + [1074] = 1051, + [1075] = 1052, + [1076] = 1052, [1077] = 1077, [1078] = 1078, - [1079] = 1063, + [1079] = 1064, [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 1069, - [1084] = 1084, + [1083] = 1083, + [1084] = 1048, [1085] = 1085, - [1086] = 1086, + [1086] = 1046, [1087] = 1087, [1088] = 1088, [1089] = 1089, [1090] = 1090, [1091] = 1091, - [1092] = 1069, + [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 1096, + [1096] = 1064, [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1051, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3872,494 +3877,483 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(24); + if (eof) ADVANCE(23); ADVANCE_MAP( - '!', 83, + '!', 82, '"', 2, - '%', 79, - '&', 62, - '(', 35, - ')', 36, - '*', 77, - '+', 76, - ',', 38, - '-', 73, - '.', 40, - '/', 78, - ':', 28, - ';', 29, - '<', 43, - '=', 31, - '>', 45, - '?', 59, - '@', 41, - '[', 47, - ']', 48, - '^', 63, - '`', 22, - '{', 37, - '|', 34, - '}', 39, - '~', 85, + '%', 78, + '&', 61, + '(', 34, + ')', 35, + '*', 76, + '+', 75, + ',', 37, + '-', 72, + '.', 39, + '/', 77, + ':', 27, + ';', 28, + '<', 42, + '=', 30, + '>', 44, + '?', 58, + '@', 40, + '[', 46, + ']', 47, + '^', 62, + '`', 21, + '{', 36, + '|', 33, + '}', 38, + '~', 84, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 1: ADVANCE_MAP( - '!', 83, + '!', 82, '"', 2, - '%', 79, - '&', 62, - '(', 35, - '*', 77, - '+', 76, - ',', 38, - '-', 73, - '.', 40, - '/', 78, - '0', 88, - ':', 28, - ';', 29, - '<', 43, - '=', 30, - '>', 45, - '?', 59, - '[', 47, - '^', 63, - '`', 22, - '{', 37, - '|', 34, - '}', 39, - '~', 85, + '%', 78, + '&', 61, + '(', 34, + '*', 76, + '+', 75, + ',', 37, + '-', 72, + '.', 39, + '/', 77, + '0', 87, + ':', 27, + ';', 28, + '<', 42, + '=', 29, + '>', 44, + '?', 58, + '[', 46, + '^', 62, + '`', 21, + '{', 36, + '|', 33, + '}', 38, + '~', 84, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(90); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(89); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(93); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '"') ADVANCE(92); + if (lookahead == '\\') ADVANCE(20); if (lookahead != 0 && lookahead != '\n') ADVANCE(3); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(92); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '"') ADVANCE(91); + if (lookahead == '\\') ADVANCE(20); if (lookahead != 0 && lookahead != '\n') ADVANCE(3); END_STATE(); case 4: - if (lookahead == '"') ADVANCE(7); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(4); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '"') ADVANCE(91); + if (lookahead != 0) ADVANCE(6); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(7); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '"') ADVANCE(4); + if (lookahead != 0) ADVANCE(6); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(94); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '"') ADVANCE(5); + if (lookahead != 0) ADVANCE(6); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(6); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '*') ADVANCE(9); + if (lookahead == '/') ADVANCE(97); END_STATE(); case 8: - if (lookahead == '*') ADVANCE(10); - if (lookahead == '/') ADVANCE(99); + if (lookahead == '*') ADVANCE(8); + if (lookahead == '/') ADVANCE(96); + if (lookahead != 0) ADVANCE(9); END_STATE(); case 9: - if (lookahead == '*') ADVANCE(9); - if (lookahead == '/') ADVANCE(98); - if (lookahead != 0) ADVANCE(10); + if (lookahead == '*') ADVANCE(8); + if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == '*') ADVANCE(9); - if (lookahead != 0) ADVANCE(10); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '`') ADVANCE(21); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 11: - if (lookahead == '/') ADVANCE(8); - if (lookahead == '`') ADVANCE(22); + if (lookahead == '/') ADVANCE(7); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); END_STATE(); case 12: - if (lookahead == '/') ADVANCE(8); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(72); + if (lookahead == '>') ADVANCE(70); END_STATE(); case 14: - if (lookahead == '>') ADVANCE(71); + if (lookahead == '`') ADVANCE(93); + if (lookahead != 0) ADVANCE(14); END_STATE(); case 15: - if (lookahead == '`') ADVANCE(95); - if (lookahead != 0) ADVANCE(15); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 16: - if (lookahead == 's') ADVANCE(86); + if (lookahead == '0' || + lookahead == '1') ADVANCE(88); END_STATE(); case 17: - if (lookahead == '0' || - lookahead == '1') ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); END_STATE(); case 18: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(26); END_STATE(); case 19: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); - END_STATE(); - case 20: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); - case 21: + case 20: if (lookahead != 0 && lookahead != '\n') ADVANCE(3); END_STATE(); - case 22: + case 21: if (lookahead != 0 && - lookahead != '`') ADVANCE(15); + lookahead != '`') ADVANCE(14); END_STATE(); - case 23: - if (eof) ADVANCE(24); + case 22: + if (eof) ADVANCE(23); ADVANCE_MAP( - '!', 82, + '!', 81, '"', 2, - '(', 35, - ')', 36, - '+', 75, - ',', 38, - '-', 74, - '.', 40, - '/', 8, - '0', 88, - ':', 28, - ';', 29, - '<', 42, - '=', 32, - '>', 44, - '?', 59, - '@', 41, - '[', 47, - ']', 48, - '`', 22, - '{', 37, - '|', 33, - '}', 39, - '~', 84, + '(', 34, + ')', 35, + '+', 74, + ',', 37, + '-', 73, + '.', 39, + '/', 7, + '0', 87, + ':', 27, + ';', 28, + '<', 41, + '=', 31, + '>', 43, + '?', 58, + '@', 40, + '[', 46, + ']', 47, + '`', 21, + '{', 36, + '|', 32, + '}', 38, + '~', 83, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(90); + lookahead == ' ') SKIP(22); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(89); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(96); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); - case 24: + case 23: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); + case 24: + ACCEPT_TOKEN(sym_version_value); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(18); + END_STATE(); case 25: ACCEPT_TOKEN(sym_version_value); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(19); END_STATE(); case 26: ACCEPT_TOKEN(sym_version_value); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(26); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(17); END_STATE(); case 27: - ACCEPT_TOKEN(sym_version_value); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(18); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(63); END_STATE(); case 30: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(64); + if (lookahead == '=') ADVANCE(63); + if (lookahead == '>') ADVANCE(86); END_STATE(); case 31: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(64); - if (lookahead == '>') ADVANCE(87); + if (lookahead == '>') ADVANCE(86); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(87); + ACCEPT_TOKEN(anon_sym_PIPE); 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_PIPE); - if (lookahead == '=') ADVANCE(57); - if (lookahead == '|') ADVANCE(61); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_LT); 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_LT); - if (lookahead == '<') ADVANCE(69); - if (lookahead == '=') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_GT); 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_GT); - if (lookahead == '=') ADVANCE(67); - if (lookahead == '>') ADVANCE(70); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(59); + if (lookahead == '=') ADVANCE(55); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(60); - if (lookahead == '=') ADVANCE(56); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '/') ADVANCE(80); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '>') ADVANCE(12); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(13); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(67); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(53); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') ADVANCE(54); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(55); + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + ACCEPT_TOKEN(anon_sym_CARET_GT_GT); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_CARET_GT_GT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(45); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(50); - if (lookahead == '>') ADVANCE(46); + if (lookahead == '>') ADVANCE(45); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(46); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 75: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(48); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(49); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(50); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(9); + if (lookahead == '/') ADVANCE(97); if (lookahead == '=') ADVANCE(51); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(10); - if (lookahead == '/') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(52); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(53); + ACCEPT_TOKEN(anon_sym_TILDE_SLASH); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_TILDE_SLASH); + ACCEPT_TOKEN(anon_sym_CARET_SLASH); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_CARET_SLASH); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(64); + if (lookahead == 'i') ADVANCE(15); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(65); - if (lookahead == 'i') ADVANCE(16); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '/') ADVANCE(79); + if (lookahead == '>') ADVANCE(13); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '/') ADVANCE(80); - if (lookahead == '>') ADVANCE(14); + ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_BANGis); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'b') ADVANCE(16); + if (lookahead == 'x') ADVANCE(19); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); 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(90); + if (lookahead == '0' || + lookahead == '1') ADVANCE(88); END_STATE(); case 89: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '0' || - lookahead == '1') ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 90: - ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); - END_STATE(); - case 91: ACCEPT_TOKEN(sym_number_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); - END_STATE(); - case 92: - ACCEPT_TOKEN(sym_string_literal); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); - case 93: + case 91: ACCEPT_TOKEN(sym_string_literal); - if (lookahead == '"') ADVANCE(4); END_STATE(); - case 94: + case 92: ACCEPT_TOKEN(sym_string_literal); - if (lookahead == '"') ADVANCE(94); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '"') ADVANCE(6); END_STATE(); - case 95: + case 93: ACCEPT_TOKEN(sym_identifier); END_STATE(); - case 96: + case 94: ACCEPT_TOKEN(sym_identifier); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); - case 97: + case 95: ACCEPT_TOKEN(sym_numeric_index); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); END_STATE(); - case 98: + case 96: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 99: + case 97: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(99); + lookahead != '\r') ADVANCE(97); END_STATE(); default: return false; @@ -4797,13 +4791,13 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 0}, - [2] = {.lex_state = 23}, - [3] = {.lex_state = 23}, - [4] = {.lex_state = 23}, - [5] = {.lex_state = 23}, - [6] = {.lex_state = 23}, - [7] = {.lex_state = 23}, - [8] = {.lex_state = 23}, + [2] = {.lex_state = 22}, + [3] = {.lex_state = 22}, + [4] = {.lex_state = 22}, + [5] = {.lex_state = 22}, + [6] = {.lex_state = 22}, + [7] = {.lex_state = 22}, + [8] = {.lex_state = 22}, [9] = {.lex_state = 1}, [10] = {.lex_state = 1}, [11] = {.lex_state = 1}, @@ -4874,7 +4868,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [76] = {.lex_state = 1}, [77] = {.lex_state = 1}, [78] = {.lex_state = 1}, - [79] = {.lex_state = 0}, + [79] = {.lex_state = 1}, [80] = {.lex_state = 0}, [81] = {.lex_state = 0}, [82] = {.lex_state = 0}, @@ -4889,16 +4883,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [91] = {.lex_state = 0}, [92] = {.lex_state = 0}, [93] = {.lex_state = 0}, - [94] = {.lex_state = 23}, + [94] = {.lex_state = 22}, [95] = {.lex_state = 0}, [96] = {.lex_state = 0}, [97] = {.lex_state = 0}, [98] = {.lex_state = 0}, - [99] = {.lex_state = 0}, + [99] = {.lex_state = 1}, [100] = {.lex_state = 0}, - [101] = {.lex_state = 1}, - [102] = {.lex_state = 1}, - [103] = {.lex_state = 1}, + [101] = {.lex_state = 0}, + [102] = {.lex_state = 0}, + [103] = {.lex_state = 0}, [104] = {.lex_state = 0}, [105] = {.lex_state = 0}, [106] = {.lex_state = 0}, @@ -4914,33 +4908,33 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 0}, [117] = {.lex_state = 0}, [118] = {.lex_state = 0}, - [119] = {.lex_state = 0}, + [119] = {.lex_state = 1}, [120] = {.lex_state = 0}, [121] = {.lex_state = 0}, [122] = {.lex_state = 0}, [123] = {.lex_state = 1}, - [124] = {.lex_state = 0}, + [124] = {.lex_state = 1}, [125] = {.lex_state = 0}, [126] = {.lex_state = 1}, - [127] = {.lex_state = 1}, + [127] = {.lex_state = 0}, [128] = {.lex_state = 1}, - [129] = {.lex_state = 1}, - [130] = {.lex_state = 1}, + [129] = {.lex_state = 0}, + [130] = {.lex_state = 0}, [131] = {.lex_state = 1}, [132] = {.lex_state = 1}, [133] = {.lex_state = 1}, [134] = {.lex_state = 1}, [135] = {.lex_state = 1}, [136] = {.lex_state = 1}, - [137] = {.lex_state = 1}, + [137] = {.lex_state = 0}, [138] = {.lex_state = 1}, [139] = {.lex_state = 1}, - [140] = {.lex_state = 0}, + [140] = {.lex_state = 1}, [141] = {.lex_state = 1}, [142] = {.lex_state = 1}, - [143] = {.lex_state = 1}, + [143] = {.lex_state = 0}, [144] = {.lex_state = 1}, - [145] = {.lex_state = 0}, + [145] = {.lex_state = 1}, [146] = {.lex_state = 1}, [147] = {.lex_state = 1}, [148] = {.lex_state = 1}, @@ -4953,7 +4947,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 1}, [156] = {.lex_state = 1}, [157] = {.lex_state = 1}, - [158] = {.lex_state = 0}, + [158] = {.lex_state = 1}, [159] = {.lex_state = 1}, [160] = {.lex_state = 1}, [161] = {.lex_state = 1}, @@ -4983,13 +4977,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [185] = {.lex_state = 1}, [186] = {.lex_state = 1}, [187] = {.lex_state = 1}, - [188] = {.lex_state = 0}, - [189] = {.lex_state = 0}, - [190] = {.lex_state = 0}, - [191] = {.lex_state = 1}, + [188] = {.lex_state = 1}, + [189] = {.lex_state = 1}, + [190] = {.lex_state = 1}, + [191] = {.lex_state = 0}, [192] = {.lex_state = 0}, [193] = {.lex_state = 0}, - [194] = {.lex_state = 0}, + [194] = {.lex_state = 1}, [195] = {.lex_state = 0}, [196] = {.lex_state = 0}, [197] = {.lex_state = 0}, @@ -5005,46 +4999,46 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 0}, [208] = {.lex_state = 0}, [209] = {.lex_state = 0}, - [210] = {.lex_state = 23}, - [211] = {.lex_state = 23}, - [212] = {.lex_state = 23}, - [213] = {.lex_state = 23}, - [214] = {.lex_state = 23}, - [215] = {.lex_state = 23}, - [216] = {.lex_state = 23}, - [217] = {.lex_state = 23}, - [218] = {.lex_state = 23}, - [219] = {.lex_state = 23}, - [220] = {.lex_state = 23}, - [221] = {.lex_state = 23}, - [222] = {.lex_state = 23}, - [223] = {.lex_state = 0}, - [224] = {.lex_state = 23}, - [225] = {.lex_state = 23}, - [226] = {.lex_state = 23}, - [227] = {.lex_state = 23}, + [210] = {.lex_state = 0}, + [211] = {.lex_state = 0}, + [212] = {.lex_state = 0}, + [213] = {.lex_state = 22}, + [214] = {.lex_state = 22}, + [215] = {.lex_state = 22}, + [216] = {.lex_state = 22}, + [217] = {.lex_state = 22}, + [218] = {.lex_state = 22}, + [219] = {.lex_state = 22}, + [220] = {.lex_state = 22}, + [221] = {.lex_state = 22}, + [222] = {.lex_state = 22}, + [223] = {.lex_state = 22}, + [224] = {.lex_state = 22}, + [225] = {.lex_state = 22}, + [226] = {.lex_state = 22}, + [227] = {.lex_state = 22}, [228] = {.lex_state = 0}, [229] = {.lex_state = 0}, [230] = {.lex_state = 0}, - [231] = {.lex_state = 23}, + [231] = {.lex_state = 22}, [232] = {.lex_state = 0}, [233] = {.lex_state = 0}, [234] = {.lex_state = 0}, - [235] = {.lex_state = 23}, - [236] = {.lex_state = 23}, + [235] = {.lex_state = 0}, + [236] = {.lex_state = 0}, [237] = {.lex_state = 0}, [238] = {.lex_state = 0}, [239] = {.lex_state = 0}, [240] = {.lex_state = 0}, - [241] = {.lex_state = 0}, - [242] = {.lex_state = 23}, - [243] = {.lex_state = 23}, - [244] = {.lex_state = 23}, - [245] = {.lex_state = 23}, - [246] = {.lex_state = 0}, - [247] = {.lex_state = 0}, + [241] = {.lex_state = 22}, + [242] = {.lex_state = 22}, + [243] = {.lex_state = 22}, + [244] = {.lex_state = 22}, + [245] = {.lex_state = 22}, + [246] = {.lex_state = 22}, + [247] = {.lex_state = 22}, [248] = {.lex_state = 0}, - [249] = {.lex_state = 0}, + [249] = {.lex_state = 22}, [250] = {.lex_state = 0}, [251] = {.lex_state = 0}, [252] = {.lex_state = 0}, @@ -5054,164 +5048,164 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [256] = {.lex_state = 0}, [257] = {.lex_state = 0}, [258] = {.lex_state = 0}, - [259] = {.lex_state = 0}, - [260] = {.lex_state = 0}, + [259] = {.lex_state = 22}, + [260] = {.lex_state = 22}, [261] = {.lex_state = 0}, [262] = {.lex_state = 0}, - [263] = {.lex_state = 23}, + [263] = {.lex_state = 0}, [264] = {.lex_state = 0}, [265] = {.lex_state = 0}, - [266] = {.lex_state = 23}, - [267] = {.lex_state = 23}, + [266] = {.lex_state = 0}, + [267] = {.lex_state = 0}, [268] = {.lex_state = 0}, - [269] = {.lex_state = 23}, - [270] = {.lex_state = 23}, - [271] = {.lex_state = 23}, - [272] = {.lex_state = 0}, + [269] = {.lex_state = 22}, + [270] = {.lex_state = 22}, + [271] = {.lex_state = 0}, + [272] = {.lex_state = 22}, [273] = {.lex_state = 0}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 23}, + [274] = {.lex_state = 22}, + [275] = {.lex_state = 0}, [276] = {.lex_state = 0}, - [277] = {.lex_state = 23}, - [278] = {.lex_state = 23}, - [279] = {.lex_state = 0}, + [277] = {.lex_state = 22}, + [278] = {.lex_state = 0}, + [279] = {.lex_state = 22}, [280] = {.lex_state = 0}, - [281] = {.lex_state = 23}, - [282] = {.lex_state = 23}, - [283] = {.lex_state = 23}, - [284] = {.lex_state = 23}, + [281] = {.lex_state = 22}, + [282] = {.lex_state = 22}, + [283] = {.lex_state = 0}, + [284] = {.lex_state = 0}, [285] = {.lex_state = 0}, - [286] = {.lex_state = 23}, - [287] = {.lex_state = 0}, - [288] = {.lex_state = 0}, - [289] = {.lex_state = 23}, - [290] = {.lex_state = 23}, - [291] = {.lex_state = 23}, - [292] = {.lex_state = 0}, - [293] = {.lex_state = 0}, - [294] = {.lex_state = 23}, - [295] = {.lex_state = 23}, - [296] = {.lex_state = 23}, - [297] = {.lex_state = 23}, - [298] = {.lex_state = 23}, - [299] = {.lex_state = 23}, - [300] = {.lex_state = 23}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 23}, - [303] = {.lex_state = 23}, - [304] = {.lex_state = 23}, - [305] = {.lex_state = 23}, - [306] = {.lex_state = 23}, - [307] = {.lex_state = 23}, - [308] = {.lex_state = 23}, - [309] = {.lex_state = 23}, - [310] = {.lex_state = 23}, - [311] = {.lex_state = 23}, - [312] = {.lex_state = 23}, - [313] = {.lex_state = 23}, - [314] = {.lex_state = 23}, - [315] = {.lex_state = 23}, - [316] = {.lex_state = 23}, - [317] = {.lex_state = 23}, - [318] = {.lex_state = 23}, - [319] = {.lex_state = 23}, - [320] = {.lex_state = 23}, - [321] = {.lex_state = 23}, - [322] = {.lex_state = 23}, - [323] = {.lex_state = 23}, - [324] = {.lex_state = 0}, - [325] = {.lex_state = 0}, - [326] = {.lex_state = 23}, - [327] = {.lex_state = 23}, - [328] = {.lex_state = 23}, - [329] = {.lex_state = 23}, - [330] = {.lex_state = 23}, - [331] = {.lex_state = 23}, - [332] = {.lex_state = 23}, - [333] = {.lex_state = 0}, - [334] = {.lex_state = 23}, - [335] = {.lex_state = 23}, - [336] = {.lex_state = 23}, - [337] = {.lex_state = 23}, - [338] = {.lex_state = 23}, - [339] = {.lex_state = 23}, - [340] = {.lex_state = 23}, - [341] = {.lex_state = 23}, - [342] = {.lex_state = 23}, - [343] = {.lex_state = 23}, - [344] = {.lex_state = 23}, - [345] = {.lex_state = 23}, - [346] = {.lex_state = 23}, - [347] = {.lex_state = 23}, - [348] = {.lex_state = 23}, - [349] = {.lex_state = 23}, - [350] = {.lex_state = 23}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 23}, - [353] = {.lex_state = 23}, - [354] = {.lex_state = 23}, - [355] = {.lex_state = 23}, - [356] = {.lex_state = 23}, - [357] = {.lex_state = 23}, - [358] = {.lex_state = 23}, - [359] = {.lex_state = 23}, - [360] = {.lex_state = 23}, - [361] = {.lex_state = 23}, - [362] = {.lex_state = 23}, - [363] = {.lex_state = 23}, - [364] = {.lex_state = 23}, - [365] = {.lex_state = 23}, - [366] = {.lex_state = 23}, - [367] = {.lex_state = 23}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 23}, - [370] = {.lex_state = 23}, - [371] = {.lex_state = 23}, - [372] = {.lex_state = 23}, - [373] = {.lex_state = 23}, - [374] = {.lex_state = 23}, - [375] = {.lex_state = 23}, - [376] = {.lex_state = 23}, - [377] = {.lex_state = 0}, - [378] = {.lex_state = 23}, - [379] = {.lex_state = 23}, - [380] = {.lex_state = 23}, - [381] = {.lex_state = 23}, - [382] = {.lex_state = 23}, - [383] = {.lex_state = 0}, - [384] = {.lex_state = 23}, - [385] = {.lex_state = 23}, - [386] = {.lex_state = 23}, - [387] = {.lex_state = 23}, - [388] = {.lex_state = 23}, - [389] = {.lex_state = 23}, - [390] = {.lex_state = 23}, - [391] = {.lex_state = 23}, - [392] = {.lex_state = 23}, - [393] = {.lex_state = 23}, - [394] = {.lex_state = 23}, - [395] = {.lex_state = 23}, - [396] = {.lex_state = 23}, - [397] = {.lex_state = 23}, - [398] = {.lex_state = 0}, - [399] = {.lex_state = 23}, - [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 = 23}, - [410] = {.lex_state = 23}, - [411] = {.lex_state = 23}, - [412] = {.lex_state = 0}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 0}, - [416] = {.lex_state = 0}, + [286] = {.lex_state = 22}, + [287] = {.lex_state = 22}, + [288] = {.lex_state = 22}, + [289] = {.lex_state = 22}, + [290] = {.lex_state = 0}, + [291] = {.lex_state = 0}, + [292] = {.lex_state = 22}, + [293] = {.lex_state = 22}, + [294] = {.lex_state = 0}, + [295] = {.lex_state = 22}, + [296] = {.lex_state = 0}, + [297] = {.lex_state = 0}, + [298] = {.lex_state = 0}, + [299] = {.lex_state = 22}, + [300] = {.lex_state = 22}, + [301] = {.lex_state = 22}, + [302] = {.lex_state = 22}, + [303] = {.lex_state = 0}, + [304] = {.lex_state = 22}, + [305] = {.lex_state = 22}, + [306] = {.lex_state = 22}, + [307] = {.lex_state = 22}, + [308] = {.lex_state = 22}, + [309] = {.lex_state = 22}, + [310] = {.lex_state = 22}, + [311] = {.lex_state = 22}, + [312] = {.lex_state = 22}, + [313] = {.lex_state = 22}, + [314] = {.lex_state = 22}, + [315] = {.lex_state = 22}, + [316] = {.lex_state = 22}, + [317] = {.lex_state = 22}, + [318] = {.lex_state = 22}, + [319] = {.lex_state = 22}, + [320] = {.lex_state = 22}, + [321] = {.lex_state = 22}, + [322] = {.lex_state = 22}, + [323] = {.lex_state = 22}, + [324] = {.lex_state = 22}, + [325] = {.lex_state = 22}, + [326] = {.lex_state = 22}, + [327] = {.lex_state = 22}, + [328] = {.lex_state = 22}, + [329] = {.lex_state = 22}, + [330] = {.lex_state = 22}, + [331] = {.lex_state = 22}, + [332] = {.lex_state = 22}, + [333] = {.lex_state = 22}, + [334] = {.lex_state = 22}, + [335] = {.lex_state = 22}, + [336] = {.lex_state = 22}, + [337] = {.lex_state = 22}, + [338] = {.lex_state = 22}, + [339] = {.lex_state = 22}, + [340] = {.lex_state = 0}, + [341] = {.lex_state = 22}, + [342] = {.lex_state = 22}, + [343] = {.lex_state = 0}, + [344] = {.lex_state = 22}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 22}, + [347] = {.lex_state = 22}, + [348] = {.lex_state = 22}, + [349] = {.lex_state = 22}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 22}, + [352] = {.lex_state = 22}, + [353] = {.lex_state = 22}, + [354] = {.lex_state = 22}, + [355] = {.lex_state = 22}, + [356] = {.lex_state = 22}, + [357] = {.lex_state = 22}, + [358] = {.lex_state = 22}, + [359] = {.lex_state = 0}, + [360] = {.lex_state = 22}, + [361] = {.lex_state = 22}, + [362] = {.lex_state = 22}, + [363] = {.lex_state = 22}, + [364] = {.lex_state = 22}, + [365] = {.lex_state = 22}, + [366] = {.lex_state = 22}, + [367] = {.lex_state = 22}, + [368] = {.lex_state = 22}, + [369] = {.lex_state = 22}, + [370] = {.lex_state = 22}, + [371] = {.lex_state = 0}, + [372] = {.lex_state = 22}, + [373] = {.lex_state = 22}, + [374] = {.lex_state = 22}, + [375] = {.lex_state = 22}, + [376] = {.lex_state = 22}, + [377] = {.lex_state = 22}, + [378] = {.lex_state = 22}, + [379] = {.lex_state = 22}, + [380] = {.lex_state = 22}, + [381] = {.lex_state = 22}, + [382] = {.lex_state = 22}, + [383] = {.lex_state = 22}, + [384] = {.lex_state = 22}, + [385] = {.lex_state = 22}, + [386] = {.lex_state = 22}, + [387] = {.lex_state = 22}, + [388] = {.lex_state = 0}, + [389] = {.lex_state = 22}, + [390] = {.lex_state = 22}, + [391] = {.lex_state = 22}, + [392] = {.lex_state = 22}, + [393] = {.lex_state = 22}, + [394] = {.lex_state = 22}, + [395] = {.lex_state = 22}, + [396] = {.lex_state = 22}, + [397] = {.lex_state = 22}, + [398] = {.lex_state = 22}, + [399] = {.lex_state = 22}, + [400] = {.lex_state = 22}, + [401] = {.lex_state = 22}, + [402] = {.lex_state = 0}, + [403] = {.lex_state = 22}, + [404] = {.lex_state = 22}, + [405] = {.lex_state = 22}, + [406] = {.lex_state = 22}, + [407] = {.lex_state = 22}, + [408] = {.lex_state = 22}, + [409] = {.lex_state = 22}, + [410] = {.lex_state = 22}, + [411] = {.lex_state = 22}, + [412] = {.lex_state = 22}, + [413] = {.lex_state = 22}, + [414] = {.lex_state = 22}, + [415] = {.lex_state = 22}, + [416] = {.lex_state = 22}, [417] = {.lex_state = 0}, [418] = {.lex_state = 0}, [419] = {.lex_state = 0}, @@ -5235,296 +5229,296 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [437] = {.lex_state = 0}, [438] = {.lex_state = 0}, [439] = {.lex_state = 0}, - [440] = {.lex_state = 23}, - [441] = {.lex_state = 23}, - [442] = {.lex_state = 23}, - [443] = {.lex_state = 23}, - [444] = {.lex_state = 23}, - [445] = {.lex_state = 23}, - [446] = {.lex_state = 23}, - [447] = {.lex_state = 23}, - [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}, - [458] = {.lex_state = 23}, - [459] = {.lex_state = 23}, - [460] = {.lex_state = 23}, - [461] = {.lex_state = 23}, - [462] = {.lex_state = 23}, - [463] = {.lex_state = 23}, - [464] = {.lex_state = 23}, - [465] = {.lex_state = 23}, - [466] = {.lex_state = 23}, - [467] = {.lex_state = 23}, - [468] = {.lex_state = 23}, - [469] = {.lex_state = 23}, - [470] = {.lex_state = 23}, - [471] = {.lex_state = 23}, - [472] = {.lex_state = 23}, - [473] = {.lex_state = 23}, - [474] = {.lex_state = 23}, - [475] = {.lex_state = 23}, - [476] = {.lex_state = 23}, - [477] = {.lex_state = 23}, - [478] = {.lex_state = 23}, - [479] = {.lex_state = 23}, - [480] = {.lex_state = 23}, - [481] = {.lex_state = 23}, - [482] = {.lex_state = 23}, - [483] = {.lex_state = 23}, - [484] = {.lex_state = 23}, - [485] = {.lex_state = 23}, - [486] = {.lex_state = 23}, - [487] = {.lex_state = 23}, - [488] = {.lex_state = 23}, - [489] = {.lex_state = 23}, - [490] = {.lex_state = 23}, - [491] = {.lex_state = 23}, - [492] = {.lex_state = 23}, - [493] = {.lex_state = 23}, - [494] = {.lex_state = 23}, - [495] = {.lex_state = 23}, - [496] = {.lex_state = 23}, - [497] = {.lex_state = 23}, - [498] = {.lex_state = 23}, - [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 = 23}, - [508] = {.lex_state = 23}, - [509] = {.lex_state = 23}, - [510] = {.lex_state = 23}, - [511] = {.lex_state = 23}, - [512] = {.lex_state = 23}, - [513] = {.lex_state = 23}, - [514] = {.lex_state = 23}, - [515] = {.lex_state = 23}, - [516] = {.lex_state = 23}, - [517] = {.lex_state = 0}, - [518] = {.lex_state = 0}, - [519] = {.lex_state = 23}, - [520] = {.lex_state = 23}, - [521] = {.lex_state = 23}, - [522] = {.lex_state = 23}, - [523] = {.lex_state = 23}, - [524] = {.lex_state = 23}, - [525] = {.lex_state = 23}, - [526] = {.lex_state = 23}, - [527] = {.lex_state = 23}, - [528] = {.lex_state = 23}, - [529] = {.lex_state = 23}, - [530] = {.lex_state = 23}, - [531] = {.lex_state = 23}, - [532] = {.lex_state = 23}, - [533] = {.lex_state = 23}, - [534] = {.lex_state = 23}, - [535] = {.lex_state = 0}, - [536] = {.lex_state = 0}, - [537] = {.lex_state = 23}, - [538] = {.lex_state = 23}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 23}, - [541] = {.lex_state = 23}, - [542] = {.lex_state = 23}, + [440] = {.lex_state = 0}, + [441] = {.lex_state = 0}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 0}, + [444] = {.lex_state = 0}, + [445] = {.lex_state = 22}, + [446] = {.lex_state = 22}, + [447] = {.lex_state = 22}, + [448] = {.lex_state = 22}, + [449] = {.lex_state = 22}, + [450] = {.lex_state = 22}, + [451] = {.lex_state = 22}, + [452] = {.lex_state = 22}, + [453] = {.lex_state = 22}, + [454] = {.lex_state = 22}, + [455] = {.lex_state = 22}, + [456] = {.lex_state = 22}, + [457] = {.lex_state = 22}, + [458] = {.lex_state = 22}, + [459] = {.lex_state = 22}, + [460] = {.lex_state = 22}, + [461] = {.lex_state = 22}, + [462] = {.lex_state = 22}, + [463] = {.lex_state = 22}, + [464] = {.lex_state = 22}, + [465] = {.lex_state = 22}, + [466] = {.lex_state = 22}, + [467] = {.lex_state = 22}, + [468] = {.lex_state = 22}, + [469] = {.lex_state = 22}, + [470] = {.lex_state = 22}, + [471] = {.lex_state = 22}, + [472] = {.lex_state = 22}, + [473] = {.lex_state = 22}, + [474] = {.lex_state = 22}, + [475] = {.lex_state = 22}, + [476] = {.lex_state = 22}, + [477] = {.lex_state = 22}, + [478] = {.lex_state = 22}, + [479] = {.lex_state = 22}, + [480] = {.lex_state = 22}, + [481] = {.lex_state = 22}, + [482] = {.lex_state = 22}, + [483] = {.lex_state = 22}, + [484] = {.lex_state = 22}, + [485] = {.lex_state = 22}, + [486] = {.lex_state = 22}, + [487] = {.lex_state = 22}, + [488] = {.lex_state = 22}, + [489] = {.lex_state = 22}, + [490] = {.lex_state = 22}, + [491] = {.lex_state = 22}, + [492] = {.lex_state = 22}, + [493] = {.lex_state = 22}, + [494] = {.lex_state = 22}, + [495] = {.lex_state = 22}, + [496] = {.lex_state = 22}, + [497] = {.lex_state = 22}, + [498] = {.lex_state = 22}, + [499] = {.lex_state = 22}, + [500] = {.lex_state = 22}, + [501] = {.lex_state = 22}, + [502] = {.lex_state = 22}, + [503] = {.lex_state = 22}, + [504] = {.lex_state = 22}, + [505] = {.lex_state = 22}, + [506] = {.lex_state = 22}, + [507] = {.lex_state = 22}, + [508] = {.lex_state = 22}, + [509] = {.lex_state = 22}, + [510] = {.lex_state = 22}, + [511] = {.lex_state = 22}, + [512] = {.lex_state = 22}, + [513] = {.lex_state = 22}, + [514] = {.lex_state = 22}, + [515] = {.lex_state = 22}, + [516] = {.lex_state = 22}, + [517] = {.lex_state = 22}, + [518] = {.lex_state = 22}, + [519] = {.lex_state = 22}, + [520] = {.lex_state = 22}, + [521] = {.lex_state = 0}, + [522] = {.lex_state = 22}, + [523] = {.lex_state = 22}, + [524] = {.lex_state = 0}, + [525] = {.lex_state = 22}, + [526] = {.lex_state = 22}, + [527] = {.lex_state = 22}, + [528] = {.lex_state = 22}, + [529] = {.lex_state = 22}, + [530] = {.lex_state = 22}, + [531] = {.lex_state = 22}, + [532] = {.lex_state = 22}, + [533] = {.lex_state = 22}, + [534] = {.lex_state = 22}, + [535] = {.lex_state = 22}, + [536] = {.lex_state = 22}, + [537] = {.lex_state = 22}, + [538] = {.lex_state = 22}, + [539] = {.lex_state = 22}, + [540] = {.lex_state = 0}, + [541] = {.lex_state = 22}, + [542] = {.lex_state = 22}, [543] = {.lex_state = 0}, - [544] = {.lex_state = 23}, + [544] = {.lex_state = 0}, [545] = {.lex_state = 0}, - [546] = {.lex_state = 23}, - [547] = {.lex_state = 23}, - [548] = {.lex_state = 23}, - [549] = {.lex_state = 23}, - [550] = {.lex_state = 23}, - [551] = {.lex_state = 23}, - [552] = {.lex_state = 23}, - [553] = {.lex_state = 23}, - [554] = {.lex_state = 0}, - [555] = {.lex_state = 0}, - [556] = {.lex_state = 23}, - [557] = {.lex_state = 23}, - [558] = {.lex_state = 23}, - [559] = {.lex_state = 23}, - [560] = {.lex_state = 0}, - [561] = {.lex_state = 23}, - [562] = {.lex_state = 23}, - [563] = {.lex_state = 23}, - [564] = {.lex_state = 23}, - [565] = {.lex_state = 23}, - [566] = {.lex_state = 23}, - [567] = {.lex_state = 23}, - [568] = {.lex_state = 23}, - [569] = {.lex_state = 0}, + [546] = {.lex_state = 22}, + [547] = {.lex_state = 22}, + [548] = {.lex_state = 0}, + [549] = {.lex_state = 22}, + [550] = {.lex_state = 22}, + [551] = {.lex_state = 0}, + [552] = {.lex_state = 22}, + [553] = {.lex_state = 0}, + [554] = {.lex_state = 22}, + [555] = {.lex_state = 22}, + [556] = {.lex_state = 22}, + [557] = {.lex_state = 0}, + [558] = {.lex_state = 22}, + [559] = {.lex_state = 0}, + [560] = {.lex_state = 22}, + [561] = {.lex_state = 22}, + [562] = {.lex_state = 22}, + [563] = {.lex_state = 22}, + [564] = {.lex_state = 22}, + [565] = {.lex_state = 22}, + [566] = {.lex_state = 22}, + [567] = {.lex_state = 22}, + [568] = {.lex_state = 22}, + [569] = {.lex_state = 22}, [570] = {.lex_state = 0}, - [571] = {.lex_state = 23}, - [572] = {.lex_state = 23}, - [573] = {.lex_state = 23}, - [574] = {.lex_state = 23}, - [575] = {.lex_state = 23}, - [576] = {.lex_state = 23}, - [577] = {.lex_state = 23}, - [578] = {.lex_state = 23}, - [579] = {.lex_state = 23}, - [580] = {.lex_state = 23}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 23}, - [583] = {.lex_state = 23}, - [584] = {.lex_state = 23}, - [585] = {.lex_state = 23}, + [571] = {.lex_state = 22}, + [572] = {.lex_state = 22}, + [573] = {.lex_state = 22}, + [574] = {.lex_state = 22}, + [575] = {.lex_state = 22}, + [576] = {.lex_state = 22}, + [577] = {.lex_state = 22}, + [578] = {.lex_state = 22}, + [579] = {.lex_state = 22}, + [580] = {.lex_state = 22}, + [581] = {.lex_state = 22}, + [582] = {.lex_state = 22}, + [583] = {.lex_state = 22}, + [584] = {.lex_state = 22}, + [585] = {.lex_state = 22}, [586] = {.lex_state = 0}, [587] = {.lex_state = 0}, - [588] = {.lex_state = 0}, - [589] = {.lex_state = 23}, + [588] = {.lex_state = 22}, + [589] = {.lex_state = 22}, [590] = {.lex_state = 0}, - [591] = {.lex_state = 23}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 23}, + [591] = {.lex_state = 22}, + [592] = {.lex_state = 22}, + [593] = {.lex_state = 0}, [594] = {.lex_state = 0}, [595] = {.lex_state = 0}, - [596] = {.lex_state = 23}, + [596] = {.lex_state = 0}, [597] = {.lex_state = 0}, - [598] = {.lex_state = 23}, - [599] = {.lex_state = 0}, - [600] = {.lex_state = 0}, - [601] = {.lex_state = 23}, - [602] = {.lex_state = 23}, - [603] = {.lex_state = 0}, - [604] = {.lex_state = 23}, - [605] = {.lex_state = 0}, - [606] = {.lex_state = 0}, - [607] = {.lex_state = 23}, - [608] = {.lex_state = 23}, - [609] = {.lex_state = 0}, + [598] = {.lex_state = 0}, + [599] = {.lex_state = 22}, + [600] = {.lex_state = 22}, + [601] = {.lex_state = 0}, + [602] = {.lex_state = 0}, + [603] = {.lex_state = 22}, + [604] = {.lex_state = 0}, + [605] = {.lex_state = 22}, + [606] = {.lex_state = 22}, + [607] = {.lex_state = 22}, + [608] = {.lex_state = 22}, + [609] = {.lex_state = 22}, [610] = {.lex_state = 0}, - [611] = {.lex_state = 23}, - [612] = {.lex_state = 23}, - [613] = {.lex_state = 0}, + [611] = {.lex_state = 22}, + [612] = {.lex_state = 0}, + [613] = {.lex_state = 22}, [614] = {.lex_state = 0}, [615] = {.lex_state = 0}, - [616] = {.lex_state = 0}, - [617] = {.lex_state = 0}, - [618] = {.lex_state = 0}, + [616] = {.lex_state = 22}, + [617] = {.lex_state = 22}, + [618] = {.lex_state = 22}, [619] = {.lex_state = 0}, [620] = {.lex_state = 0}, - [621] = {.lex_state = 23}, - [622] = {.lex_state = 23}, - [623] = {.lex_state = 23}, - [624] = {.lex_state = 23}, - [625] = {.lex_state = 23}, + [621] = {.lex_state = 0}, + [622] = {.lex_state = 0}, + [623] = {.lex_state = 0}, + [624] = {.lex_state = 0}, + [625] = {.lex_state = 0}, [626] = {.lex_state = 0}, - [627] = {.lex_state = 23}, - [628] = {.lex_state = 23}, - [629] = {.lex_state = 23}, - [630] = {.lex_state = 0}, - [631] = {.lex_state = 23}, - [632] = {.lex_state = 23}, - [633] = {.lex_state = 23}, - [634] = {.lex_state = 23}, + [627] = {.lex_state = 22}, + [628] = {.lex_state = 22}, + [629] = {.lex_state = 22}, + [630] = {.lex_state = 22}, + [631] = {.lex_state = 22}, + [632] = {.lex_state = 22}, + [633] = {.lex_state = 22}, + [634] = {.lex_state = 22}, [635] = {.lex_state = 0}, [636] = {.lex_state = 0}, - [637] = {.lex_state = 0}, - [638] = {.lex_state = 0}, - [639] = {.lex_state = 0}, + [637] = {.lex_state = 22}, + [638] = {.lex_state = 22}, + [639] = {.lex_state = 22}, [640] = {.lex_state = 0}, [641] = {.lex_state = 0}, - [642] = {.lex_state = 0}, - [643] = {.lex_state = 0}, + [642] = {.lex_state = 22}, + [643] = {.lex_state = 22}, [644] = {.lex_state = 0}, - [645] = {.lex_state = 0}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 0}, - [648] = {.lex_state = 23}, - [649] = {.lex_state = 23}, - [650] = {.lex_state = 23}, - [651] = {.lex_state = 23}, - [652] = {.lex_state = 23}, - [653] = {.lex_state = 23}, - [654] = {.lex_state = 23}, - [655] = {.lex_state = 23}, - [656] = {.lex_state = 23}, - [657] = {.lex_state = 23}, - [658] = {.lex_state = 23}, - [659] = {.lex_state = 23}, - [660] = {.lex_state = 23}, - [661] = {.lex_state = 23}, - [662] = {.lex_state = 23}, - [663] = {.lex_state = 23}, - [664] = {.lex_state = 23}, - [665] = {.lex_state = 23}, - [666] = {.lex_state = 23}, - [667] = {.lex_state = 23}, + [645] = {.lex_state = 22}, + [646] = {.lex_state = 22}, + [647] = {.lex_state = 22}, + [648] = {.lex_state = 0}, + [649] = {.lex_state = 0}, + [650] = {.lex_state = 22}, + [651] = {.lex_state = 0}, + [652] = {.lex_state = 0}, + [653] = {.lex_state = 0}, + [654] = {.lex_state = 22}, + [655] = {.lex_state = 22}, + [656] = {.lex_state = 0}, + [657] = {.lex_state = 22}, + [658] = {.lex_state = 22}, + [659] = {.lex_state = 22}, + [660] = {.lex_state = 22}, + [661] = {.lex_state = 0}, + [662] = {.lex_state = 0}, + [663] = {.lex_state = 22}, + [664] = {.lex_state = 22}, + [665] = {.lex_state = 22}, + [666] = {.lex_state = 22}, + [667] = {.lex_state = 22}, [668] = {.lex_state = 0}, - [669] = {.lex_state = 23}, - [670] = {.lex_state = 0}, + [669] = {.lex_state = 22}, + [670] = {.lex_state = 22}, [671] = {.lex_state = 0}, - [672] = {.lex_state = 0}, - [673] = {.lex_state = 0}, - [674] = {.lex_state = 0}, - [675] = {.lex_state = 0}, - [676] = {.lex_state = 0}, - [677] = {.lex_state = 0}, - [678] = {.lex_state = 0}, - [679] = {.lex_state = 0}, - [680] = {.lex_state = 0}, - [681] = {.lex_state = 0}, - [682] = {.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 = 0}, - [692] = {.lex_state = 23}, - [693] = {.lex_state = 0}, - [694] = {.lex_state = 0}, - [695] = {.lex_state = 23}, - [696] = {.lex_state = 23}, - [697] = {.lex_state = 23}, - [698] = {.lex_state = 0}, - [699] = {.lex_state = 0}, - [700] = {.lex_state = 23}, - [701] = {.lex_state = 0}, - [702] = {.lex_state = 0}, - [703] = {.lex_state = 0}, - [704] = {.lex_state = 0}, - [705] = {.lex_state = 0}, - [706] = {.lex_state = 0}, - [707] = {.lex_state = 0}, - [708] = {.lex_state = 0}, - [709] = {.lex_state = 23}, - [710] = {.lex_state = 23}, - [711] = {.lex_state = 0}, - [712] = {.lex_state = 23}, - [713] = {.lex_state = 0}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 23}, - [716] = {.lex_state = 23}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 23}, - [719] = {.lex_state = 23}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0}, - [722] = {.lex_state = 23}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 23}, - [727] = {.lex_state = 23}, + [672] = {.lex_state = 22}, + [673] = {.lex_state = 22}, + [674] = {.lex_state = 22}, + [675] = {.lex_state = 22}, + [676] = {.lex_state = 22}, + [677] = {.lex_state = 22}, + [678] = {.lex_state = 22}, + [679] = {.lex_state = 22}, + [680] = {.lex_state = 22}, + [681] = {.lex_state = 22}, + [682] = {.lex_state = 22}, + [683] = {.lex_state = 22}, + [684] = {.lex_state = 22}, + [685] = {.lex_state = 22}, + [686] = {.lex_state = 22}, + [687] = {.lex_state = 22}, + [688] = {.lex_state = 22}, + [689] = {.lex_state = 22}, + [690] = {.lex_state = 22}, + [691] = {.lex_state = 22}, + [692] = {.lex_state = 22}, + [693] = {.lex_state = 22}, + [694] = {.lex_state = 22}, + [695] = {.lex_state = 22}, + [696] = {.lex_state = 22}, + [697] = {.lex_state = 22}, + [698] = {.lex_state = 22}, + [699] = {.lex_state = 22}, + [700] = {.lex_state = 22}, + [701] = {.lex_state = 22}, + [702] = {.lex_state = 22}, + [703] = {.lex_state = 22}, + [704] = {.lex_state = 22}, + [705] = {.lex_state = 22}, + [706] = {.lex_state = 22}, + [707] = {.lex_state = 22}, + [708] = {.lex_state = 22}, + [709] = {.lex_state = 22}, + [710] = {.lex_state = 22}, + [711] = {.lex_state = 22}, + [712] = {.lex_state = 22}, + [713] = {.lex_state = 22}, + [714] = {.lex_state = 22}, + [715] = {.lex_state = 22}, + [716] = {.lex_state = 22}, + [717] = {.lex_state = 22}, + [718] = {.lex_state = 22}, + [719] = {.lex_state = 22}, + [720] = {.lex_state = 22}, + [721] = {.lex_state = 22}, + [722] = {.lex_state = 22}, + [723] = {.lex_state = 22}, + [724] = {.lex_state = 22}, + [725] = {.lex_state = 22}, + [726] = {.lex_state = 22}, + [727] = {.lex_state = 22}, [728] = {.lex_state = 0}, - [729] = {.lex_state = 23}, + [729] = {.lex_state = 0}, [730] = {.lex_state = 0}, [731] = {.lex_state = 0}, [732] = {.lex_state = 0}, @@ -5535,11 +5529,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [737] = {.lex_state = 0}, [738] = {.lex_state = 0}, [739] = {.lex_state = 0}, - [740] = {.lex_state = 23}, - [741] = {.lex_state = 23}, + [740] = {.lex_state = 0}, + [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 = 0}, @@ -5557,8 +5551,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [759] = {.lex_state = 0}, [760] = {.lex_state = 0}, [761] = {.lex_state = 0}, - [762] = {.lex_state = 23}, - [763] = {.lex_state = 23}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 0}, [764] = {.lex_state = 0}, [765] = {.lex_state = 0}, [766] = {.lex_state = 0}, @@ -5568,7 +5562,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [770] = {.lex_state = 0}, [771] = {.lex_state = 0}, [772] = {.lex_state = 0}, - [773] = {.lex_state = 23}, + [773] = {.lex_state = 0}, [774] = {.lex_state = 0}, [775] = {.lex_state = 0}, [776] = {.lex_state = 0}, @@ -5576,27 +5570,27 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [778] = {.lex_state = 0}, [779] = {.lex_state = 0}, [780] = {.lex_state = 0}, - [781] = {.lex_state = 23}, - [782] = {.lex_state = 23}, + [781] = {.lex_state = 0}, + [782] = {.lex_state = 0}, [783] = {.lex_state = 0}, [784] = {.lex_state = 0}, [785] = {.lex_state = 0}, [786] = {.lex_state = 0}, [787] = {.lex_state = 0}, [788] = {.lex_state = 0}, - [789] = {.lex_state = 23}, - [790] = {.lex_state = 23}, - [791] = {.lex_state = 23}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 0}, + [791] = {.lex_state = 0}, [792] = {.lex_state = 0}, [793] = {.lex_state = 0}, [794] = {.lex_state = 0}, - [795] = {.lex_state = 23}, + [795] = {.lex_state = 0}, [796] = {.lex_state = 0}, [797] = {.lex_state = 0}, [798] = {.lex_state = 0}, - [799] = {.lex_state = 23}, - [800] = {.lex_state = 23}, - [801] = {.lex_state = 23}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 0}, + [801] = {.lex_state = 0}, [802] = {.lex_state = 0}, [803] = {.lex_state = 0}, [804] = {.lex_state = 0}, @@ -5608,106 +5602,106 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [810] = {.lex_state = 0}, [811] = {.lex_state = 0}, [812] = {.lex_state = 0}, - [813] = {.lex_state = 23}, - [814] = {.lex_state = 23}, - [815] = {.lex_state = 23}, - [816] = {.lex_state = 23}, + [813] = {.lex_state = 0}, + [814] = {.lex_state = 0}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0}, [817] = {.lex_state = 0}, [818] = {.lex_state = 0}, - [819] = {.lex_state = 23}, - [820] = {.lex_state = 23}, + [819] = {.lex_state = 0}, + [820] = {.lex_state = 0}, [821] = {.lex_state = 0}, [822] = {.lex_state = 0}, - [823] = {.lex_state = 23}, - [824] = {.lex_state = 23}, + [823] = {.lex_state = 0}, + [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, [827] = {.lex_state = 0}, - [828] = {.lex_state = 23}, - [829] = {.lex_state = 23}, + [828] = {.lex_state = 0}, + [829] = {.lex_state = 0}, [830] = {.lex_state = 0}, - [831] = {.lex_state = 23}, - [832] = {.lex_state = 23}, + [831] = {.lex_state = 0}, + [832] = {.lex_state = 0}, [833] = {.lex_state = 0}, - [834] = {.lex_state = 23}, - [835] = {.lex_state = 23}, - [836] = {.lex_state = 23}, - [837] = {.lex_state = 23}, - [838] = {.lex_state = 23}, - [839] = {.lex_state = 23}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 0}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 0}, [840] = {.lex_state = 0}, - [841] = {.lex_state = 23}, + [841] = {.lex_state = 0}, [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, - [844] = {.lex_state = 23}, + [844] = {.lex_state = 0}, [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, [847] = {.lex_state = 0}, - [848] = {.lex_state = 23}, - [849] = {.lex_state = 23}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 0}, [850] = {.lex_state = 0}, - [851] = {.lex_state = 23}, + [851] = {.lex_state = 0}, [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, + [853] = {.lex_state = 22}, [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 23}, + [855] = {.lex_state = 22}, + [856] = {.lex_state = 22}, + [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 0}, + [860] = {.lex_state = 22}, [861] = {.lex_state = 0}, - [862] = {.lex_state = 23}, - [863] = {.lex_state = 23}, + [862] = {.lex_state = 22}, + [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, + [865] = {.lex_state = 22}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 23}, + [867] = {.lex_state = 0}, [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, - [871] = {.lex_state = 23}, - [872] = {.lex_state = 0}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 22}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 0}, + [874] = {.lex_state = 22}, [875] = {.lex_state = 0}, - [876] = {.lex_state = 23}, - [877] = {.lex_state = 23}, - [878] = {.lex_state = 23}, - [879] = {.lex_state = 23}, - [880] = {.lex_state = 23}, - [881] = {.lex_state = 23}, - [882] = {.lex_state = 23}, - [883] = {.lex_state = 23}, - [884] = {.lex_state = 23}, - [885] = {.lex_state = 23}, - [886] = {.lex_state = 23}, - [887] = {.lex_state = 23}, + [876] = {.lex_state = 22}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 22}, + [883] = {.lex_state = 22}, + [884] = {.lex_state = 22}, + [885] = {.lex_state = 22}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 22}, [888] = {.lex_state = 0}, - [889] = {.lex_state = 23}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 23}, - [892] = {.lex_state = 23}, - [893] = {.lex_state = 23}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 23}, - [896] = {.lex_state = 23}, - [897] = {.lex_state = 23}, + [889] = {.lex_state = 22}, + [890] = {.lex_state = 22}, + [891] = {.lex_state = 22}, + [892] = {.lex_state = 22}, + [893] = {.lex_state = 22}, + [894] = {.lex_state = 22}, + [895] = {.lex_state = 22}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 22}, [898] = {.lex_state = 0}, - [899] = {.lex_state = 23}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 23}, - [903] = {.lex_state = 23}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 23}, - [906] = {.lex_state = 23}, - [907] = {.lex_state = 0}, + [899] = {.lex_state = 22}, + [900] = {.lex_state = 22}, + [901] = {.lex_state = 22}, + [902] = {.lex_state = 22}, + [903] = {.lex_state = 22}, + [904] = {.lex_state = 22}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 22}, [908] = {.lex_state = 0}, [909] = {.lex_state = 0}, - [910] = {.lex_state = 23}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 0}, + [910] = {.lex_state = 22}, + [911] = {.lex_state = 22}, + [912] = {.lex_state = 22}, [913] = {.lex_state = 0}, [914] = {.lex_state = 0}, [915] = {.lex_state = 0}, @@ -5715,131 +5709,131 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 23}, - [922] = {.lex_state = 23}, + [920] = {.lex_state = 22}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0}, [923] = {.lex_state = 0}, - [924] = {.lex_state = 23}, + [924] = {.lex_state = 0}, [925] = {.lex_state = 0}, [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, + [928] = {.lex_state = 22}, [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 23}, - [934] = {.lex_state = 23}, - [935] = {.lex_state = 23}, - [936] = {.lex_state = 23}, + [933] = {.lex_state = 22}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 22}, + [936] = {.lex_state = 22}, [937] = {.lex_state = 0}, - [938] = {.lex_state = 23}, + [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, + [942] = {.lex_state = 22}, [943] = {.lex_state = 0}, [944] = {.lex_state = 0}, [945] = {.lex_state = 0}, [946] = {.lex_state = 0}, [947] = {.lex_state = 0}, - [948] = {.lex_state = 23}, - [949] = {.lex_state = 23}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0}, [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 23}, + [952] = {.lex_state = 22}, + [953] = {.lex_state = 22}, + [954] = {.lex_state = 22}, + [955] = {.lex_state = 22}, [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 23}, + [957] = {.lex_state = 22}, + [958] = {.lex_state = 22}, [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, - [961] = {.lex_state = 23}, + [961] = {.lex_state = 22}, [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, [966] = {.lex_state = 0}, - [967] = {.lex_state = 0}, + [967] = {.lex_state = 22}, [968] = {.lex_state = 0}, - [969] = {.lex_state = 23}, - [970] = {.lex_state = 23}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0}, [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, - [973] = {.lex_state = 23}, - [974] = {.lex_state = 23}, + [973] = {.lex_state = 22}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, [977] = {.lex_state = 0}, - [978] = {.lex_state = 23}, - [979] = {.lex_state = 23}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 23}, - [982] = {.lex_state = 0}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 22}, + [980] = {.lex_state = 22}, + [981] = {.lex_state = 22}, + [982] = {.lex_state = 22}, [983] = {.lex_state = 0}, - [984] = {.lex_state = 23}, + [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, - [989] = {.lex_state = 23}, + [989] = {.lex_state = 22}, [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 23}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 23}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 22}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 23}, - [1000] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 22}, [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, + [1002] = {.lex_state = 22}, + [1003] = {.lex_state = 22}, + [1004] = {.lex_state = 22}, [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 23}, + [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0}, + [1011] = {.lex_state = 22}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 11}, - [1015] = {.lex_state = 0}, + [1013] = {.lex_state = 22}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 10}, [1016] = {.lex_state = 0}, [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 0}, + [1019] = {.lex_state = 22}, + [1020] = {.lex_state = 10}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 11}, - [1024] = {.lex_state = 11}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, + [1028] = {.lex_state = 10}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 23}, + [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 23}, + [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, + [1044] = {.lex_state = 22}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, [1047] = {.lex_state = 0}, @@ -5853,8 +5847,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 0}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, + [1058] = {.lex_state = 11}, + [1059] = {.lex_state = 22}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, @@ -5866,12 +5860,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 12}, + [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 23}, + [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 23}, + [1076] = {.lex_state = 0}, [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, @@ -5893,6 +5887,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 22}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5991,23 +5990,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(1)] = { - [sym_source_file] = STATE(1067), - [sym__top_level_declaration] = STATE(518), - [sym_tolk_required_version] = STATE(518), - [sym_import_directive] = STATE(518), - [sym_global_var_declaration] = STATE(518), - [sym_constant_declaration] = STATE(518), - [sym_type_alias_declaration] = STATE(518), - [sym_struct_declaration] = STATE(518), - [sym_enum_declaration] = STATE(518), - [sym_function_declaration] = STATE(518), - [sym_method_declaration] = STATE(518), - [sym_get_method_declaration] = STATE(518), - [sym_annotation_list] = STATE(869), - [sym_annotation] = STATE(854), - [sym_empty_statement] = STATE(518), - [aux_sym_source_file_repeat1] = STATE(518), - [aux_sym_annotation_list_repeat1] = STATE(854), + [sym_source_file] = STATE(1091), + [sym__top_level_declaration] = STATE(521), + [sym_tolk_required_version] = STATE(521), + [sym_import_directive] = STATE(521), + [sym_global_var_declaration] = STATE(521), + [sym_constant_declaration] = STATE(521), + [sym_type_alias_declaration] = STATE(521), + [sym_struct_declaration] = STATE(521), + [sym_enum_declaration] = STATE(521), + [sym_function_declaration] = STATE(521), + [sym_method_declaration] = STATE(521), + [sym_get_method_declaration] = STATE(521), + [sym_annotation_list] = STATE(877), + [sym_annotation] = STATE(858), + [sym_empty_statement] = STATE(521), + [aux_sym_source_file_repeat1] = STATE(521), + [aux_sym_annotation_list_repeat1] = STATE(858), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_tolk] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -6023,53 +6022,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(7), - [sym__statement_require_semicolon_unless_last] = STATE(488), - [sym__statement] = STATE(7), - [sym_local_vars_declaration] = STATE(488), - [sym_block_statement] = STATE(7), - [sym_return_statement] = STATE(488), - [sym_repeat_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_do_while_statement] = STATE(488), - [sym_while_statement] = STATE(7), - [sym_throw_statement] = STATE(488), - [sym_assert_statement] = STATE(488), - [sym_try_catch_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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(7), - [sym_match_expression] = STATE(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_instance_argument] = STATE(991), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), - [aux_sym_block_statement_repeat1] = STATE(7), + [sym__statement_ending_with_brace] = STATE(8), + [sym__statement_require_semicolon_unless_last] = STATE(487), + [sym__statement] = STATE(8), + [sym_local_vars_declaration] = STATE(487), + [sym_block_statement] = STATE(8), + [sym_return_statement] = STATE(487), + [sym_repeat_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_do_while_statement] = STATE(487), + [sym_while_statement] = STATE(8), + [sym_throw_statement] = STATE(487), + [sym_assert_statement] = STATE(487), + [sym_try_catch_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(487), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), + [sym_match_statement] = STATE(8), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_instance_argument] = STATE(990), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), + [aux_sym_block_statement_repeat1] = STATE(8), [sym_identifier] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), @@ -6101,64 +6100,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(73), [anon_sym_false] = ACTIONS(73), [sym_null_literal] = ACTIONS(75), - [sym_underscore] = ACTIONS(75), + [sym_underscore] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [STATE(3)] = { - [sym__statement_ending_with_brace] = STATE(7), - [sym__statement_require_semicolon_unless_last] = STATE(488), - [sym__statement] = STATE(7), - [sym_local_vars_declaration] = STATE(488), - [sym_block_statement] = STATE(7), - [sym_return_statement] = STATE(488), - [sym_repeat_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_do_while_statement] = STATE(488), - [sym_while_statement] = STATE(7), - [sym_throw_statement] = STATE(488), - [sym_assert_statement] = STATE(488), - [sym_try_catch_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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(7), - [sym_match_expression] = STATE(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_instance_argument] = STATE(959), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), - [aux_sym_block_statement_repeat1] = STATE(7), + [sym__statement_ending_with_brace] = STATE(8), + [sym__statement_require_semicolon_unless_last] = STATE(487), + [sym__statement] = STATE(8), + [sym_local_vars_declaration] = STATE(487), + [sym_block_statement] = STATE(8), + [sym_return_statement] = STATE(487), + [sym_repeat_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_do_while_statement] = STATE(487), + [sym_while_statement] = STATE(8), + [sym_throw_statement] = STATE(487), + [sym_assert_statement] = STATE(487), + [sym_try_catch_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(487), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), + [sym_match_statement] = STATE(8), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_instance_argument] = STATE(965), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), + [aux_sym_block_statement_repeat1] = STATE(8), [sym_identifier] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(81), [anon_sym_var] = ACTIONS(43), [anon_sym_val] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), @@ -6183,62 +6182,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(73), [anon_sym_false] = ACTIONS(73), [sym_null_literal] = ACTIONS(75), - [sym_underscore] = ACTIONS(75), + [sym_underscore] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [STATE(4)] = { - [sym__statement_ending_with_brace] = STATE(6), - [sym__statement_require_semicolon_unless_last] = STATE(483), - [sym__statement] = STATE(6), - [sym_local_vars_declaration] = STATE(483), - [sym_block_statement] = STATE(6), - [sym_return_statement] = STATE(483), - [sym_repeat_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_do_while_statement] = STATE(483), - [sym_while_statement] = STATE(6), - [sym_throw_statement] = STATE(483), - [sym_assert_statement] = STATE(483), - [sym_try_catch_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(483), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), - [aux_sym_block_statement_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(81), + [sym__statement_ending_with_brace] = STATE(4), + [sym__statement_require_semicolon_unless_last] = STATE(484), + [sym__statement] = STATE(4), + [sym_local_vars_declaration] = STATE(484), + [sym_block_statement] = STATE(4), + [sym_return_statement] = STATE(484), + [sym_repeat_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_do_while_statement] = STATE(484), + [sym_while_statement] = STATE(4), + [sym_throw_statement] = STATE(484), + [sym_assert_statement] = STATE(484), + [sym_try_catch_statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(484), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), + [sym_match_statement] = STATE(4), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), + [aux_sym_block_statement_repeat1] = STATE(4), + [sym_identifier] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(86), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(92), + [anon_sym_LBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(98), + [anon_sym_var] = ACTIONS(100), + [anon_sym_val] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_return] = ACTIONS(106), + [anon_sym_repeat] = ACTIONS(109), + [anon_sym_if] = ACTIONS(112), + [anon_sym_do] = ACTIONS(115), + [anon_sym_while] = ACTIONS(118), + [sym_break_statement] = ACTIONS(121), + [sym_continue_statement] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_try] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_lazy] = ACTIONS(136), + [anon_sym_match] = ACTIONS(139), + [sym_number_literal] = ACTIONS(142), + [sym_string_literal] = ACTIONS(142), + [anon_sym_true] = ACTIONS(145), + [anon_sym_false] = ACTIONS(145), + [sym_null_literal] = ACTIONS(148), + [sym_underscore] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + }, + [STATE(5)] = { + [sym__statement_ending_with_brace] = STATE(4), + [sym__statement_require_semicolon_unless_last] = STATE(501), + [sym__statement] = STATE(4), + [sym_local_vars_declaration] = STATE(501), + [sym_block_statement] = STATE(4), + [sym_return_statement] = STATE(501), + [sym_repeat_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_do_while_statement] = STATE(501), + [sym_while_statement] = STATE(4), + [sym_throw_statement] = STATE(501), + [sym_assert_statement] = STATE(501), + [sym_try_catch_statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(501), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), + [sym_match_statement] = STATE(4), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), + [aux_sym_block_statement_repeat1] = STATE(4), + [sym_identifier] = ACTIONS(154), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(156), [anon_sym_var] = ACTIONS(43), [anon_sym_val] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), @@ -6247,8 +6326,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(51), [anon_sym_do] = ACTIONS(53), [anon_sym_while] = ACTIONS(55), - [sym_break_statement] = ACTIONS(85), - [sym_continue_statement] = ACTIONS(85), + [sym_break_statement] = ACTIONS(158), + [sym_continue_statement] = ACTIONS(158), [anon_sym_throw] = ACTIONS(59), [anon_sym_assert] = ACTIONS(61), [anon_sym_try] = ACTIONS(63), @@ -6263,142 +6342,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(73), [anon_sym_false] = ACTIONS(73), [sym_null_literal] = ACTIONS(75), - [sym_underscore] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - }, - [STATE(5)] = { - [sym__statement_ending_with_brace] = STATE(5), - [sym__statement_require_semicolon_unless_last] = STATE(474), - [sym__statement] = STATE(5), - [sym_local_vars_declaration] = STATE(474), - [sym_block_statement] = STATE(5), - [sym_return_statement] = STATE(474), - [sym_repeat_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_do_while_statement] = STATE(474), - [sym_while_statement] = STATE(5), - [sym_throw_statement] = STATE(474), - [sym_assert_statement] = STATE(474), - [sym_try_catch_statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(474), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), - [aux_sym_block_statement_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(87), - [anon_sym_SEMI] = ACTIONS(90), - [anon_sym_PIPE] = ACTIONS(93), - [anon_sym_LPAREN] = ACTIONS(96), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(102), - [anon_sym_var] = ACTIONS(104), - [anon_sym_val] = ACTIONS(104), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_return] = ACTIONS(110), - [anon_sym_repeat] = ACTIONS(113), - [anon_sym_if] = ACTIONS(116), - [anon_sym_do] = ACTIONS(119), - [anon_sym_while] = ACTIONS(122), - [sym_break_statement] = ACTIONS(125), - [sym_continue_statement] = ACTIONS(125), - [anon_sym_throw] = ACTIONS(128), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_try] = ACTIONS(134), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_lazy] = ACTIONS(140), - [anon_sym_match] = ACTIONS(143), - [sym_number_literal] = ACTIONS(146), - [sym_string_literal] = ACTIONS(146), - [anon_sym_true] = ACTIONS(149), - [anon_sym_false] = ACTIONS(149), - [sym_null_literal] = ACTIONS(152), - [sym_underscore] = ACTIONS(152), + [sym_underscore] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [STATE(6)] = { [sym__statement_ending_with_brace] = STATE(5), - [sym__statement_require_semicolon_unless_last] = STATE(487), + [sym__statement_require_semicolon_unless_last] = STATE(483), [sym__statement] = STATE(5), - [sym_local_vars_declaration] = STATE(487), + [sym_local_vars_declaration] = STATE(483), [sym_block_statement] = STATE(5), - [sym_return_statement] = STATE(487), + [sym_return_statement] = STATE(483), [sym_repeat_statement] = STATE(5), [sym_if_statement] = STATE(5), - [sym_do_while_statement] = STATE(487), + [sym_do_while_statement] = STATE(483), [sym_while_statement] = STATE(5), - [sym_throw_statement] = STATE(487), - [sym_assert_statement] = STATE(487), + [sym_throw_statement] = STATE(483), + [sym_assert_statement] = STATE(483), [sym_try_catch_statement] = STATE(5), [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(487), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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_expression_statement] = STATE(483), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), [sym_match_statement] = STATE(5), - [sym_match_expression] = STATE(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), [aux_sym_block_statement_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(81), + [sym_identifier] = ACTIONS(154), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_var] = ACTIONS(43), [anon_sym_val] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), @@ -6407,8 +6406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(51), [anon_sym_do] = ACTIONS(53), [anon_sym_while] = ACTIONS(55), - [sym_break_statement] = ACTIONS(157), - [sym_continue_statement] = ACTIONS(157), + [sym_break_statement] = ACTIONS(162), + [sym_continue_statement] = ACTIONS(162), [anon_sym_throw] = ACTIONS(59), [anon_sym_assert] = ACTIONS(61), [anon_sym_try] = ACTIONS(63), @@ -6423,62 +6422,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(73), [anon_sym_false] = ACTIONS(73), [sym_null_literal] = ACTIONS(75), - [sym_underscore] = ACTIONS(75), + [sym_underscore] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [STATE(7)] = { - [sym__statement_ending_with_brace] = STATE(5), - [sym__statement_require_semicolon_unless_last] = STATE(489), - [sym__statement] = STATE(5), - [sym_local_vars_declaration] = STATE(489), - [sym_block_statement] = STATE(5), - [sym_return_statement] = STATE(489), - [sym_repeat_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_do_while_statement] = STATE(489), - [sym_while_statement] = STATE(5), - [sym_throw_statement] = STATE(489), - [sym_assert_statement] = STATE(489), - [sym_try_catch_statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(489), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), - [aux_sym_block_statement_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(81), + [sym__statement_ending_with_brace] = STATE(8), + [sym__statement_require_semicolon_unless_last] = STATE(487), + [sym__statement] = STATE(8), + [sym_local_vars_declaration] = STATE(487), + [sym_block_statement] = STATE(8), + [sym_return_statement] = STATE(487), + [sym_repeat_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_do_while_statement] = STATE(487), + [sym_while_statement] = STATE(8), + [sym_throw_statement] = STATE(487), + [sym_assert_statement] = STATE(487), + [sym_try_catch_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(487), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), + [sym_match_statement] = STATE(8), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), + [aux_sym_block_statement_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(154), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_var] = ACTIONS(43), [anon_sym_val] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), @@ -6487,8 +6486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(51), [anon_sym_do] = ACTIONS(53), [anon_sym_while] = ACTIONS(55), - [sym_break_statement] = ACTIONS(161), - [sym_continue_statement] = ACTIONS(161), + [sym_break_statement] = ACTIONS(57), + [sym_continue_statement] = ACTIONS(57), [anon_sym_throw] = ACTIONS(59), [anon_sym_assert] = ACTIONS(61), [anon_sym_try] = ACTIONS(63), @@ -6503,62 +6502,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(73), [anon_sym_false] = ACTIONS(73), [sym_null_literal] = ACTIONS(75), - [sym_underscore] = ACTIONS(75), + [sym_underscore] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [STATE(8)] = { - [sym__statement_ending_with_brace] = STATE(7), - [sym__statement_require_semicolon_unless_last] = STATE(488), - [sym__statement] = STATE(7), - [sym_local_vars_declaration] = STATE(488), - [sym_block_statement] = STATE(7), - [sym_return_statement] = STATE(488), - [sym_repeat_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_do_while_statement] = STATE(488), - [sym_while_statement] = STATE(7), - [sym_throw_statement] = STATE(488), - [sym_assert_statement] = STATE(488), - [sym_try_catch_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(12), - [sym_assignment] = STATE(12), - [sym_set_assignment] = STATE(12), - [sym_ternary_operator] = STATE(12), - [sym__comparison_lt_gt] = STATE(51), - [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(7), - [sym_match_expression] = STATE(76), - [sym_object_literal] = STATE(12), - [sym_object_literal_body] = STATE(52), - [sym_parenthesized_expression] = STATE(12), - [sym_tensor_expression] = STATE(12), - [sym_typed_tuple] = STATE(12), - [sym__type_hint] = STATE(899), - [sym_type_instantiatedTs] = STATE(899), - [sym_tensor_type] = STATE(899), - [sym_tuple_type] = STATE(899), - [sym_parenthesized_type] = STATE(899), - [sym_fun_callable_type] = STATE(899), - [sym_nullable_type] = STATE(899), - [sym_union_type] = STATE(899), - [sym_boolean_literal] = STATE(12), - [aux_sym_block_statement_repeat1] = STATE(7), - [sym_identifier] = ACTIONS(81), + [sym__statement_ending_with_brace] = STATE(4), + [sym__statement_require_semicolon_unless_last] = STATE(489), + [sym__statement] = STATE(4), + [sym_local_vars_declaration] = STATE(489), + [sym_block_statement] = STATE(4), + [sym_return_statement] = STATE(489), + [sym_repeat_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_do_while_statement] = STATE(489), + [sym_while_statement] = STATE(4), + [sym_throw_statement] = STATE(489), + [sym_assert_statement] = STATE(489), + [sym_try_catch_statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(489), + [sym__expression] = STATE(24), + [sym_assignment] = STATE(24), + [sym_set_assignment] = STATE(24), + [sym_ternary_operator] = STATE(24), + [sym__comparison_lt_gt] = STATE(52), + [sym_binary_operator] = STATE(24), + [sym_unary_operator] = STATE(24), + [sym_lazy_expression] = STATE(24), + [sym_cast_as_operator] = STATE(24), + [sym_is_type_operator] = STATE(24), + [sym_dot_access] = STATE(24), + [sym_not_null_operator] = STATE(24), + [sym_function_call] = STATE(24), + [sym_generic_instantiation] = STATE(24), + [sym_match_statement] = STATE(4), + [sym_match_expression] = STATE(51), + [sym_object_literal] = STATE(24), + [sym_object_literal_body] = STATE(53), + [sym_parenthesized_expression] = STATE(24), + [sym_tensor_expression] = STATE(24), + [sym_typed_tuple] = STATE(24), + [sym__type_hint] = STATE(907), + [sym_type_instantiatedTs] = STATE(907), + [sym_tensor_type] = STATE(907), + [sym_tuple_type] = STATE(907), + [sym_parenthesized_type] = STATE(907), + [sym_fun_callable_type] = STATE(907), + [sym_nullable_type] = STATE(907), + [sym_union_type] = STATE(907), + [sym_boolean_literal] = STATE(24), + [aux_sym_block_statement_repeat1] = STATE(4), + [sym_identifier] = ACTIONS(154), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(163), + [anon_sym_RBRACE] = ACTIONS(166), [anon_sym_var] = ACTIONS(43), [anon_sym_val] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), @@ -6567,8 +6566,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(51), [anon_sym_do] = ACTIONS(53), [anon_sym_while] = ACTIONS(55), - [sym_break_statement] = ACTIONS(57), - [sym_continue_statement] = ACTIONS(57), + [sym_break_statement] = ACTIONS(168), + [sym_continue_statement] = ACTIONS(168), [anon_sym_throw] = ACTIONS(59), [anon_sym_assert] = ACTIONS(61), [anon_sym_try] = ACTIONS(63), @@ -6583,2138 +6582,2422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(73), [anon_sym_false] = ACTIONS(73), [sym_null_literal] = ACTIONS(75), - [sym_underscore] = ACTIONS(75), + [sym_underscore] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [STATE(9)] = { - [sym__type_hint] = STATE(47), - [sym_type_instantiatedTs] = STATE(47), - [sym_tensor_type] = STATE(47), - [sym_tuple_type] = STATE(47), - [sym_parenthesized_type] = STATE(47), - [sym_fun_callable_type] = STATE(47), - [sym_nullable_type] = STATE(47), - [sym_union_type] = STATE(47), - [sym_identifier] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(167), - [anon_sym_EQ] = ACTIONS(169), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LT] = ACTIONS(169), - [anon_sym_GT] = ACTIONS(169), - [anon_sym_DASH_GT] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_val] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_return] = ACTIONS(169), - [anon_sym_repeat] = ACTIONS(169), - [anon_sym_if] = ACTIONS(169), - [anon_sym_do] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [sym_break_statement] = ACTIONS(169), - [sym_continue_statement] = ACTIONS(169), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_assert] = ACTIONS(169), - [anon_sym_try] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(167), - [anon_sym_PIPE_PIPE] = ACTIONS(167), - [anon_sym_AMP] = ACTIONS(169), - [anon_sym_CARET] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_LT_EQ_GT] = ACTIONS(167), - [anon_sym_LT_LT] = ACTIONS(169), - [anon_sym_GT_GT] = ACTIONS(169), - [anon_sym_TILDE_GT_GT] = ACTIONS(167), - [anon_sym_CARET_GT_GT] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(169), - [anon_sym_STAR] = ACTIONS(169), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(169), - [anon_sym_TILDE_SLASH] = ACTIONS(167), - [anon_sym_CARET_SLASH] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_lazy] = ACTIONS(169), - [anon_sym_as] = ACTIONS(169), - [anon_sym_is] = ACTIONS(169), - [anon_sym_BANGis] = ACTIONS(167), - [anon_sym_match] = ACTIONS(169), - [sym_number_literal] = ACTIONS(167), - [sym_string_literal] = ACTIONS(167), - [anon_sym_true] = ACTIONS(169), - [anon_sym_false] = ACTIONS(169), - [sym_null_literal] = ACTIONS(169), - [sym_underscore] = ACTIONS(169), + [sym__type_hint] = STATE(42), + [sym_type_instantiatedTs] = STATE(42), + [sym_tensor_type] = STATE(42), + [sym_tuple_type] = STATE(42), + [sym_parenthesized_type] = STATE(42), + [sym_fun_callable_type] = STATE(42), + [sym_nullable_type] = STATE(42), + [sym_union_type] = STATE(42), + [sym_identifier] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(172), + [anon_sym_RBRACE] = ACTIONS(172), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_var] = ACTIONS(174), + [anon_sym_val] = ACTIONS(174), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_return] = ACTIONS(174), + [anon_sym_repeat] = ACTIONS(174), + [anon_sym_if] = ACTIONS(174), + [anon_sym_do] = ACTIONS(174), + [anon_sym_while] = ACTIONS(174), + [sym_break_statement] = ACTIONS(174), + [sym_continue_statement] = ACTIONS(174), + [anon_sym_throw] = ACTIONS(174), + [anon_sym_assert] = ACTIONS(174), + [anon_sym_try] = ACTIONS(174), + [anon_sym_PLUS_EQ] = ACTIONS(172), + [anon_sym_DASH_EQ] = ACTIONS(172), + [anon_sym_STAR_EQ] = ACTIONS(172), + [anon_sym_SLASH_EQ] = ACTIONS(172), + [anon_sym_PERCENT_EQ] = ACTIONS(172), + [anon_sym_LT_LT_EQ] = ACTIONS(172), + [anon_sym_GT_GT_EQ] = ACTIONS(172), + [anon_sym_AMP_EQ] = ACTIONS(172), + [anon_sym_PIPE_EQ] = ACTIONS(172), + [anon_sym_CARET_EQ] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [anon_sym_AMP] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_EQ_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_LT_EQ_GT] = ACTIONS(172), + [anon_sym_LT_LT] = ACTIONS(174), + [anon_sym_GT_GT] = ACTIONS(174), + [anon_sym_TILDE_GT_GT] = ACTIONS(172), + [anon_sym_CARET_GT_GT] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(174), + [anon_sym_TILDE_SLASH] = ACTIONS(172), + [anon_sym_CARET_SLASH] = ACTIONS(172), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_lazy] = ACTIONS(174), + [anon_sym_as] = ACTIONS(174), + [anon_sym_is] = ACTIONS(174), + [anon_sym_BANGis] = ACTIONS(172), + [anon_sym_match] = ACTIONS(174), + [sym_number_literal] = ACTIONS(172), + [sym_string_literal] = ACTIONS(172), + [anon_sym_true] = ACTIONS(174), + [anon_sym_false] = ACTIONS(174), + [sym_null_literal] = ACTIONS(185), + [sym_underscore] = ACTIONS(174), [sym_comment] = ACTIONS(3), }, [STATE(10)] = { - [sym__type_hint] = STATE(47), - [sym_type_instantiatedTs] = STATE(47), - [sym_tensor_type] = STATE(47), - [sym_tuple_type] = STATE(47), - [sym_parenthesized_type] = STATE(47), - [sym_fun_callable_type] = STATE(47), - [sym_nullable_type] = STATE(47), - [sym_union_type] = STATE(47), - [sym_identifier] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(179), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(177), - [anon_sym_LT] = ACTIONS(179), - [anon_sym_GT] = ACTIONS(179), - [anon_sym_DASH_GT] = ACTIONS(181), - [anon_sym_var] = ACTIONS(179), - [anon_sym_val] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_return] = ACTIONS(179), - [anon_sym_repeat] = ACTIONS(179), - [anon_sym_if] = ACTIONS(179), - [anon_sym_do] = ACTIONS(179), - [anon_sym_while] = ACTIONS(179), - [sym_break_statement] = ACTIONS(179), - [sym_continue_statement] = ACTIONS(179), - [anon_sym_throw] = ACTIONS(179), - [anon_sym_assert] = ACTIONS(179), - [anon_sym_try] = ACTIONS(179), - [anon_sym_PLUS_EQ] = ACTIONS(177), - [anon_sym_DASH_EQ] = ACTIONS(177), - [anon_sym_STAR_EQ] = ACTIONS(177), - [anon_sym_SLASH_EQ] = ACTIONS(177), - [anon_sym_PERCENT_EQ] = ACTIONS(177), - [anon_sym_LT_LT_EQ] = ACTIONS(177), - [anon_sym_GT_GT_EQ] = ACTIONS(177), - [anon_sym_AMP_EQ] = ACTIONS(177), - [anon_sym_PIPE_EQ] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(181), - [anon_sym_AMP_AMP] = ACTIONS(177), - [anon_sym_PIPE_PIPE] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(179), - [anon_sym_CARET] = ACTIONS(179), - [anon_sym_EQ_EQ] = ACTIONS(177), - [anon_sym_BANG_EQ] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(179), - [anon_sym_GT_EQ] = ACTIONS(177), - [anon_sym_LT_EQ_GT] = ACTIONS(177), - [anon_sym_LT_LT] = ACTIONS(179), - [anon_sym_GT_GT] = ACTIONS(179), - [anon_sym_TILDE_GT_GT] = ACTIONS(177), - [anon_sym_CARET_GT_GT] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(179), - [anon_sym_PERCENT] = ACTIONS(179), - [anon_sym_TILDE_SLASH] = ACTIONS(177), - [anon_sym_CARET_SLASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_lazy] = ACTIONS(179), - [anon_sym_as] = ACTIONS(179), - [anon_sym_is] = ACTIONS(179), - [anon_sym_BANGis] = ACTIONS(177), - [anon_sym_match] = ACTIONS(179), - [sym_number_literal] = ACTIONS(177), - [sym_string_literal] = ACTIONS(177), - [anon_sym_true] = ACTIONS(179), - [anon_sym_false] = ACTIONS(179), - [sym_null_literal] = ACTIONS(179), - [sym_underscore] = ACTIONS(179), + [sym__type_hint] = STATE(42), + [sym_type_instantiatedTs] = STATE(42), + [sym_tensor_type] = STATE(42), + [sym_tuple_type] = STATE(42), + [sym_parenthesized_type] = STATE(42), + [sym_fun_callable_type] = STATE(42), + [sym_nullable_type] = STATE(42), + [sym_union_type] = STATE(42), + [sym_identifier] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(187), + [anon_sym_var] = ACTIONS(189), + [anon_sym_val] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_return] = ACTIONS(189), + [anon_sym_repeat] = ACTIONS(189), + [anon_sym_if] = ACTIONS(189), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(189), + [sym_break_statement] = ACTIONS(189), + [sym_continue_statement] = ACTIONS(189), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_assert] = ACTIONS(189), + [anon_sym_try] = ACTIONS(189), + [anon_sym_PLUS_EQ] = ACTIONS(187), + [anon_sym_DASH_EQ] = ACTIONS(187), + [anon_sym_STAR_EQ] = ACTIONS(187), + [anon_sym_SLASH_EQ] = ACTIONS(187), + [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_LT_LT_EQ] = ACTIONS(187), + [anon_sym_GT_GT_EQ] = ACTIONS(187), + [anon_sym_AMP_EQ] = ACTIONS(187), + [anon_sym_PIPE_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_LT_EQ_GT] = ACTIONS(187), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_TILDE_GT_GT] = ACTIONS(187), + [anon_sym_CARET_GT_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(189), + [anon_sym_PERCENT] = ACTIONS(189), + [anon_sym_TILDE_SLASH] = ACTIONS(187), + [anon_sym_CARET_SLASH] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(189), + [anon_sym_lazy] = ACTIONS(189), + [anon_sym_as] = ACTIONS(189), + [anon_sym_is] = ACTIONS(189), + [anon_sym_BANGis] = ACTIONS(187), + [anon_sym_match] = ACTIONS(189), + [sym_number_literal] = ACTIONS(187), + [sym_string_literal] = ACTIONS(187), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [sym_null_literal] = ACTIONS(185), + [sym_underscore] = ACTIONS(189), [sym_comment] = ACTIONS(3), }, [STATE(11)] = { - [sym_instantiationT_list] = STATE(531), - [sym_identifier] = ACTIONS(184), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(188), - [anon_sym_EQ] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(188), - [anon_sym_LBRACE] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(198), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_var] = ACTIONS(184), - [anon_sym_val] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_return] = ACTIONS(184), - [anon_sym_repeat] = ACTIONS(184), - [anon_sym_if] = ACTIONS(184), - [anon_sym_do] = ACTIONS(184), - [anon_sym_while] = ACTIONS(184), - [sym_break_statement] = ACTIONS(184), - [sym_continue_statement] = ACTIONS(184), - [anon_sym_throw] = ACTIONS(184), - [anon_sym_assert] = ACTIONS(184), - [anon_sym_try] = ACTIONS(184), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_SLASH_EQ] = ACTIONS(188), - [anon_sym_PERCENT_EQ] = ACTIONS(188), - [anon_sym_LT_LT_EQ] = ACTIONS(188), - [anon_sym_GT_GT_EQ] = ACTIONS(188), - [anon_sym_AMP_EQ] = ACTIONS(188), - [anon_sym_PIPE_EQ] = ACTIONS(188), - [anon_sym_CARET_EQ] = ACTIONS(188), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_AMP] = ACTIONS(184), - [anon_sym_CARET] = ACTIONS(184), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_LT_EQ_GT] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(184), - [anon_sym_GT_GT] = ACTIONS(184), - [anon_sym_TILDE_GT_GT] = ACTIONS(188), - [anon_sym_CARET_GT_GT] = ACTIONS(188), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(184), - [anon_sym_PERCENT] = ACTIONS(184), - [anon_sym_TILDE_SLASH] = ACTIONS(188), - [anon_sym_CARET_SLASH] = ACTIONS(188), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_TILDE] = ACTIONS(184), - [anon_sym_lazy] = ACTIONS(184), - [anon_sym_as] = ACTIONS(184), - [anon_sym_is] = ACTIONS(184), - [anon_sym_BANGis] = ACTIONS(188), - [anon_sym_match] = ACTIONS(184), - [sym_number_literal] = ACTIONS(188), - [sym_string_literal] = ACTIONS(188), - [anon_sym_true] = ACTIONS(184), - [anon_sym_false] = ACTIONS(184), - [sym_null_literal] = ACTIONS(184), - [sym_underscore] = ACTIONS(184), + [sym_instantiationT_list] = STATE(536), + [sym_identifier] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_DASH_GT] = ACTIONS(211), + [anon_sym_var] = ACTIONS(191), + [anon_sym_val] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_return] = ACTIONS(191), + [anon_sym_repeat] = ACTIONS(191), + [anon_sym_if] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_while] = ACTIONS(191), + [sym_break_statement] = ACTIONS(191), + [sym_continue_statement] = ACTIONS(191), + [anon_sym_throw] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(191), + [anon_sym_try] = ACTIONS(191), + [anon_sym_PLUS_EQ] = ACTIONS(195), + [anon_sym_DASH_EQ] = ACTIONS(195), + [anon_sym_STAR_EQ] = ACTIONS(195), + [anon_sym_SLASH_EQ] = ACTIONS(195), + [anon_sym_PERCENT_EQ] = ACTIONS(195), + [anon_sym_LT_LT_EQ] = ACTIONS(195), + [anon_sym_GT_GT_EQ] = ACTIONS(195), + [anon_sym_AMP_EQ] = ACTIONS(195), + [anon_sym_PIPE_EQ] = ACTIONS(195), + [anon_sym_CARET_EQ] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(195), + [anon_sym_LT_EQ_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(195), + [anon_sym_CARET_GT_GT] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(191), + [anon_sym_TILDE_SLASH] = ACTIONS(195), + [anon_sym_CARET_SLASH] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_lazy] = ACTIONS(191), + [anon_sym_as] = ACTIONS(191), + [anon_sym_is] = ACTIONS(191), + [anon_sym_BANGis] = ACTIONS(195), + [anon_sym_match] = ACTIONS(191), + [sym_number_literal] = ACTIONS(195), + [sym_string_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [sym_null_literal] = ACTIONS(191), + [sym_underscore] = ACTIONS(191), [sym_comment] = ACTIONS(3), }, [STATE(12)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(208), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(206), - [anon_sym_val] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(208), - [anon_sym_return] = ACTIONS(206), - [anon_sym_repeat] = ACTIONS(206), - [anon_sym_if] = ACTIONS(206), - [anon_sym_do] = ACTIONS(206), - [anon_sym_while] = ACTIONS(206), - [sym_break_statement] = ACTIONS(206), - [sym_continue_statement] = ACTIONS(206), - [anon_sym_throw] = ACTIONS(206), - [anon_sym_assert] = ACTIONS(206), - [anon_sym_try] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(206), - [anon_sym_lazy] = ACTIONS(206), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(206), - [sym_number_literal] = ACTIONS(208), - [sym_string_literal] = ACTIONS(208), - [anon_sym_true] = ACTIONS(206), - [anon_sym_false] = ACTIONS(206), - [sym_null_literal] = ACTIONS(206), - [sym_underscore] = ACTIONS(206), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_var] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_return] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [sym_break_statement] = ACTIONS(213), + [sym_continue_statement] = ACTIONS(213), + [anon_sym_throw] = ACTIONS(213), + [anon_sym_assert] = ACTIONS(213), + [anon_sym_try] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(215), + [anon_sym_DASH_EQ] = ACTIONS(215), + [anon_sym_STAR_EQ] = ACTIONS(215), + [anon_sym_SLASH_EQ] = ACTIONS(215), + [anon_sym_PERCENT_EQ] = ACTIONS(215), + [anon_sym_LT_LT_EQ] = ACTIONS(215), + [anon_sym_GT_GT_EQ] = ACTIONS(215), + [anon_sym_AMP_EQ] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(215), + [anon_sym_CARET_EQ] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(215), + [anon_sym_PIPE_PIPE] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_LT_EQ_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(213), + [anon_sym_GT_GT] = ACTIONS(213), + [anon_sym_TILDE_GT_GT] = ACTIONS(215), + [anon_sym_CARET_GT_GT] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_TILDE_SLASH] = ACTIONS(215), + [anon_sym_CARET_SLASH] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_lazy] = ACTIONS(213), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [sym_string_literal] = ACTIONS(215), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_null_literal] = ACTIONS(213), + [sym_underscore] = ACTIONS(213), [sym_comment] = ACTIONS(3), }, [STATE(13)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(250), - [anon_sym_val] = ACTIONS(250), - [anon_sym_LBRACK] = ACTIONS(252), - [anon_sym_return] = ACTIONS(250), - [anon_sym_repeat] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [sym_break_statement] = ACTIONS(250), - [sym_continue_statement] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_lazy] = ACTIONS(250), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(250), - [sym_number_literal] = ACTIONS(252), - [sym_string_literal] = ACTIONS(252), - [anon_sym_true] = ACTIONS(250), - [anon_sym_false] = ACTIONS(250), - [sym_null_literal] = ACTIONS(250), - [sym_underscore] = ACTIONS(250), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_var] = ACTIONS(229), + [anon_sym_val] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_return] = ACTIONS(229), + [anon_sym_repeat] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [sym_break_statement] = ACTIONS(229), + [sym_continue_statement] = ACTIONS(229), + [anon_sym_throw] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [sym_number_literal] = ACTIONS(231), + [sym_string_literal] = ACTIONS(231), + [anon_sym_true] = ACTIONS(229), + [anon_sym_false] = ACTIONS(229), + [sym_null_literal] = ACTIONS(229), + [sym_underscore] = ACTIONS(229), [sym_comment] = ACTIONS(3), }, [STATE(14)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(254), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(254), - [anon_sym_val] = ACTIONS(254), - [anon_sym_LBRACK] = ACTIONS(256), - [anon_sym_return] = ACTIONS(254), - [anon_sym_repeat] = ACTIONS(254), - [anon_sym_if] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [sym_break_statement] = ACTIONS(254), - [sym_continue_statement] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_lazy] = ACTIONS(254), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(254), - [sym_number_literal] = ACTIONS(256), - [sym_string_literal] = ACTIONS(256), - [anon_sym_true] = ACTIONS(254), - [anon_sym_false] = ACTIONS(254), - [sym_null_literal] = ACTIONS(254), - [sym_underscore] = ACTIONS(254), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_var] = ACTIONS(261), + [anon_sym_val] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_return] = ACTIONS(261), + [anon_sym_repeat] = ACTIONS(261), + [anon_sym_if] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [sym_break_statement] = ACTIONS(261), + [sym_continue_statement] = ACTIONS(261), + [anon_sym_throw] = ACTIONS(261), + [anon_sym_assert] = ACTIONS(261), + [anon_sym_try] = ACTIONS(261), + [anon_sym_PLUS_EQ] = ACTIONS(263), + [anon_sym_DASH_EQ] = ACTIONS(263), + [anon_sym_STAR_EQ] = ACTIONS(263), + [anon_sym_SLASH_EQ] = ACTIONS(263), + [anon_sym_PERCENT_EQ] = ACTIONS(263), + [anon_sym_LT_LT_EQ] = ACTIONS(263), + [anon_sym_GT_GT_EQ] = ACTIONS(263), + [anon_sym_AMP_EQ] = ACTIONS(263), + [anon_sym_PIPE_EQ] = ACTIONS(263), + [anon_sym_CARET_EQ] = ACTIONS(263), + [anon_sym_QMARK] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_CARET] = ACTIONS(261), + [anon_sym_EQ_EQ] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(263), + [anon_sym_LT_EQ] = ACTIONS(261), + [anon_sym_GT_EQ] = ACTIONS(263), + [anon_sym_LT_EQ_GT] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(261), + [anon_sym_TILDE_GT_GT] = ACTIONS(263), + [anon_sym_CARET_GT_GT] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(261), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_TILDE_SLASH] = ACTIONS(263), + [anon_sym_CARET_SLASH] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(261), + [anon_sym_lazy] = ACTIONS(261), + [anon_sym_as] = ACTIONS(261), + [anon_sym_is] = ACTIONS(261), + [anon_sym_BANGis] = ACTIONS(263), + [anon_sym_match] = ACTIONS(261), + [sym_number_literal] = ACTIONS(263), + [sym_string_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(261), + [anon_sym_false] = ACTIONS(261), + [sym_null_literal] = ACTIONS(261), + [sym_underscore] = ACTIONS(261), [sym_comment] = ACTIONS(3), }, [STATE(15)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(258), - [anon_sym_SEMI] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(258), - [anon_sym_val] = ACTIONS(258), - [anon_sym_LBRACK] = ACTIONS(260), - [anon_sym_return] = ACTIONS(258), - [anon_sym_repeat] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [sym_break_statement] = ACTIONS(258), - [sym_continue_statement] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_assert] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_lazy] = ACTIONS(258), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(258), - [sym_number_literal] = ACTIONS(260), - [sym_string_literal] = ACTIONS(260), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_null_literal] = ACTIONS(258), - [sym_underscore] = ACTIONS(258), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_var] = ACTIONS(265), + [anon_sym_val] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(267), + [anon_sym_return] = ACTIONS(265), + [anon_sym_repeat] = ACTIONS(265), + [anon_sym_if] = ACTIONS(265), + [anon_sym_do] = ACTIONS(265), + [anon_sym_while] = ACTIONS(265), + [sym_break_statement] = ACTIONS(265), + [sym_continue_statement] = ACTIONS(265), + [anon_sym_throw] = ACTIONS(265), + [anon_sym_assert] = ACTIONS(265), + [anon_sym_try] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(265), + [anon_sym_lazy] = ACTIONS(265), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(265), + [sym_number_literal] = ACTIONS(267), + [sym_string_literal] = ACTIONS(267), + [anon_sym_true] = ACTIONS(265), + [anon_sym_false] = ACTIONS(265), + [sym_null_literal] = ACTIONS(265), + [sym_underscore] = ACTIONS(265), [sym_comment] = ACTIONS(3), }, [STATE(16)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(262), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(264), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(262), - [anon_sym_val] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_return] = ACTIONS(262), - [anon_sym_repeat] = ACTIONS(262), - [anon_sym_if] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [sym_break_statement] = ACTIONS(262), - [sym_continue_statement] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_assert] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(262), - [anon_sym_lazy] = ACTIONS(262), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(262), - [sym_number_literal] = ACTIONS(264), - [sym_string_literal] = ACTIONS(264), - [anon_sym_true] = ACTIONS(262), - [anon_sym_false] = ACTIONS(262), - [sym_null_literal] = ACTIONS(262), - [sym_underscore] = ACTIONS(262), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_var] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_return] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [sym_break_statement] = ACTIONS(213), + [sym_continue_statement] = ACTIONS(213), + [anon_sym_throw] = ACTIONS(213), + [anon_sym_assert] = ACTIONS(213), + [anon_sym_try] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(215), + [anon_sym_DASH_EQ] = ACTIONS(215), + [anon_sym_STAR_EQ] = ACTIONS(215), + [anon_sym_SLASH_EQ] = ACTIONS(215), + [anon_sym_PERCENT_EQ] = ACTIONS(215), + [anon_sym_LT_LT_EQ] = ACTIONS(215), + [anon_sym_GT_GT_EQ] = ACTIONS(215), + [anon_sym_AMP_EQ] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(215), + [anon_sym_CARET_EQ] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(215), + [anon_sym_PIPE_PIPE] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_LT_EQ_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(213), + [anon_sym_GT_GT] = ACTIONS(213), + [anon_sym_TILDE_GT_GT] = ACTIONS(215), + [anon_sym_CARET_GT_GT] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_lazy] = ACTIONS(213), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [sym_string_literal] = ACTIONS(215), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_null_literal] = ACTIONS(213), + [sym_underscore] = ACTIONS(213), [sym_comment] = ACTIONS(3), }, [STATE(17)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(266), - [anon_sym_var] = ACTIONS(266), - [anon_sym_val] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(268), - [anon_sym_return] = ACTIONS(266), - [anon_sym_repeat] = ACTIONS(266), - [anon_sym_if] = ACTIONS(266), - [anon_sym_do] = ACTIONS(266), - [anon_sym_while] = ACTIONS(266), - [sym_break_statement] = ACTIONS(266), - [sym_continue_statement] = ACTIONS(266), - [anon_sym_throw] = ACTIONS(266), - [anon_sym_assert] = ACTIONS(266), - [anon_sym_try] = ACTIONS(266), - [anon_sym_PLUS_EQ] = ACTIONS(268), - [anon_sym_DASH_EQ] = ACTIONS(268), - [anon_sym_STAR_EQ] = ACTIONS(268), - [anon_sym_SLASH_EQ] = ACTIONS(268), - [anon_sym_PERCENT_EQ] = ACTIONS(268), - [anon_sym_LT_LT_EQ] = ACTIONS(268), - [anon_sym_GT_GT_EQ] = ACTIONS(268), - [anon_sym_AMP_EQ] = ACTIONS(268), - [anon_sym_PIPE_EQ] = ACTIONS(268), - [anon_sym_CARET_EQ] = ACTIONS(268), - [anon_sym_QMARK] = ACTIONS(268), - [anon_sym_AMP_AMP] = ACTIONS(268), - [anon_sym_PIPE_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_LT_EQ_GT] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_TILDE_GT_GT] = ACTIONS(268), - [anon_sym_CARET_GT_GT] = ACTIONS(268), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(266), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_TILDE_SLASH] = ACTIONS(268), - [anon_sym_CARET_SLASH] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(266), - [anon_sym_lazy] = ACTIONS(266), - [anon_sym_as] = ACTIONS(266), - [anon_sym_is] = ACTIONS(266), - [anon_sym_BANGis] = ACTIONS(268), - [anon_sym_match] = ACTIONS(266), - [sym_number_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(268), - [anon_sym_true] = ACTIONS(266), - [anon_sym_false] = ACTIONS(266), - [sym_null_literal] = ACTIONS(266), - [sym_underscore] = ACTIONS(266), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_var] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_return] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [sym_break_statement] = ACTIONS(213), + [sym_continue_statement] = ACTIONS(213), + [anon_sym_throw] = ACTIONS(213), + [anon_sym_assert] = ACTIONS(213), + [anon_sym_try] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(215), + [anon_sym_DASH_EQ] = ACTIONS(215), + [anon_sym_STAR_EQ] = ACTIONS(215), + [anon_sym_SLASH_EQ] = ACTIONS(215), + [anon_sym_PERCENT_EQ] = ACTIONS(215), + [anon_sym_LT_LT_EQ] = ACTIONS(215), + [anon_sym_GT_GT_EQ] = ACTIONS(215), + [anon_sym_AMP_EQ] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(215), + [anon_sym_CARET_EQ] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(215), + [anon_sym_PIPE_PIPE] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_lazy] = ACTIONS(213), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [sym_string_literal] = ACTIONS(215), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_null_literal] = ACTIONS(213), + [sym_underscore] = ACTIONS(213), [sym_comment] = ACTIONS(3), }, [STATE(18)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(270), - [anon_sym_val] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_return] = ACTIONS(270), - [anon_sym_repeat] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [sym_break_statement] = ACTIONS(270), - [sym_continue_statement] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(270), - [anon_sym_lazy] = ACTIONS(270), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(270), - [sym_number_literal] = ACTIONS(272), - [sym_string_literal] = ACTIONS(272), - [anon_sym_true] = ACTIONS(270), - [anon_sym_false] = ACTIONS(270), - [sym_null_literal] = ACTIONS(270), - [sym_underscore] = ACTIONS(270), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(272), + [anon_sym_SEMI] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_var] = ACTIONS(272), + [anon_sym_val] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_return] = ACTIONS(272), + [anon_sym_repeat] = ACTIONS(272), + [anon_sym_if] = ACTIONS(272), + [anon_sym_do] = ACTIONS(272), + [anon_sym_while] = ACTIONS(272), + [sym_break_statement] = ACTIONS(272), + [sym_continue_statement] = ACTIONS(272), + [anon_sym_throw] = ACTIONS(272), + [anon_sym_assert] = ACTIONS(272), + [anon_sym_try] = ACTIONS(272), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(272), + [anon_sym_lazy] = ACTIONS(272), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(272), + [sym_number_literal] = ACTIONS(274), + [sym_string_literal] = ACTIONS(274), + [anon_sym_true] = ACTIONS(272), + [anon_sym_false] = ACTIONS(272), + [sym_null_literal] = ACTIONS(272), + [sym_underscore] = ACTIONS(272), [sym_comment] = ACTIONS(3), }, [STATE(19)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(274), - [anon_sym_val] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(276), - [anon_sym_return] = ACTIONS(274), - [anon_sym_repeat] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_throw] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_LT_LT_EQ] = ACTIONS(276), - [anon_sym_GT_GT_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(274), - [anon_sym_lazy] = ACTIONS(274), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(274), - [sym_number_literal] = ACTIONS(276), - [sym_string_literal] = ACTIONS(276), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [sym_null_literal] = ACTIONS(274), - [sym_underscore] = ACTIONS(274), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_var] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_return] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [sym_break_statement] = ACTIONS(213), + [sym_continue_statement] = ACTIONS(213), + [anon_sym_throw] = ACTIONS(213), + [anon_sym_assert] = ACTIONS(213), + [anon_sym_try] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(215), + [anon_sym_DASH_EQ] = ACTIONS(215), + [anon_sym_STAR_EQ] = ACTIONS(215), + [anon_sym_SLASH_EQ] = ACTIONS(215), + [anon_sym_PERCENT_EQ] = ACTIONS(215), + [anon_sym_LT_LT_EQ] = ACTIONS(215), + [anon_sym_GT_GT_EQ] = ACTIONS(215), + [anon_sym_AMP_EQ] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(215), + [anon_sym_CARET_EQ] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(215), + [anon_sym_PIPE_PIPE] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_lazy] = ACTIONS(213), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [sym_string_literal] = ACTIONS(215), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_null_literal] = ACTIONS(213), + [sym_underscore] = ACTIONS(213), [sym_comment] = ACTIONS(3), }, [STATE(20)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(274), - [anon_sym_val] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(276), - [anon_sym_return] = ACTIONS(274), - [anon_sym_repeat] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_throw] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_LT_LT_EQ] = ACTIONS(276), - [anon_sym_GT_GT_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(274), - [anon_sym_lazy] = ACTIONS(274), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(274), - [sym_number_literal] = ACTIONS(276), - [sym_string_literal] = ACTIONS(276), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [sym_null_literal] = ACTIONS(274), - [sym_underscore] = ACTIONS(274), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_var] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_return] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [sym_break_statement] = ACTIONS(213), + [sym_continue_statement] = ACTIONS(213), + [anon_sym_throw] = ACTIONS(213), + [anon_sym_assert] = ACTIONS(213), + [anon_sym_try] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(215), + [anon_sym_DASH_EQ] = ACTIONS(215), + [anon_sym_STAR_EQ] = ACTIONS(215), + [anon_sym_SLASH_EQ] = ACTIONS(215), + [anon_sym_PERCENT_EQ] = ACTIONS(215), + [anon_sym_LT_LT_EQ] = ACTIONS(215), + [anon_sym_GT_GT_EQ] = ACTIONS(215), + [anon_sym_AMP_EQ] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(215), + [anon_sym_CARET_EQ] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(215), + [anon_sym_PIPE_PIPE] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_LT_EQ_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_lazy] = ACTIONS(213), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [sym_string_literal] = ACTIONS(215), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_null_literal] = ACTIONS(213), + [sym_underscore] = ACTIONS(213), [sym_comment] = ACTIONS(3), }, [STATE(21)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_var] = ACTIONS(274), - [anon_sym_val] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(276), - [anon_sym_return] = ACTIONS(274), - [anon_sym_repeat] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_throw] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_LT_LT_EQ] = ACTIONS(276), - [anon_sym_GT_GT_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ_GT] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(274), - [anon_sym_lazy] = ACTIONS(274), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(274), - [sym_number_literal] = ACTIONS(276), - [sym_string_literal] = ACTIONS(276), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [sym_null_literal] = ACTIONS(274), - [sym_underscore] = ACTIONS(274), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_var] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_return] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [sym_break_statement] = ACTIONS(213), + [sym_continue_statement] = ACTIONS(213), + [anon_sym_throw] = ACTIONS(213), + [anon_sym_assert] = ACTIONS(213), + [anon_sym_try] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(215), + [anon_sym_DASH_EQ] = ACTIONS(215), + [anon_sym_STAR_EQ] = ACTIONS(215), + [anon_sym_SLASH_EQ] = ACTIONS(215), + [anon_sym_PERCENT_EQ] = ACTIONS(215), + [anon_sym_LT_LT_EQ] = ACTIONS(215), + [anon_sym_GT_GT_EQ] = ACTIONS(215), + [anon_sym_AMP_EQ] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(215), + [anon_sym_CARET_EQ] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(215), + [anon_sym_PIPE_PIPE] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_LT_EQ_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(213), + [anon_sym_GT_GT] = ACTIONS(213), + [anon_sym_TILDE_GT_GT] = ACTIONS(215), + [anon_sym_CARET_GT_GT] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_lazy] = ACTIONS(213), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(213), + [sym_number_literal] = ACTIONS(215), + [sym_string_literal] = ACTIONS(215), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_null_literal] = ACTIONS(213), + [sym_underscore] = ACTIONS(213), [sym_comment] = ACTIONS(3), }, [STATE(22)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(281), - [anon_sym_SEMI] = ACTIONS(283), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(281), - [anon_sym_val] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(283), - [anon_sym_return] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [sym_break_statement] = ACTIONS(281), - [sym_continue_statement] = ACTIONS(281), - [anon_sym_throw] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(281), - [sym_number_literal] = ACTIONS(283), - [sym_string_literal] = ACTIONS(283), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [sym_null_literal] = ACTIONS(281), - [sym_underscore] = ACTIONS(281), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(278), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_var] = ACTIONS(276), + [anon_sym_val] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_return] = ACTIONS(276), + [anon_sym_repeat] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [sym_break_statement] = ACTIONS(276), + [sym_continue_statement] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_assert] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_lazy] = ACTIONS(276), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(276), + [sym_number_literal] = ACTIONS(278), + [sym_string_literal] = ACTIONS(278), + [anon_sym_true] = ACTIONS(276), + [anon_sym_false] = ACTIONS(276), + [sym_null_literal] = ACTIONS(276), + [sym_underscore] = ACTIONS(276), [sym_comment] = ACTIONS(3), }, [STATE(23)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_var] = ACTIONS(274), - [anon_sym_val] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(276), - [anon_sym_return] = ACTIONS(274), - [anon_sym_repeat] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_throw] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_LT_LT_EQ] = ACTIONS(276), - [anon_sym_GT_GT_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ_GT] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_TILDE_GT_GT] = ACTIONS(276), - [anon_sym_CARET_GT_GT] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(274), - [anon_sym_lazy] = ACTIONS(274), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(274), - [sym_number_literal] = ACTIONS(276), - [sym_string_literal] = ACTIONS(276), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [sym_null_literal] = ACTIONS(274), - [sym_underscore] = ACTIONS(274), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_PIPE] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_RBRACE] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(280), + [anon_sym_GT] = ACTIONS(280), + [anon_sym_var] = ACTIONS(280), + [anon_sym_val] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(282), + [anon_sym_return] = ACTIONS(280), + [anon_sym_repeat] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_do] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), + [sym_break_statement] = ACTIONS(280), + [sym_continue_statement] = ACTIONS(280), + [anon_sym_throw] = ACTIONS(280), + [anon_sym_assert] = ACTIONS(280), + [anon_sym_try] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_LT_LT_EQ] = ACTIONS(282), + [anon_sym_GT_GT_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(280), + [anon_sym_CARET] = ACTIONS(280), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(280), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ_GT] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(280), + [anon_sym_lazy] = ACTIONS(280), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [anon_sym_match] = ACTIONS(280), + [sym_number_literal] = ACTIONS(282), + [sym_string_literal] = ACTIONS(282), + [anon_sym_true] = ACTIONS(280), + [anon_sym_false] = ACTIONS(280), + [sym_null_literal] = ACTIONS(280), + [sym_underscore] = ACTIONS(280), [sym_comment] = ACTIONS(3), }, [STATE(24)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_var] = ACTIONS(274), - [anon_sym_val] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(276), - [anon_sym_return] = ACTIONS(274), - [anon_sym_repeat] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_throw] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_LT_LT_EQ] = ACTIONS(276), - [anon_sym_GT_GT_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ_GT] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_TILDE_GT_GT] = ACTIONS(276), - [anon_sym_CARET_GT_GT] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_TILDE_SLASH] = ACTIONS(276), - [anon_sym_CARET_SLASH] = ACTIONS(276), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(274), - [anon_sym_lazy] = ACTIONS(274), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(274), - [sym_number_literal] = ACTIONS(276), - [sym_string_literal] = ACTIONS(276), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [sym_null_literal] = ACTIONS(274), - [sym_underscore] = ACTIONS(274), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [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(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_lazy] = ACTIONS(284), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [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(25)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_RBRACE] = ACTIONS(287), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_var] = ACTIONS(285), - [anon_sym_val] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_return] = ACTIONS(285), - [anon_sym_repeat] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [sym_break_statement] = ACTIONS(285), - [sym_continue_statement] = ACTIONS(285), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_assert] = ACTIONS(285), - [anon_sym_try] = ACTIONS(285), - [anon_sym_PLUS_EQ] = ACTIONS(287), - [anon_sym_DASH_EQ] = ACTIONS(287), - [anon_sym_STAR_EQ] = ACTIONS(287), - [anon_sym_SLASH_EQ] = ACTIONS(287), - [anon_sym_PERCENT_EQ] = ACTIONS(287), - [anon_sym_LT_LT_EQ] = ACTIONS(287), - [anon_sym_GT_GT_EQ] = ACTIONS(287), - [anon_sym_AMP_EQ] = ACTIONS(287), - [anon_sym_PIPE_EQ] = ACTIONS(287), - [anon_sym_CARET_EQ] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT_EQ] = ACTIONS(287), - [anon_sym_LT_EQ_GT] = ACTIONS(287), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(285), - [anon_sym_lazy] = ACTIONS(285), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(285), - [sym_number_literal] = ACTIONS(287), - [sym_string_literal] = ACTIONS(287), - [anon_sym_true] = ACTIONS(285), - [anon_sym_false] = ACTIONS(285), - [sym_null_literal] = ACTIONS(285), - [sym_underscore] = ACTIONS(285), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(288), + [anon_sym_SEMI] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_RBRACE] = ACTIONS(290), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [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(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(288), + [anon_sym_lazy] = ACTIONS(288), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [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(26)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(291), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(289), - [anon_sym_val] = ACTIONS(289), - [anon_sym_LBRACK] = ACTIONS(291), - [anon_sym_return] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(289), - [anon_sym_if] = ACTIONS(289), - [anon_sym_do] = ACTIONS(289), - [anon_sym_while] = ACTIONS(289), - [sym_break_statement] = ACTIONS(289), - [sym_continue_statement] = ACTIONS(289), - [anon_sym_throw] = ACTIONS(289), - [anon_sym_assert] = ACTIONS(289), - [anon_sym_try] = ACTIONS(289), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(289), - [sym_number_literal] = ACTIONS(291), - [sym_string_literal] = ACTIONS(291), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [sym_null_literal] = ACTIONS(289), - [sym_underscore] = ACTIONS(289), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(292), + [anon_sym_SEMI] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [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(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_lazy] = ACTIONS(292), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [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), [sym_comment] = ACTIONS(3), }, [STATE(27)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(293), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_var] = ACTIONS(293), - [anon_sym_val] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_return] = ACTIONS(293), - [anon_sym_repeat] = ACTIONS(293), - [anon_sym_if] = ACTIONS(293), - [anon_sym_do] = ACTIONS(293), - [anon_sym_while] = ACTIONS(293), - [sym_break_statement] = ACTIONS(293), - [sym_continue_statement] = ACTIONS(293), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_assert] = ACTIONS(293), - [anon_sym_try] = ACTIONS(293), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_STAR_EQ] = ACTIONS(222), - [anon_sym_SLASH_EQ] = ACTIONS(222), - [anon_sym_PERCENT_EQ] = ACTIONS(222), - [anon_sym_LT_LT_EQ] = ACTIONS(222), - [anon_sym_GT_GT_EQ] = ACTIONS(222), - [anon_sym_AMP_EQ] = ACTIONS(222), - [anon_sym_PIPE_EQ] = ACTIONS(222), - [anon_sym_CARET_EQ] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_BANG_EQ] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(228), - [anon_sym_LT_EQ_GT] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(232), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_TILDE_GT_GT] = ACTIONS(234), - [anon_sym_CARET_GT_GT] = ACTIONS(234), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(293), - [anon_sym_lazy] = ACTIONS(293), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(293), - [sym_number_literal] = ACTIONS(295), - [sym_string_literal] = ACTIONS(295), - [anon_sym_true] = ACTIONS(293), - [anon_sym_false] = ACTIONS(293), - [sym_null_literal] = ACTIONS(293), - [sym_underscore] = ACTIONS(293), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(296), + [anon_sym_SEMI] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [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(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_lazy] = ACTIONS(296), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [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_comment] = ACTIONS(3), }, [STATE(28)] = { - [sym__brackets_lt_gt] = STATE(320), - [sym_argument_list] = STATE(68), - [sym_instantiationT_list] = STATE(69), - [sym_identifier] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_var] = ACTIONS(274), - [anon_sym_val] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(276), - [anon_sym_return] = ACTIONS(274), - [anon_sym_repeat] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_throw] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_LT_LT_EQ] = ACTIONS(276), - [anon_sym_GT_GT_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ_GT] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_TILDE_GT_GT] = ACTIONS(276), - [anon_sym_CARET_GT_GT] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_TILDE_SLASH] = ACTIONS(240), - [anon_sym_CARET_SLASH] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(274), - [anon_sym_lazy] = ACTIONS(274), - [anon_sym_as] = ACTIONS(244), - [anon_sym_is] = ACTIONS(246), - [anon_sym_BANGis] = ACTIONS(248), - [anon_sym_match] = ACTIONS(274), - [sym_number_literal] = ACTIONS(276), - [sym_string_literal] = ACTIONS(276), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [sym_null_literal] = ACTIONS(274), - [sym_underscore] = ACTIONS(274), + [sym__brackets_lt_gt] = STATE(393), + [sym_argument_list] = STATE(56), + [sym_instantiationT_list] = STATE(57), + [sym_identifier] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(239), + [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(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_SLASH_EQ] = ACTIONS(241), + [anon_sym_PERCENT_EQ] = ACTIONS(241), + [anon_sym_LT_LT_EQ] = ACTIONS(241), + [anon_sym_GT_GT_EQ] = ACTIONS(241), + [anon_sym_AMP_EQ] = ACTIONS(241), + [anon_sym_PIPE_EQ] = ACTIONS(241), + [anon_sym_CARET_EQ] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(247), + [anon_sym_BANG_EQ] = ACTIONS(247), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(247), + [anon_sym_LT_EQ_GT] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_TILDE_GT_GT] = ACTIONS(253), + [anon_sym_CARET_GT_GT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_TILDE_SLASH] = ACTIONS(259), + [anon_sym_CARET_SLASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(300), + [anon_sym_lazy] = ACTIONS(300), + [anon_sym_as] = ACTIONS(223), + [anon_sym_is] = ACTIONS(225), + [anon_sym_BANGis] = ACTIONS(227), + [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_comment] = ACTIONS(3), }, [STATE(29)] = { - [sym_instantiationT_list] = STATE(531), - [sym_identifier] = ACTIONS(184), - [anon_sym_SEMI] = ACTIONS(188), - [anon_sym_EQ] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(188), - [anon_sym_LBRACE] = ACTIONS(193), - [anon_sym_RBRACE] = ACTIONS(188), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_var] = ACTIONS(184), - [anon_sym_val] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_return] = ACTIONS(184), - [anon_sym_repeat] = ACTIONS(184), - [anon_sym_if] = ACTIONS(184), - [anon_sym_do] = ACTIONS(184), - [anon_sym_while] = ACTIONS(184), - [sym_break_statement] = ACTIONS(184), - [sym_continue_statement] = ACTIONS(184), - [anon_sym_throw] = ACTIONS(184), - [anon_sym_assert] = ACTIONS(184), - [anon_sym_try] = ACTIONS(184), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_SLASH_EQ] = ACTIONS(188), - [anon_sym_PERCENT_EQ] = ACTIONS(188), - [anon_sym_LT_LT_EQ] = ACTIONS(188), - [anon_sym_GT_GT_EQ] = ACTIONS(188), - [anon_sym_AMP_EQ] = ACTIONS(188), - [anon_sym_PIPE_EQ] = ACTIONS(188), - [anon_sym_CARET_EQ] = ACTIONS(188), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_AMP] = ACTIONS(184), - [anon_sym_CARET] = ACTIONS(184), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_LT_EQ_GT] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(184), - [anon_sym_GT_GT] = ACTIONS(184), - [anon_sym_TILDE_GT_GT] = ACTIONS(188), - [anon_sym_CARET_GT_GT] = ACTIONS(188), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(184), - [anon_sym_PERCENT] = ACTIONS(184), - [anon_sym_TILDE_SLASH] = ACTIONS(188), - [anon_sym_CARET_SLASH] = ACTIONS(188), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_TILDE] = ACTIONS(184), - [anon_sym_lazy] = ACTIONS(184), - [anon_sym_as] = ACTIONS(184), - [anon_sym_is] = ACTIONS(184), - [anon_sym_BANGis] = ACTIONS(188), - [anon_sym_match] = ACTIONS(184), - [sym_number_literal] = ACTIONS(188), - [sym_string_literal] = ACTIONS(188), - [anon_sym_true] = ACTIONS(184), - [anon_sym_false] = ACTIONS(184), - [sym_null_literal] = ACTIONS(184), - [sym_underscore] = ACTIONS(184), + [sym_instantiationT_list] = STATE(536), + [sym_identifier] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_DASH_GT] = ACTIONS(211), + [anon_sym_var] = ACTIONS(191), + [anon_sym_val] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_return] = ACTIONS(191), + [anon_sym_repeat] = ACTIONS(191), + [anon_sym_if] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_while] = ACTIONS(191), + [sym_break_statement] = ACTIONS(191), + [sym_continue_statement] = ACTIONS(191), + [anon_sym_throw] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(191), + [anon_sym_try] = ACTIONS(191), + [anon_sym_PLUS_EQ] = ACTIONS(195), + [anon_sym_DASH_EQ] = ACTIONS(195), + [anon_sym_STAR_EQ] = ACTIONS(195), + [anon_sym_SLASH_EQ] = ACTIONS(195), + [anon_sym_PERCENT_EQ] = ACTIONS(195), + [anon_sym_LT_LT_EQ] = ACTIONS(195), + [anon_sym_GT_GT_EQ] = ACTIONS(195), + [anon_sym_AMP_EQ] = ACTIONS(195), + [anon_sym_PIPE_EQ] = ACTIONS(195), + [anon_sym_CARET_EQ] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(195), + [anon_sym_LT_EQ_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(195), + [anon_sym_CARET_GT_GT] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(191), + [anon_sym_TILDE_SLASH] = ACTIONS(195), + [anon_sym_CARET_SLASH] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_lazy] = ACTIONS(191), + [anon_sym_as] = ACTIONS(191), + [anon_sym_is] = ACTIONS(191), + [anon_sym_BANGis] = ACTIONS(195), + [anon_sym_match] = ACTIONS(191), + [sym_number_literal] = ACTIONS(195), + [sym_string_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [sym_null_literal] = ACTIONS(191), + [sym_underscore] = ACTIONS(191), [sym_comment] = ACTIONS(3), }, [STATE(30)] = { - [sym_instantiationT_list] = STATE(31), - [sym_identifier] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(204), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_LBRACE] = ACTIONS(204), - [anon_sym_RBRACE] = ACTIONS(204), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(299), - [anon_sym_GT] = ACTIONS(297), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_var] = ACTIONS(297), - [anon_sym_val] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_return] = ACTIONS(297), - [anon_sym_repeat] = ACTIONS(297), - [anon_sym_if] = ACTIONS(297), - [anon_sym_do] = ACTIONS(297), - [anon_sym_while] = ACTIONS(297), - [sym_break_statement] = ACTIONS(297), - [sym_continue_statement] = ACTIONS(297), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_try] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(204), - [anon_sym_DASH_EQ] = ACTIONS(204), - [anon_sym_STAR_EQ] = ACTIONS(204), - [anon_sym_SLASH_EQ] = ACTIONS(204), - [anon_sym_PERCENT_EQ] = ACTIONS(204), - [anon_sym_LT_LT_EQ] = ACTIONS(204), - [anon_sym_GT_GT_EQ] = ACTIONS(204), - [anon_sym_AMP_EQ] = ACTIONS(204), - [anon_sym_PIPE_EQ] = ACTIONS(204), - [anon_sym_CARET_EQ] = ACTIONS(204), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_AMP_AMP] = ACTIONS(204), - [anon_sym_PIPE_PIPE] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_EQ_EQ] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_LT_EQ_GT] = ACTIONS(204), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_TILDE_GT_GT] = ACTIONS(204), - [anon_sym_CARET_GT_GT] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_TILDE_SLASH] = ACTIONS(204), - [anon_sym_CARET_SLASH] = ACTIONS(204), - [anon_sym_BANG] = ACTIONS(297), - [anon_sym_TILDE] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(297), - [anon_sym_as] = ACTIONS(297), - [anon_sym_is] = ACTIONS(297), - [anon_sym_BANGis] = ACTIONS(204), - [anon_sym_match] = ACTIONS(297), - [sym_number_literal] = ACTIONS(204), - [sym_string_literal] = ACTIONS(204), - [anon_sym_true] = ACTIONS(297), - [anon_sym_false] = ACTIONS(297), - [sym_null_literal] = ACTIONS(297), - [sym_underscore] = ACTIONS(297), + [sym_instantiationT_list] = STATE(34), + [sym_identifier] = ACTIONS(304), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_GT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(211), + [anon_sym_var] = ACTIONS(304), + [anon_sym_val] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(211), + [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(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_LT_LT_EQ] = ACTIONS(211), + [anon_sym_GT_GT_EQ] = ACTIONS(211), + [anon_sym_AMP_EQ] = ACTIONS(211), + [anon_sym_PIPE_EQ] = ACTIONS(211), + [anon_sym_CARET_EQ] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(304), + [anon_sym_CARET] = ACTIONS(304), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(304), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ_GT] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(304), + [anon_sym_TILDE_GT_GT] = ACTIONS(211), + [anon_sym_CARET_GT_GT] = ACTIONS(211), + [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(211), + [anon_sym_CARET_SLASH] = ACTIONS(211), + [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(211), + [anon_sym_match] = ACTIONS(304), + [sym_number_literal] = ACTIONS(211), + [sym_string_literal] = ACTIONS(211), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [sym_null_literal] = ACTIONS(304), + [sym_underscore] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, [STATE(31)] = { - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_PIPE] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(304), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(302), - [anon_sym_GT] = ACTIONS(302), - [anon_sym_DASH_GT] = ACTIONS(304), - [anon_sym_var] = ACTIONS(302), - [anon_sym_val] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_return] = ACTIONS(302), - [anon_sym_repeat] = ACTIONS(302), - [anon_sym_if] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [sym_break_statement] = ACTIONS(302), - [sym_continue_statement] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_PLUS_EQ] = ACTIONS(304), - [anon_sym_DASH_EQ] = ACTIONS(304), - [anon_sym_STAR_EQ] = ACTIONS(304), - [anon_sym_SLASH_EQ] = ACTIONS(304), - [anon_sym_PERCENT_EQ] = ACTIONS(304), - [anon_sym_LT_LT_EQ] = ACTIONS(304), - [anon_sym_GT_GT_EQ] = ACTIONS(304), - [anon_sym_AMP_EQ] = ACTIONS(304), - [anon_sym_PIPE_EQ] = ACTIONS(304), - [anon_sym_CARET_EQ] = ACTIONS(304), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_PIPE_PIPE] = ACTIONS(304), - [anon_sym_AMP] = ACTIONS(302), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(304), - [anon_sym_BANG_EQ] = ACTIONS(304), - [anon_sym_LT_EQ] = ACTIONS(302), - [anon_sym_GT_EQ] = ACTIONS(304), - [anon_sym_LT_EQ_GT] = ACTIONS(304), - [anon_sym_LT_LT] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(302), - [anon_sym_TILDE_GT_GT] = ACTIONS(304), - [anon_sym_CARET_GT_GT] = ACTIONS(304), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_TILDE_SLASH] = ACTIONS(304), - [anon_sym_CARET_SLASH] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(302), - [anon_sym_lazy] = ACTIONS(302), - [anon_sym_as] = ACTIONS(302), - [anon_sym_is] = ACTIONS(302), - [anon_sym_BANGis] = ACTIONS(304), - [anon_sym_match] = ACTIONS(302), - [sym_number_literal] = ACTIONS(304), - [sym_string_literal] = ACTIONS(304), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [sym_null_literal] = ACTIONS(302), - [sym_underscore] = ACTIONS(302), + [sym_match_body] = STATE(72), + [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_EQ] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_val] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_return] = ACTIONS(309), + [anon_sym_repeat] = ACTIONS(309), + [anon_sym_if] = ACTIONS(309), + [anon_sym_do] = ACTIONS(309), + [anon_sym_while] = ACTIONS(309), + [sym_break_statement] = ACTIONS(309), + [sym_continue_statement] = ACTIONS(309), + [anon_sym_throw] = ACTIONS(309), + [anon_sym_assert] = ACTIONS(309), + [anon_sym_try] = ACTIONS(309), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_EQ_GT] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_TILDE_GT_GT] = ACTIONS(311), + [anon_sym_CARET_GT_GT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(309), + [anon_sym_SLASH] = ACTIONS(309), + [anon_sym_PERCENT] = ACTIONS(309), + [anon_sym_TILDE_SLASH] = ACTIONS(311), + [anon_sym_CARET_SLASH] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_lazy] = ACTIONS(309), + [anon_sym_as] = ACTIONS(309), + [anon_sym_is] = ACTIONS(309), + [anon_sym_BANGis] = ACTIONS(311), + [anon_sym_match] = ACTIONS(309), + [sym_number_literal] = ACTIONS(311), + [sym_string_literal] = ACTIONS(311), + [anon_sym_true] = ACTIONS(309), + [anon_sym_false] = ACTIONS(309), + [sym_null_literal] = ACTIONS(309), + [sym_underscore] = ACTIONS(309), [sym_comment] = ACTIONS(3), }, [STATE(32)] = { - [sym_identifier] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(308), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_DOT] = ACTIONS(308), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_DASH_GT] = ACTIONS(312), - [anon_sym_var] = ACTIONS(306), - [anon_sym_val] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_return] = ACTIONS(306), - [anon_sym_repeat] = ACTIONS(306), - [anon_sym_if] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [sym_break_statement] = ACTIONS(306), - [sym_continue_statement] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_assert] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(306), - [anon_sym_CARET] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(308), - [anon_sym_BANG_EQ] = ACTIONS(308), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_LT_EQ_GT] = ACTIONS(308), - [anon_sym_LT_LT] = ACTIONS(306), - [anon_sym_GT_GT] = ACTIONS(306), - [anon_sym_TILDE_GT_GT] = ACTIONS(308), - [anon_sym_CARET_GT_GT] = ACTIONS(308), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_STAR] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(306), - [anon_sym_PERCENT] = ACTIONS(306), - [anon_sym_TILDE_SLASH] = ACTIONS(308), - [anon_sym_CARET_SLASH] = ACTIONS(308), - [anon_sym_BANG] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(306), - [anon_sym_lazy] = ACTIONS(306), - [anon_sym_as] = ACTIONS(306), - [anon_sym_is] = ACTIONS(306), - [anon_sym_BANGis] = ACTIONS(308), - [anon_sym_match] = ACTIONS(306), - [sym_number_literal] = ACTIONS(308), - [sym_string_literal] = ACTIONS(308), - [anon_sym_true] = ACTIONS(306), - [anon_sym_false] = ACTIONS(306), - [sym_null_literal] = ACTIONS(306), - [sym_underscore] = ACTIONS(306), + [sym_identifier] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_DASH_GT] = ACTIONS(321), + [anon_sym_var] = ACTIONS(315), + [anon_sym_val] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_return] = ACTIONS(315), + [anon_sym_repeat] = ACTIONS(315), + [anon_sym_if] = ACTIONS(315), + [anon_sym_do] = ACTIONS(315), + [anon_sym_while] = ACTIONS(315), + [sym_break_statement] = ACTIONS(315), + [sym_continue_statement] = ACTIONS(315), + [anon_sym_throw] = ACTIONS(315), + [anon_sym_assert] = ACTIONS(315), + [anon_sym_try] = ACTIONS(315), + [anon_sym_PLUS_EQ] = ACTIONS(317), + [anon_sym_DASH_EQ] = ACTIONS(317), + [anon_sym_STAR_EQ] = ACTIONS(317), + [anon_sym_SLASH_EQ] = ACTIONS(317), + [anon_sym_PERCENT_EQ] = ACTIONS(317), + [anon_sym_LT_LT_EQ] = ACTIONS(317), + [anon_sym_GT_GT_EQ] = ACTIONS(317), + [anon_sym_AMP_EQ] = ACTIONS(317), + [anon_sym_PIPE_EQ] = ACTIONS(317), + [anon_sym_CARET_EQ] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AMP_AMP] = ACTIONS(317), + [anon_sym_PIPE_PIPE] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(317), + [anon_sym_BANG_EQ] = ACTIONS(317), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(317), + [anon_sym_LT_EQ_GT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(315), + [anon_sym_TILDE_GT_GT] = ACTIONS(317), + [anon_sym_CARET_GT_GT] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_SLASH] = ACTIONS(315), + [anon_sym_PERCENT] = ACTIONS(315), + [anon_sym_TILDE_SLASH] = ACTIONS(317), + [anon_sym_CARET_SLASH] = ACTIONS(317), + [anon_sym_BANG] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_lazy] = ACTIONS(315), + [anon_sym_as] = ACTIONS(315), + [anon_sym_is] = ACTIONS(315), + [anon_sym_BANGis] = ACTIONS(317), + [anon_sym_match] = ACTIONS(315), + [sym_number_literal] = ACTIONS(317), + [sym_string_literal] = ACTIONS(317), + [anon_sym_true] = ACTIONS(315), + [anon_sym_false] = ACTIONS(315), + [sym_null_literal] = ACTIONS(315), + [sym_underscore] = ACTIONS(315), [sym_comment] = ACTIONS(3), }, [STATE(33)] = { - [sym_identifier] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_LPAREN] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(324), - [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(327), - [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(324), - [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_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(321), + [anon_sym_EQ] = ACTIONS(319), + [anon_sym_PIPE] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(321), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(319), + [anon_sym_DASH_GT] = ACTIONS(321), + [anon_sym_var] = ACTIONS(319), + [anon_sym_val] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_return] = ACTIONS(319), + [anon_sym_repeat] = ACTIONS(319), + [anon_sym_if] = ACTIONS(319), + [anon_sym_do] = ACTIONS(319), + [anon_sym_while] = ACTIONS(319), + [sym_break_statement] = ACTIONS(319), + [sym_continue_statement] = ACTIONS(319), + [anon_sym_throw] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_try] = ACTIONS(319), + [anon_sym_PLUS_EQ] = ACTIONS(321), + [anon_sym_DASH_EQ] = ACTIONS(321), + [anon_sym_STAR_EQ] = ACTIONS(321), + [anon_sym_SLASH_EQ] = ACTIONS(321), + [anon_sym_PERCENT_EQ] = ACTIONS(321), + [anon_sym_LT_LT_EQ] = ACTIONS(321), + [anon_sym_GT_GT_EQ] = ACTIONS(321), + [anon_sym_AMP_EQ] = ACTIONS(321), + [anon_sym_PIPE_EQ] = ACTIONS(321), + [anon_sym_CARET_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AMP_AMP] = ACTIONS(321), + [anon_sym_PIPE_PIPE] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_EQ_EQ] = ACTIONS(321), + [anon_sym_BANG_EQ] = ACTIONS(321), + [anon_sym_LT_EQ] = ACTIONS(319), + [anon_sym_GT_EQ] = ACTIONS(321), + [anon_sym_LT_EQ_GT] = ACTIONS(321), + [anon_sym_LT_LT] = ACTIONS(319), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_TILDE_GT_GT] = ACTIONS(321), + [anon_sym_CARET_GT_GT] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_TILDE_SLASH] = ACTIONS(321), + [anon_sym_CARET_SLASH] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_as] = ACTIONS(319), + [anon_sym_is] = ACTIONS(319), + [anon_sym_BANGis] = ACTIONS(321), + [anon_sym_match] = ACTIONS(319), + [sym_number_literal] = ACTIONS(321), + [sym_string_literal] = ACTIONS(321), + [anon_sym_true] = ACTIONS(319), + [anon_sym_false] = ACTIONS(319), + [sym_null_literal] = ACTIONS(319), + [sym_underscore] = ACTIONS(319), [sym_comment] = ACTIONS(3), }, [STATE(34)] = { - [sym_identifier] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(335), - [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(335), - [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(335), - [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_identifier] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_EQ] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(323), + [anon_sym_GT] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_var] = ACTIONS(323), + [anon_sym_val] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_return] = ACTIONS(323), + [anon_sym_repeat] = ACTIONS(323), + [anon_sym_if] = ACTIONS(323), + [anon_sym_do] = ACTIONS(323), + [anon_sym_while] = ACTIONS(323), + [sym_break_statement] = ACTIONS(323), + [sym_continue_statement] = ACTIONS(323), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_assert] = ACTIONS(323), + [anon_sym_try] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_QMARK] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(323), + [anon_sym_CARET] = ACTIONS(323), + [anon_sym_EQ_EQ] = ACTIONS(325), + [anon_sym_BANG_EQ] = ACTIONS(325), + [anon_sym_LT_EQ] = ACTIONS(323), + [anon_sym_GT_EQ] = ACTIONS(325), + [anon_sym_LT_EQ_GT] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(323), + [anon_sym_GT_GT] = ACTIONS(323), + [anon_sym_TILDE_GT_GT] = ACTIONS(325), + [anon_sym_CARET_GT_GT] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PERCENT] = ACTIONS(323), + [anon_sym_TILDE_SLASH] = ACTIONS(325), + [anon_sym_CARET_SLASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_lazy] = ACTIONS(323), + [anon_sym_as] = ACTIONS(323), + [anon_sym_is] = ACTIONS(323), + [anon_sym_BANGis] = ACTIONS(325), + [anon_sym_match] = ACTIONS(323), + [sym_number_literal] = ACTIONS(325), + [sym_string_literal] = ACTIONS(325), + [anon_sym_true] = ACTIONS(323), + [anon_sym_false] = ACTIONS(323), + [sym_null_literal] = ACTIONS(323), + [sym_underscore] = ACTIONS(323), [sym_comment] = ACTIONS(3), }, [STATE(35)] = { - [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(339), - [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(343), - [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(315), - [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_identifier] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_EQ] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_DASH_GT] = ACTIONS(329), + [anon_sym_var] = ACTIONS(327), + [anon_sym_val] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_return] = ACTIONS(327), + [anon_sym_repeat] = ACTIONS(327), + [anon_sym_if] = ACTIONS(327), + [anon_sym_do] = ACTIONS(327), + [anon_sym_while] = ACTIONS(327), + [sym_break_statement] = ACTIONS(327), + [sym_continue_statement] = ACTIONS(327), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_assert] = ACTIONS(327), + [anon_sym_try] = ACTIONS(327), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_SLASH_EQ] = ACTIONS(329), + [anon_sym_PERCENT_EQ] = ACTIONS(329), + [anon_sym_LT_LT_EQ] = ACTIONS(329), + [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_AMP_EQ] = ACTIONS(329), + [anon_sym_PIPE_EQ] = ACTIONS(329), + [anon_sym_CARET_EQ] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_LT_EQ_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_TILDE_GT_GT] = ACTIONS(329), + [anon_sym_CARET_GT_GT] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_SLASH] = ACTIONS(327), + [anon_sym_PERCENT] = ACTIONS(327), + [anon_sym_TILDE_SLASH] = ACTIONS(329), + [anon_sym_CARET_SLASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_lazy] = ACTIONS(327), + [anon_sym_as] = ACTIONS(327), + [anon_sym_is] = ACTIONS(327), + [anon_sym_BANGis] = ACTIONS(329), + [anon_sym_match] = ACTIONS(327), + [sym_number_literal] = ACTIONS(329), + [sym_string_literal] = ACTIONS(329), + [anon_sym_true] = ACTIONS(327), + [anon_sym_false] = ACTIONS(327), + [sym_null_literal] = ACTIONS(327), + [sym_underscore] = ACTIONS(327), [sym_comment] = ACTIONS(3), }, [STATE(36)] = { - [sym_identifier] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_DASH_GT] = ACTIONS(343), - [anon_sym_var] = ACTIONS(345), - [anon_sym_val] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_return] = ACTIONS(345), - [anon_sym_repeat] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_do] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [sym_break_statement] = ACTIONS(345), - [sym_continue_statement] = ACTIONS(345), - [anon_sym_throw] = ACTIONS(345), - [anon_sym_assert] = ACTIONS(345), - [anon_sym_try] = ACTIONS(345), - [anon_sym_PLUS_EQ] = ACTIONS(347), - [anon_sym_DASH_EQ] = ACTIONS(347), - [anon_sym_STAR_EQ] = ACTIONS(347), - [anon_sym_SLASH_EQ] = ACTIONS(347), - [anon_sym_PERCENT_EQ] = ACTIONS(347), - [anon_sym_LT_LT_EQ] = ACTIONS(347), - [anon_sym_GT_GT_EQ] = ACTIONS(347), - [anon_sym_AMP_EQ] = ACTIONS(347), - [anon_sym_PIPE_EQ] = ACTIONS(347), - [anon_sym_CARET_EQ] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(347), - [anon_sym_PIPE_PIPE] = ACTIONS(347), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_CARET] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_LT_EQ_GT] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_TILDE_GT_GT] = ACTIONS(347), - [anon_sym_CARET_GT_GT] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_PERCENT] = ACTIONS(345), - [anon_sym_TILDE_SLASH] = ACTIONS(347), - [anon_sym_CARET_SLASH] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(345), - [anon_sym_as] = ACTIONS(345), - [anon_sym_is] = ACTIONS(345), - [anon_sym_BANGis] = ACTIONS(347), - [anon_sym_match] = ACTIONS(345), - [sym_number_literal] = ACTIONS(347), - [sym_string_literal] = ACTIONS(347), - [anon_sym_true] = ACTIONS(345), - [anon_sym_false] = ACTIONS(345), - [sym_null_literal] = ACTIONS(345), - [sym_underscore] = ACTIONS(345), + [sym_identifier] = ACTIONS(331), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_DASH_GT] = ACTIONS(333), + [anon_sym_var] = ACTIONS(331), + [anon_sym_val] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_return] = ACTIONS(331), + [anon_sym_repeat] = ACTIONS(331), + [anon_sym_if] = ACTIONS(331), + [anon_sym_do] = ACTIONS(331), + [anon_sym_while] = ACTIONS(331), + [sym_break_statement] = ACTIONS(331), + [sym_continue_statement] = ACTIONS(331), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_assert] = ACTIONS(331), + [anon_sym_try] = ACTIONS(331), + [anon_sym_PLUS_EQ] = ACTIONS(333), + [anon_sym_DASH_EQ] = ACTIONS(333), + [anon_sym_STAR_EQ] = ACTIONS(333), + [anon_sym_SLASH_EQ] = ACTIONS(333), + [anon_sym_PERCENT_EQ] = ACTIONS(333), + [anon_sym_LT_LT_EQ] = ACTIONS(333), + [anon_sym_GT_GT_EQ] = ACTIONS(333), + [anon_sym_AMP_EQ] = ACTIONS(333), + [anon_sym_PIPE_EQ] = ACTIONS(333), + [anon_sym_CARET_EQ] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(333), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_CARET] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT_EQ] = ACTIONS(331), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_LT_EQ_GT] = ACTIONS(333), + [anon_sym_LT_LT] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [anon_sym_TILDE_GT_GT] = ACTIONS(333), + [anon_sym_CARET_GT_GT] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(331), + [anon_sym_PERCENT] = ACTIONS(331), + [anon_sym_TILDE_SLASH] = ACTIONS(333), + [anon_sym_CARET_SLASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(331), + [anon_sym_as] = ACTIONS(331), + [anon_sym_is] = ACTIONS(331), + [anon_sym_BANGis] = ACTIONS(333), + [anon_sym_match] = ACTIONS(331), + [sym_number_literal] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [anon_sym_true] = ACTIONS(331), + [anon_sym_false] = ACTIONS(331), + [sym_null_literal] = ACTIONS(331), + [sym_underscore] = ACTIONS(331), [sym_comment] = ACTIONS(3), }, [STATE(37)] = { - [sym_match_body] = STATE(59), - [sym_identifier] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(351), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_var] = ACTIONS(349), - [anon_sym_val] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), - [anon_sym_return] = ACTIONS(349), - [anon_sym_repeat] = ACTIONS(349), - [anon_sym_if] = ACTIONS(349), - [anon_sym_do] = ACTIONS(349), - [anon_sym_while] = ACTIONS(349), - [sym_break_statement] = ACTIONS(349), - [sym_continue_statement] = ACTIONS(349), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_assert] = ACTIONS(349), - [anon_sym_try] = ACTIONS(349), - [anon_sym_PLUS_EQ] = ACTIONS(351), - [anon_sym_DASH_EQ] = ACTIONS(351), - [anon_sym_STAR_EQ] = ACTIONS(351), - [anon_sym_SLASH_EQ] = ACTIONS(351), - [anon_sym_PERCENT_EQ] = ACTIONS(351), - [anon_sym_LT_LT_EQ] = ACTIONS(351), - [anon_sym_GT_GT_EQ] = ACTIONS(351), - [anon_sym_AMP_EQ] = ACTIONS(351), - [anon_sym_PIPE_EQ] = ACTIONS(351), - [anon_sym_CARET_EQ] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(351), - [anon_sym_AMP_AMP] = ACTIONS(351), - [anon_sym_PIPE_PIPE] = ACTIONS(351), - [anon_sym_AMP] = ACTIONS(349), - [anon_sym_CARET] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(351), - [anon_sym_BANG_EQ] = ACTIONS(351), - [anon_sym_LT_EQ] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(351), - [anon_sym_LT_EQ_GT] = ACTIONS(351), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_TILDE_GT_GT] = ACTIONS(351), - [anon_sym_CARET_GT_GT] = ACTIONS(351), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(349), - [anon_sym_PERCENT] = ACTIONS(349), - [anon_sym_TILDE_SLASH] = ACTIONS(351), - [anon_sym_CARET_SLASH] = ACTIONS(351), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_lazy] = ACTIONS(349), - [anon_sym_as] = ACTIONS(349), - [anon_sym_is] = ACTIONS(349), - [anon_sym_BANGis] = ACTIONS(351), - [anon_sym_match] = ACTIONS(349), - [sym_number_literal] = ACTIONS(351), - [sym_string_literal] = ACTIONS(351), - [anon_sym_true] = ACTIONS(349), - [anon_sym_false] = ACTIONS(349), - [sym_null_literal] = ACTIONS(349), - [sym_underscore] = ACTIONS(349), + [sym_identifier] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(337), + [anon_sym_var] = ACTIONS(335), + [anon_sym_val] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_return] = ACTIONS(335), + [anon_sym_repeat] = ACTIONS(335), + [anon_sym_if] = ACTIONS(335), + [anon_sym_do] = ACTIONS(335), + [anon_sym_while] = ACTIONS(335), + [sym_break_statement] = ACTIONS(335), + [sym_continue_statement] = ACTIONS(335), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(335), + [anon_sym_try] = ACTIONS(335), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_PERCENT_EQ] = ACTIONS(337), + [anon_sym_LT_LT_EQ] = ACTIONS(337), + [anon_sym_GT_GT_EQ] = ACTIONS(337), + [anon_sym_AMP_EQ] = ACTIONS(337), + [anon_sym_PIPE_EQ] = ACTIONS(337), + [anon_sym_CARET_EQ] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(337), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_LT_EQ_GT] = ACTIONS(337), + [anon_sym_LT_LT] = ACTIONS(335), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_TILDE_GT_GT] = ACTIONS(337), + [anon_sym_CARET_GT_GT] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PERCENT] = ACTIONS(335), + [anon_sym_TILDE_SLASH] = ACTIONS(337), + [anon_sym_CARET_SLASH] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(335), + [anon_sym_lazy] = ACTIONS(335), + [anon_sym_as] = ACTIONS(335), + [anon_sym_is] = ACTIONS(335), + [anon_sym_BANGis] = ACTIONS(337), + [anon_sym_match] = ACTIONS(335), + [sym_number_literal] = ACTIONS(337), + [sym_string_literal] = ACTIONS(337), + [anon_sym_true] = ACTIONS(335), + [anon_sym_false] = ACTIONS(335), + [sym_null_literal] = ACTIONS(335), + [sym_underscore] = ACTIONS(335), [sym_comment] = ACTIONS(3), }, [STATE(38)] = { + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(341), + [anon_sym_var] = ACTIONS(339), + [anon_sym_val] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_return] = ACTIONS(339), + [anon_sym_repeat] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_do] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [sym_break_statement] = ACTIONS(339), + [sym_continue_statement] = ACTIONS(339), + [anon_sym_throw] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(339), + [anon_sym_try] = ACTIONS(339), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ_GT] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(339), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_TILDE_GT_GT] = ACTIONS(341), + [anon_sym_CARET_GT_GT] = ACTIONS(341), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_PERCENT] = ACTIONS(339), + [anon_sym_TILDE_SLASH] = ACTIONS(341), + [anon_sym_CARET_SLASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_TILDE] = ACTIONS(339), + [anon_sym_lazy] = ACTIONS(339), + [anon_sym_as] = ACTIONS(339), + [anon_sym_is] = ACTIONS(339), + [anon_sym_BANGis] = ACTIONS(341), + [anon_sym_match] = ACTIONS(339), + [sym_number_literal] = ACTIONS(341), + [sym_string_literal] = ACTIONS(341), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [sym_null_literal] = ACTIONS(339), + [sym_underscore] = ACTIONS(339), + [sym_comment] = ACTIONS(3), + }, + [STATE(39)] = { + [sym_identifier] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DASH_GT] = ACTIONS(345), + [anon_sym_var] = ACTIONS(343), + [anon_sym_val] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_return] = ACTIONS(343), + [anon_sym_repeat] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [sym_break_statement] = ACTIONS(343), + [sym_continue_statement] = ACTIONS(343), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_PERCENT_EQ] = ACTIONS(345), + [anon_sym_LT_LT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_EQ] = ACTIONS(345), + [anon_sym_AMP_EQ] = ACTIONS(345), + [anon_sym_PIPE_EQ] = ACTIONS(345), + [anon_sym_CARET_EQ] = ACTIONS(345), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_LT_EQ_GT] = ACTIONS(345), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_TILDE_GT_GT] = ACTIONS(345), + [anon_sym_CARET_GT_GT] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_TILDE_SLASH] = ACTIONS(345), + [anon_sym_CARET_SLASH] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(343), + [anon_sym_lazy] = ACTIONS(343), + [anon_sym_as] = ACTIONS(343), + [anon_sym_is] = ACTIONS(343), + [anon_sym_BANGis] = ACTIONS(345), + [anon_sym_match] = ACTIONS(343), + [sym_number_literal] = ACTIONS(345), + [sym_string_literal] = ACTIONS(345), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [sym_null_literal] = ACTIONS(343), + [sym_underscore] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + }, + [STATE(40)] = { + [sym_identifier] = ACTIONS(347), + [anon_sym_SEMI] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(349), + [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(349), + [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(349), + [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(41)] = { + [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(42)] = { [sym_identifier] = ACTIONS(355), - [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(357), [anon_sym_EQ] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_DOT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(359), + [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(327), + [anon_sym_DASH_GT] = ACTIONS(357), [anon_sym_var] = ACTIONS(355), [anon_sym_val] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(357), [anon_sym_return] = ACTIONS(355), [anon_sym_repeat] = ACTIONS(355), [anon_sym_if] = ACTIONS(355), @@ -8725,2861 +9008,2648 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(355), [anon_sym_assert] = ACTIONS(355), [anon_sym_try] = ACTIONS(355), - [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_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(361), + [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(327), - [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ] = ACTIONS(357), [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_EQ_GT] = ACTIONS(327), + [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(327), - [anon_sym_CARET_GT_GT] = ACTIONS(327), + [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(327), - [anon_sym_CARET_SLASH] = ACTIONS(327), + [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(327), + [anon_sym_BANGis] = ACTIONS(357), [anon_sym_match] = ACTIONS(355), - [sym_number_literal] = ACTIONS(327), - [sym_string_literal] = ACTIONS(327), + [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(39)] = { - [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(40)] = { - [sym_identifier] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(359), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_DOT] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(357), - [anon_sym_DASH_GT] = ACTIONS(359), - [anon_sym_var] = ACTIONS(357), - [anon_sym_val] = ACTIONS(357), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_return] = ACTIONS(357), - [anon_sym_repeat] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), - [anon_sym_do] = ACTIONS(357), - [anon_sym_while] = ACTIONS(357), - [sym_break_statement] = ACTIONS(357), - [sym_continue_statement] = ACTIONS(357), - [anon_sym_throw] = ACTIONS(357), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_try] = ACTIONS(357), - [anon_sym_PLUS_EQ] = ACTIONS(359), - [anon_sym_DASH_EQ] = ACTIONS(359), - [anon_sym_STAR_EQ] = ACTIONS(359), - [anon_sym_SLASH_EQ] = ACTIONS(359), - [anon_sym_PERCENT_EQ] = ACTIONS(359), - [anon_sym_LT_LT_EQ] = ACTIONS(359), - [anon_sym_GT_GT_EQ] = ACTIONS(359), - [anon_sym_AMP_EQ] = ACTIONS(359), - [anon_sym_PIPE_EQ] = ACTIONS(359), - [anon_sym_CARET_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(359), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(359), - [anon_sym_LT_EQ_GT] = ACTIONS(359), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(357), - [anon_sym_TILDE_GT_GT] = ACTIONS(359), - [anon_sym_CARET_GT_GT] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(357), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_TILDE_SLASH] = ACTIONS(359), - [anon_sym_CARET_SLASH] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_lazy] = ACTIONS(357), - [anon_sym_as] = ACTIONS(357), - [anon_sym_is] = ACTIONS(357), - [anon_sym_BANGis] = ACTIONS(359), - [anon_sym_match] = ACTIONS(357), - [sym_number_literal] = ACTIONS(359), - [sym_string_literal] = ACTIONS(359), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [sym_null_literal] = ACTIONS(357), - [sym_underscore] = ACTIONS(357), - [sym_comment] = ACTIONS(3), - }, - [STATE(41)] = { - [sym_identifier] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(361), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(361), - [anon_sym_DASH_GT] = ACTIONS(363), - [anon_sym_var] = ACTIONS(361), - [anon_sym_val] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_return] = ACTIONS(361), - [anon_sym_repeat] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), - [anon_sym_do] = ACTIONS(361), - [anon_sym_while] = ACTIONS(361), - [sym_break_statement] = ACTIONS(361), - [sym_continue_statement] = ACTIONS(361), - [anon_sym_throw] = ACTIONS(361), - [anon_sym_assert] = ACTIONS(361), - [anon_sym_try] = ACTIONS(361), - [anon_sym_PLUS_EQ] = ACTIONS(363), - [anon_sym_DASH_EQ] = ACTIONS(363), - [anon_sym_STAR_EQ] = ACTIONS(363), - [anon_sym_SLASH_EQ] = ACTIONS(363), - [anon_sym_PERCENT_EQ] = ACTIONS(363), - [anon_sym_LT_LT_EQ] = ACTIONS(363), - [anon_sym_GT_GT_EQ] = ACTIONS(363), - [anon_sym_AMP_EQ] = ACTIONS(363), - [anon_sym_PIPE_EQ] = ACTIONS(363), - [anon_sym_CARET_EQ] = ACTIONS(363), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT_EQ] = ACTIONS(361), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_LT_EQ_GT] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(361), - [anon_sym_TILDE_GT_GT] = ACTIONS(363), - [anon_sym_CARET_GT_GT] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_STAR] = ACTIONS(361), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_TILDE_SLASH] = ACTIONS(363), - [anon_sym_CARET_SLASH] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(361), - [anon_sym_lazy] = ACTIONS(361), - [anon_sym_as] = ACTIONS(361), - [anon_sym_is] = ACTIONS(361), - [anon_sym_BANGis] = ACTIONS(363), - [anon_sym_match] = ACTIONS(361), - [sym_number_literal] = ACTIONS(363), - [sym_string_literal] = ACTIONS(363), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [sym_null_literal] = ACTIONS(361), - [sym_underscore] = ACTIONS(361), - [sym_comment] = ACTIONS(3), - }, - [STATE(42)] = { - [sym_identifier] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_DASH_GT] = ACTIONS(367), - [anon_sym_var] = ACTIONS(365), - [anon_sym_val] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_return] = ACTIONS(365), - [anon_sym_repeat] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_do] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [sym_break_statement] = ACTIONS(365), - [sym_continue_statement] = ACTIONS(365), - [anon_sym_throw] = ACTIONS(365), - [anon_sym_assert] = ACTIONS(365), - [anon_sym_try] = ACTIONS(365), - [anon_sym_PLUS_EQ] = ACTIONS(367), - [anon_sym_DASH_EQ] = ACTIONS(367), - [anon_sym_STAR_EQ] = ACTIONS(367), - [anon_sym_SLASH_EQ] = ACTIONS(367), - [anon_sym_PERCENT_EQ] = ACTIONS(367), - [anon_sym_LT_LT_EQ] = ACTIONS(367), - [anon_sym_GT_GT_EQ] = ACTIONS(367), - [anon_sym_AMP_EQ] = ACTIONS(367), - [anon_sym_PIPE_EQ] = ACTIONS(367), - [anon_sym_CARET_EQ] = ACTIONS(367), - [anon_sym_QMARK] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_EQ_EQ] = ACTIONS(367), - [anon_sym_BANG_EQ] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(367), - [anon_sym_LT_EQ_GT] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_TILDE_GT_GT] = ACTIONS(367), - [anon_sym_CARET_GT_GT] = ACTIONS(367), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(365), - [anon_sym_PERCENT] = ACTIONS(365), - [anon_sym_TILDE_SLASH] = ACTIONS(367), - [anon_sym_CARET_SLASH] = ACTIONS(367), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_TILDE] = ACTIONS(365), - [anon_sym_lazy] = ACTIONS(365), - [anon_sym_as] = ACTIONS(365), - [anon_sym_is] = ACTIONS(365), - [anon_sym_BANGis] = ACTIONS(367), - [anon_sym_match] = ACTIONS(365), - [sym_number_literal] = ACTIONS(367), - [sym_string_literal] = ACTIONS(367), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [sym_null_literal] = ACTIONS(365), - [sym_underscore] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - }, [STATE(43)] = { - [sym_identifier] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_DASH_GT] = ACTIONS(371), - [anon_sym_var] = ACTIONS(369), - [anon_sym_val] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_return] = ACTIONS(369), - [anon_sym_repeat] = ACTIONS(369), - [anon_sym_if] = ACTIONS(369), - [anon_sym_do] = ACTIONS(369), - [anon_sym_while] = ACTIONS(369), - [sym_break_statement] = ACTIONS(369), - [sym_continue_statement] = ACTIONS(369), - [anon_sym_throw] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(369), - [anon_sym_try] = ACTIONS(369), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(369), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_EQ_GT] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_TILDE_GT_GT] = ACTIONS(371), - [anon_sym_CARET_GT_GT] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(369), - [anon_sym_STAR] = ACTIONS(369), - [anon_sym_SLASH] = ACTIONS(369), - [anon_sym_PERCENT] = ACTIONS(369), - [anon_sym_TILDE_SLASH] = ACTIONS(371), - [anon_sym_CARET_SLASH] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_lazy] = ACTIONS(369), - [anon_sym_as] = ACTIONS(369), - [anon_sym_is] = ACTIONS(369), - [anon_sym_BANGis] = ACTIONS(371), - [anon_sym_match] = ACTIONS(369), - [sym_number_literal] = ACTIONS(371), - [sym_string_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(369), - [anon_sym_false] = ACTIONS(369), - [sym_null_literal] = ACTIONS(369), - [sym_underscore] = ACTIONS(369), + [sym_identifier] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(367), + [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(369), + [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(361), + [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(44)] = { - [sym_identifier] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_PIPE] = ACTIONS(373), - [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(375), - [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(375), - [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_identifier] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_DASH_GT] = ACTIONS(377), + [anon_sym_var] = ACTIONS(371), + [anon_sym_val] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_return] = ACTIONS(371), + [anon_sym_repeat] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_do] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [sym_break_statement] = ACTIONS(371), + [sym_continue_statement] = ACTIONS(371), + [anon_sym_throw] = ACTIONS(371), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_try] = ACTIONS(371), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(361), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ_GT] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_TILDE_GT_GT] = ACTIONS(373), + [anon_sym_CARET_GT_GT] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_SLASH] = ACTIONS(371), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_TILDE_SLASH] = ACTIONS(373), + [anon_sym_CARET_SLASH] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_lazy] = ACTIONS(371), + [anon_sym_as] = ACTIONS(371), + [anon_sym_is] = ACTIONS(371), + [anon_sym_BANGis] = ACTIONS(373), + [anon_sym_match] = ACTIONS(371), + [sym_number_literal] = ACTIONS(373), + [sym_string_literal] = ACTIONS(373), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [sym_null_literal] = ACTIONS(371), + [sym_underscore] = ACTIONS(371), [sym_comment] = ACTIONS(3), }, [STATE(45)] = { - [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_DASH_GT] = ACTIONS(379), - [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_identifier] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(382), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_DASH_GT] = ACTIONS(390), + [anon_sym_var] = ACTIONS(380), + [anon_sym_val] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(382), + [anon_sym_return] = ACTIONS(380), + [anon_sym_repeat] = ACTIONS(380), + [anon_sym_if] = ACTIONS(380), + [anon_sym_do] = ACTIONS(380), + [anon_sym_while] = ACTIONS(380), + [sym_break_statement] = ACTIONS(380), + [sym_continue_statement] = ACTIONS(380), + [anon_sym_throw] = ACTIONS(380), + [anon_sym_assert] = ACTIONS(380), + [anon_sym_try] = ACTIONS(380), + [anon_sym_PLUS_EQ] = ACTIONS(382), + [anon_sym_DASH_EQ] = ACTIONS(382), + [anon_sym_STAR_EQ] = ACTIONS(382), + [anon_sym_SLASH_EQ] = ACTIONS(382), + [anon_sym_PERCENT_EQ] = ACTIONS(382), + [anon_sym_LT_LT_EQ] = ACTIONS(382), + [anon_sym_GT_GT_EQ] = ACTIONS(382), + [anon_sym_AMP_EQ] = ACTIONS(382), + [anon_sym_PIPE_EQ] = ACTIONS(382), + [anon_sym_CARET_EQ] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(382), + [anon_sym_PIPE_PIPE] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(380), + [anon_sym_CARET] = ACTIONS(380), + [anon_sym_EQ_EQ] = ACTIONS(382), + [anon_sym_BANG_EQ] = ACTIONS(382), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_GT_EQ] = ACTIONS(382), + [anon_sym_LT_EQ_GT] = ACTIONS(382), + [anon_sym_LT_LT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_TILDE_GT_GT] = ACTIONS(382), + [anon_sym_CARET_GT_GT] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(380), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(380), + [anon_sym_TILDE_SLASH] = ACTIONS(382), + [anon_sym_CARET_SLASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(380), + [anon_sym_TILDE] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_as] = ACTIONS(380), + [anon_sym_is] = ACTIONS(380), + [anon_sym_BANGis] = ACTIONS(382), + [anon_sym_match] = ACTIONS(380), + [sym_number_literal] = ACTIONS(382), + [sym_string_literal] = ACTIONS(382), + [anon_sym_true] = ACTIONS(380), + [anon_sym_false] = ACTIONS(380), + [sym_null_literal] = ACTIONS(380), + [sym_underscore] = ACTIONS(380), [sym_comment] = ACTIONS(3), }, [STATE(46)] = { - [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_DASH_GT] = ACTIONS(383), - [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_identifier] = ACTIONS(392), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_LPAREN] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_var] = ACTIONS(392), + [anon_sym_val] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(394), + [anon_sym_return] = ACTIONS(392), + [anon_sym_repeat] = ACTIONS(392), + [anon_sym_if] = ACTIONS(392), + [anon_sym_do] = ACTIONS(392), + [anon_sym_while] = ACTIONS(392), + [sym_break_statement] = ACTIONS(392), + [sym_continue_statement] = ACTIONS(392), + [anon_sym_throw] = ACTIONS(392), + [anon_sym_assert] = ACTIONS(392), + [anon_sym_try] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(361), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_EQ_GT] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_TILDE_GT_GT] = ACTIONS(394), + [anon_sym_CARET_GT_GT] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_TILDE_SLASH] = ACTIONS(394), + [anon_sym_CARET_SLASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_lazy] = ACTIONS(392), + [anon_sym_as] = ACTIONS(392), + [anon_sym_is] = ACTIONS(392), + [anon_sym_BANGis] = ACTIONS(394), + [anon_sym_match] = ACTIONS(392), + [sym_number_literal] = ACTIONS(394), + [sym_string_literal] = ACTIONS(394), + [anon_sym_true] = ACTIONS(392), + [anon_sym_false] = ACTIONS(392), + [sym_null_literal] = ACTIONS(392), + [sym_underscore] = ACTIONS(392), [sym_comment] = ACTIONS(3), }, [STATE(47)] = { - [sym_identifier] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_DASH_GT] = ACTIONS(387), - [anon_sym_var] = ACTIONS(385), - [anon_sym_val] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_return] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_do] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [sym_break_statement] = ACTIONS(385), - [sym_continue_statement] = ACTIONS(385), - [anon_sym_throw] = ACTIONS(385), - [anon_sym_assert] = ACTIONS(385), - [anon_sym_try] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ_GT] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_TILDE_GT_GT] = ACTIONS(387), - [anon_sym_CARET_GT_GT] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_TILDE_SLASH] = ACTIONS(387), - [anon_sym_CARET_SLASH] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_as] = ACTIONS(385), - [anon_sym_is] = ACTIONS(385), - [anon_sym_BANGis] = ACTIONS(387), - [anon_sym_match] = ACTIONS(385), - [sym_number_literal] = ACTIONS(387), - [sym_string_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_null_literal] = ACTIONS(385), - [sym_underscore] = ACTIONS(385), + [sym_identifier] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_DOT] = ACTIONS(398), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_var] = ACTIONS(396), + [anon_sym_val] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_return] = ACTIONS(396), + [anon_sym_repeat] = ACTIONS(396), + [anon_sym_if] = ACTIONS(396), + [anon_sym_do] = ACTIONS(396), + [anon_sym_while] = ACTIONS(396), + [sym_break_statement] = ACTIONS(396), + [sym_continue_statement] = ACTIONS(396), + [anon_sym_throw] = ACTIONS(396), + [anon_sym_assert] = ACTIONS(396), + [anon_sym_try] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(398), + [anon_sym_DASH_EQ] = ACTIONS(398), + [anon_sym_STAR_EQ] = ACTIONS(398), + [anon_sym_SLASH_EQ] = ACTIONS(398), + [anon_sym_PERCENT_EQ] = ACTIONS(398), + [anon_sym_LT_LT_EQ] = ACTIONS(398), + [anon_sym_GT_GT_EQ] = ACTIONS(398), + [anon_sym_AMP_EQ] = ACTIONS(398), + [anon_sym_PIPE_EQ] = ACTIONS(398), + [anon_sym_CARET_EQ] = ACTIONS(398), + [anon_sym_QMARK] = ACTIONS(361), + [anon_sym_AMP_AMP] = ACTIONS(398), + [anon_sym_PIPE_PIPE] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(398), + [anon_sym_BANG_EQ] = ACTIONS(398), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(398), + [anon_sym_LT_EQ_GT] = ACTIONS(398), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_TILDE_GT_GT] = ACTIONS(398), + [anon_sym_CARET_GT_GT] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_TILDE_SLASH] = ACTIONS(398), + [anon_sym_CARET_SLASH] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_lazy] = ACTIONS(396), + [anon_sym_as] = ACTIONS(396), + [anon_sym_is] = ACTIONS(396), + [anon_sym_BANGis] = ACTIONS(398), + [anon_sym_match] = ACTIONS(396), + [sym_number_literal] = ACTIONS(398), + [sym_string_literal] = ACTIONS(398), + [anon_sym_true] = ACTIONS(396), + [anon_sym_false] = ACTIONS(396), + [sym_null_literal] = ACTIONS(396), + [sym_underscore] = ACTIONS(396), [sym_comment] = ACTIONS(3), }, [STATE(48)] = { - [sym_identifier] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_DASH_GT] = ACTIONS(343), - [anon_sym_var] = ACTIONS(391), - [anon_sym_val] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_return] = ACTIONS(391), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_do] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [sym_break_statement] = ACTIONS(391), - [sym_continue_statement] = ACTIONS(391), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_assert] = ACTIONS(391), - [anon_sym_try] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ_GT] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_TILDE_GT_GT] = ACTIONS(393), - [anon_sym_CARET_GT_GT] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_TILDE_SLASH] = ACTIONS(393), - [anon_sym_CARET_SLASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_lazy] = ACTIONS(391), - [anon_sym_as] = ACTIONS(391), - [anon_sym_is] = ACTIONS(391), - [anon_sym_BANGis] = ACTIONS(393), - [anon_sym_match] = ACTIONS(391), - [sym_number_literal] = ACTIONS(393), - [sym_string_literal] = ACTIONS(393), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_null_literal] = ACTIONS(391), - [sym_underscore] = ACTIONS(391), + [sym_identifier] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(400), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_DASH_GT] = ACTIONS(406), + [anon_sym_var] = ACTIONS(191), + [anon_sym_val] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_return] = ACTIONS(191), + [anon_sym_repeat] = ACTIONS(191), + [anon_sym_if] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_while] = ACTIONS(191), + [sym_break_statement] = ACTIONS(191), + [sym_continue_statement] = ACTIONS(191), + [anon_sym_throw] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(191), + [anon_sym_try] = ACTIONS(191), + [anon_sym_PLUS_EQ] = ACTIONS(195), + [anon_sym_DASH_EQ] = ACTIONS(195), + [anon_sym_STAR_EQ] = ACTIONS(195), + [anon_sym_SLASH_EQ] = ACTIONS(195), + [anon_sym_PERCENT_EQ] = ACTIONS(195), + [anon_sym_LT_LT_EQ] = ACTIONS(195), + [anon_sym_GT_GT_EQ] = ACTIONS(195), + [anon_sym_AMP_EQ] = ACTIONS(195), + [anon_sym_PIPE_EQ] = ACTIONS(195), + [anon_sym_CARET_EQ] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(195), + [anon_sym_LT_EQ_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(195), + [anon_sym_CARET_GT_GT] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(191), + [anon_sym_TILDE_SLASH] = ACTIONS(195), + [anon_sym_CARET_SLASH] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_lazy] = ACTIONS(191), + [anon_sym_as] = ACTIONS(191), + [anon_sym_is] = ACTIONS(191), + [anon_sym_BANGis] = ACTIONS(195), + [anon_sym_match] = ACTIONS(191), + [sym_number_literal] = ACTIONS(195), + [sym_string_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [sym_null_literal] = ACTIONS(191), + [sym_underscore] = ACTIONS(191), [sym_comment] = ACTIONS(3), }, [STATE(49)] = { - [sym_identifier] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_var] = ACTIONS(395), - [anon_sym_val] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_return] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_do] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [sym_break_statement] = ACTIONS(395), - [sym_continue_statement] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_try] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ_GT] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_TILDE_GT_GT] = ACTIONS(397), - [anon_sym_CARET_GT_GT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_TILDE_SLASH] = ACTIONS(397), - [anon_sym_CARET_SLASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_TILDE] = ACTIONS(395), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_is] = ACTIONS(395), - [anon_sym_BANGis] = ACTIONS(397), - [anon_sym_match] = ACTIONS(395), - [sym_number_literal] = ACTIONS(397), - [sym_string_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_null_literal] = ACTIONS(395), - [sym_underscore] = ACTIONS(395), + [sym_identifier] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(390), + [anon_sym_var] = ACTIONS(408), + [anon_sym_val] = ACTIONS(408), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_return] = ACTIONS(408), + [anon_sym_repeat] = ACTIONS(408), + [anon_sym_if] = ACTIONS(408), + [anon_sym_do] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [sym_break_statement] = ACTIONS(408), + [sym_continue_statement] = ACTIONS(408), + [anon_sym_throw] = ACTIONS(408), + [anon_sym_assert] = ACTIONS(408), + [anon_sym_try] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(408), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ_GT] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_TILDE_GT_GT] = ACTIONS(390), + [anon_sym_CARET_GT_GT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_TILDE_SLASH] = ACTIONS(390), + [anon_sym_CARET_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_TILDE] = ACTIONS(408), + [anon_sym_lazy] = ACTIONS(408), + [anon_sym_as] = ACTIONS(408), + [anon_sym_is] = ACTIONS(408), + [anon_sym_BANGis] = ACTIONS(390), + [anon_sym_match] = ACTIONS(408), + [sym_number_literal] = ACTIONS(390), + [sym_string_literal] = ACTIONS(390), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [sym_null_literal] = ACTIONS(408), + [sym_underscore] = ACTIONS(408), [sym_comment] = ACTIONS(3), }, [STATE(50)] = { - [sym_identifier] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_var] = ACTIONS(399), - [anon_sym_val] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_return] = ACTIONS(399), - [anon_sym_repeat] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_do] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [sym_break_statement] = ACTIONS(399), - [sym_continue_statement] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(399), - [anon_sym_assert] = ACTIONS(399), - [anon_sym_try] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(407), - [anon_sym_DASH_EQ] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(407), - [anon_sym_SLASH_EQ] = ACTIONS(407), - [anon_sym_PERCENT_EQ] = ACTIONS(407), - [anon_sym_LT_LT_EQ] = ACTIONS(407), - [anon_sym_GT_GT_EQ] = ACTIONS(407), - [anon_sym_AMP_EQ] = ACTIONS(407), - [anon_sym_PIPE_EQ] = ACTIONS(407), - [anon_sym_CARET_EQ] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AMP_AMP] = ACTIONS(407), - [anon_sym_PIPE_PIPE] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(407), - [anon_sym_BANG_EQ] = ACTIONS(407), - [anon_sym_LT_EQ] = ACTIONS(405), - [anon_sym_GT_EQ] = ACTIONS(407), - [anon_sym_LT_EQ_GT] = ACTIONS(407), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_TILDE_GT_GT] = ACTIONS(407), - [anon_sym_CARET_GT_GT] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_TILDE_SLASH] = ACTIONS(407), - [anon_sym_CARET_SLASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [anon_sym_lazy] = ACTIONS(399), - [anon_sym_as] = ACTIONS(405), - [anon_sym_is] = ACTIONS(405), - [anon_sym_BANGis] = ACTIONS(407), - [anon_sym_match] = ACTIONS(399), - [sym_number_literal] = ACTIONS(402), - [sym_string_literal] = ACTIONS(402), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_null_literal] = ACTIONS(399), - [sym_underscore] = ACTIONS(399), + [sym_identifier] = ACTIONS(410), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_EQ] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_var] = ACTIONS(410), + [anon_sym_val] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_return] = ACTIONS(410), + [anon_sym_repeat] = ACTIONS(410), + [anon_sym_if] = ACTIONS(410), + [anon_sym_do] = ACTIONS(410), + [anon_sym_while] = ACTIONS(410), + [sym_break_statement] = ACTIONS(410), + [sym_continue_statement] = ACTIONS(410), + [anon_sym_throw] = ACTIONS(410), + [anon_sym_assert] = ACTIONS(410), + [anon_sym_try] = ACTIONS(410), + [anon_sym_PLUS_EQ] = ACTIONS(412), + [anon_sym_DASH_EQ] = ACTIONS(412), + [anon_sym_STAR_EQ] = ACTIONS(412), + [anon_sym_SLASH_EQ] = ACTIONS(412), + [anon_sym_PERCENT_EQ] = ACTIONS(412), + [anon_sym_LT_LT_EQ] = ACTIONS(412), + [anon_sym_GT_GT_EQ] = ACTIONS(412), + [anon_sym_AMP_EQ] = ACTIONS(412), + [anon_sym_PIPE_EQ] = ACTIONS(412), + [anon_sym_CARET_EQ] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_EQ_EQ] = ACTIONS(412), + [anon_sym_BANG_EQ] = ACTIONS(412), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(412), + [anon_sym_LT_EQ_GT] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(410), + [anon_sym_GT_GT] = ACTIONS(410), + [anon_sym_TILDE_GT_GT] = ACTIONS(412), + [anon_sym_CARET_GT_GT] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_SLASH] = ACTIONS(410), + [anon_sym_PERCENT] = ACTIONS(410), + [anon_sym_TILDE_SLASH] = ACTIONS(412), + [anon_sym_CARET_SLASH] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(410), + [anon_sym_lazy] = ACTIONS(410), + [anon_sym_as] = ACTIONS(410), + [anon_sym_is] = ACTIONS(410), + [anon_sym_BANGis] = ACTIONS(412), + [anon_sym_match] = ACTIONS(410), + [sym_number_literal] = ACTIONS(412), + [sym_string_literal] = ACTIONS(412), + [anon_sym_true] = ACTIONS(410), + [anon_sym_false] = ACTIONS(410), + [sym_null_literal] = ACTIONS(410), + [sym_underscore] = ACTIONS(410), [sym_comment] = ACTIONS(3), }, [STATE(51)] = { - [sym_identifier] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_var] = ACTIONS(409), - [anon_sym_val] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_return] = ACTIONS(409), - [anon_sym_repeat] = ACTIONS(409), - [anon_sym_if] = ACTIONS(409), - [anon_sym_do] = ACTIONS(409), - [anon_sym_while] = ACTIONS(409), - [sym_break_statement] = ACTIONS(409), - [sym_continue_statement] = ACTIONS(409), - [anon_sym_throw] = ACTIONS(409), - [anon_sym_assert] = ACTIONS(409), - [anon_sym_try] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), - [anon_sym_STAR_EQ] = ACTIONS(411), - [anon_sym_SLASH_EQ] = ACTIONS(411), - [anon_sym_PERCENT_EQ] = ACTIONS(411), - [anon_sym_LT_LT_EQ] = ACTIONS(411), - [anon_sym_GT_GT_EQ] = ACTIONS(411), - [anon_sym_AMP_EQ] = ACTIONS(411), - [anon_sym_PIPE_EQ] = ACTIONS(411), - [anon_sym_CARET_EQ] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_CARET] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(411), - [anon_sym_LT_EQ_GT] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_TILDE_GT_GT] = ACTIONS(411), - [anon_sym_CARET_GT_GT] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(409), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(409), - [anon_sym_TILDE_SLASH] = ACTIONS(411), - [anon_sym_CARET_SLASH] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_lazy] = ACTIONS(409), - [anon_sym_as] = ACTIONS(409), - [anon_sym_is] = ACTIONS(409), - [anon_sym_BANGis] = ACTIONS(411), - [anon_sym_match] = ACTIONS(409), - [sym_number_literal] = ACTIONS(411), - [sym_string_literal] = ACTIONS(411), - [anon_sym_true] = ACTIONS(409), - [anon_sym_false] = ACTIONS(409), - [sym_null_literal] = ACTIONS(409), - [sym_underscore] = ACTIONS(409), + [sym_identifier] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(416), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_var] = ACTIONS(414), + [anon_sym_val] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_return] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [sym_break_statement] = ACTIONS(414), + [sym_continue_statement] = ACTIONS(414), + [anon_sym_throw] = ACTIONS(414), + [anon_sym_assert] = ACTIONS(414), + [anon_sym_try] = ACTIONS(414), + [anon_sym_PLUS_EQ] = ACTIONS(195), + [anon_sym_DASH_EQ] = ACTIONS(195), + [anon_sym_STAR_EQ] = ACTIONS(195), + [anon_sym_SLASH_EQ] = ACTIONS(195), + [anon_sym_PERCENT_EQ] = ACTIONS(195), + [anon_sym_LT_LT_EQ] = ACTIONS(195), + [anon_sym_GT_GT_EQ] = ACTIONS(195), + [anon_sym_AMP_EQ] = ACTIONS(195), + [anon_sym_PIPE_EQ] = ACTIONS(195), + [anon_sym_CARET_EQ] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(195), + [anon_sym_LT_EQ_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(195), + [anon_sym_CARET_GT_GT] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(191), + [anon_sym_TILDE_SLASH] = ACTIONS(195), + [anon_sym_CARET_SLASH] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_lazy] = ACTIONS(414), + [anon_sym_as] = ACTIONS(191), + [anon_sym_is] = ACTIONS(191), + [anon_sym_BANGis] = ACTIONS(195), + [anon_sym_match] = ACTIONS(414), + [sym_number_literal] = ACTIONS(416), + [sym_string_literal] = ACTIONS(416), + [anon_sym_true] = ACTIONS(414), + [anon_sym_false] = ACTIONS(414), + [sym_null_literal] = ACTIONS(414), + [sym_underscore] = ACTIONS(414), [sym_comment] = ACTIONS(3), }, [STATE(52)] = { - [sym_identifier] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_var] = ACTIONS(413), - [anon_sym_val] = ACTIONS(413), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_return] = ACTIONS(413), - [anon_sym_repeat] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_do] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [sym_break_statement] = ACTIONS(413), - [sym_continue_statement] = ACTIONS(413), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_assert] = ACTIONS(413), - [anon_sym_try] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_EQ_GT] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_TILDE_GT_GT] = ACTIONS(415), - [anon_sym_CARET_GT_GT] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_TILDE_SLASH] = ACTIONS(415), - [anon_sym_CARET_SLASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_TILDE] = ACTIONS(413), - [anon_sym_lazy] = ACTIONS(413), - [anon_sym_as] = ACTIONS(413), - [anon_sym_is] = ACTIONS(413), - [anon_sym_BANGis] = ACTIONS(415), - [anon_sym_match] = ACTIONS(413), - [sym_number_literal] = ACTIONS(415), - [sym_string_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(413), - [anon_sym_false] = ACTIONS(413), - [sym_null_literal] = ACTIONS(413), - [sym_underscore] = ACTIONS(413), + [sym_identifier] = ACTIONS(418), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(418), + [anon_sym_GT] = ACTIONS(418), + [anon_sym_var] = ACTIONS(418), + [anon_sym_val] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(420), + [anon_sym_return] = ACTIONS(418), + [anon_sym_repeat] = ACTIONS(418), + [anon_sym_if] = ACTIONS(418), + [anon_sym_do] = ACTIONS(418), + [anon_sym_while] = ACTIONS(418), + [sym_break_statement] = ACTIONS(418), + [sym_continue_statement] = ACTIONS(418), + [anon_sym_throw] = ACTIONS(418), + [anon_sym_assert] = ACTIONS(418), + [anon_sym_try] = ACTIONS(418), + [anon_sym_PLUS_EQ] = ACTIONS(420), + [anon_sym_DASH_EQ] = ACTIONS(420), + [anon_sym_STAR_EQ] = ACTIONS(420), + [anon_sym_SLASH_EQ] = ACTIONS(420), + [anon_sym_PERCENT_EQ] = ACTIONS(420), + [anon_sym_LT_LT_EQ] = ACTIONS(420), + [anon_sym_GT_GT_EQ] = ACTIONS(420), + [anon_sym_AMP_EQ] = ACTIONS(420), + [anon_sym_PIPE_EQ] = ACTIONS(420), + [anon_sym_CARET_EQ] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(418), + [anon_sym_CARET] = ACTIONS(418), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(418), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_LT_EQ_GT] = ACTIONS(420), + [anon_sym_LT_LT] = ACTIONS(418), + [anon_sym_GT_GT] = ACTIONS(418), + [anon_sym_TILDE_GT_GT] = ACTIONS(420), + [anon_sym_CARET_GT_GT] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_TILDE_SLASH] = ACTIONS(420), + [anon_sym_CARET_SLASH] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_lazy] = ACTIONS(418), + [anon_sym_as] = ACTIONS(418), + [anon_sym_is] = ACTIONS(418), + [anon_sym_BANGis] = ACTIONS(420), + [anon_sym_match] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [sym_string_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(418), + [anon_sym_false] = ACTIONS(418), + [sym_null_literal] = ACTIONS(418), + [sym_underscore] = ACTIONS(418), [sym_comment] = ACTIONS(3), }, [STATE(53)] = { - [sym_identifier] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_var] = ACTIONS(417), - [anon_sym_val] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_return] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(417), - [anon_sym_if] = ACTIONS(417), - [anon_sym_do] = ACTIONS(417), - [anon_sym_while] = ACTIONS(417), - [sym_break_statement] = ACTIONS(417), - [sym_continue_statement] = ACTIONS(417), - [anon_sym_throw] = ACTIONS(417), - [anon_sym_assert] = ACTIONS(417), - [anon_sym_try] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_STAR_EQ] = ACTIONS(419), - [anon_sym_SLASH_EQ] = ACTIONS(419), - [anon_sym_PERCENT_EQ] = ACTIONS(419), - [anon_sym_LT_LT_EQ] = ACTIONS(419), - [anon_sym_GT_GT_EQ] = ACTIONS(419), - [anon_sym_AMP_EQ] = ACTIONS(419), - [anon_sym_PIPE_EQ] = ACTIONS(419), - [anon_sym_CARET_EQ] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ_GT] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_TILDE_GT_GT] = ACTIONS(419), - [anon_sym_CARET_GT_GT] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_TILDE_SLASH] = ACTIONS(419), - [anon_sym_CARET_SLASH] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_is] = ACTIONS(417), - [anon_sym_BANGis] = ACTIONS(419), - [anon_sym_match] = ACTIONS(417), - [sym_number_literal] = ACTIONS(419), - [sym_string_literal] = ACTIONS(419), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_null_literal] = ACTIONS(417), - [sym_underscore] = ACTIONS(417), + [sym_identifier] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_var] = ACTIONS(422), + [anon_sym_val] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_return] = ACTIONS(422), + [anon_sym_repeat] = ACTIONS(422), + [anon_sym_if] = ACTIONS(422), + [anon_sym_do] = ACTIONS(422), + [anon_sym_while] = ACTIONS(422), + [sym_break_statement] = ACTIONS(422), + [sym_continue_statement] = ACTIONS(422), + [anon_sym_throw] = ACTIONS(422), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_try] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_EQ_GT] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_TILDE_GT_GT] = ACTIONS(424), + [anon_sym_CARET_GT_GT] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_TILDE_SLASH] = ACTIONS(424), + [anon_sym_CARET_SLASH] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_lazy] = ACTIONS(422), + [anon_sym_as] = ACTIONS(422), + [anon_sym_is] = ACTIONS(422), + [anon_sym_BANGis] = ACTIONS(424), + [anon_sym_match] = ACTIONS(422), + [sym_number_literal] = ACTIONS(424), + [sym_string_literal] = ACTIONS(424), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [sym_null_literal] = ACTIONS(422), + [sym_underscore] = ACTIONS(422), [sym_comment] = ACTIONS(3), }, [STATE(54)] = { - [sym_identifier] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_val] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_return] = ACTIONS(421), - [anon_sym_repeat] = ACTIONS(421), - [anon_sym_if] = ACTIONS(421), - [anon_sym_do] = ACTIONS(421), - [anon_sym_while] = ACTIONS(421), - [sym_break_statement] = ACTIONS(421), - [sym_continue_statement] = ACTIONS(421), - [anon_sym_throw] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_try] = ACTIONS(421), - [anon_sym_PLUS_EQ] = ACTIONS(423), - [anon_sym_DASH_EQ] = ACTIONS(423), - [anon_sym_STAR_EQ] = ACTIONS(423), - [anon_sym_SLASH_EQ] = ACTIONS(423), - [anon_sym_PERCENT_EQ] = ACTIONS(423), - [anon_sym_LT_LT_EQ] = ACTIONS(423), - [anon_sym_GT_GT_EQ] = ACTIONS(423), - [anon_sym_AMP_EQ] = ACTIONS(423), - [anon_sym_PIPE_EQ] = ACTIONS(423), - [anon_sym_CARET_EQ] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_CARET] = ACTIONS(421), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(421), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_LT_EQ_GT] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_TILDE_GT_GT] = ACTIONS(423), - [anon_sym_CARET_GT_GT] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_SLASH] = ACTIONS(421), - [anon_sym_PERCENT] = ACTIONS(421), - [anon_sym_TILDE_SLASH] = ACTIONS(423), - [anon_sym_CARET_SLASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(421), - [anon_sym_as] = ACTIONS(421), - [anon_sym_is] = ACTIONS(421), - [anon_sym_BANGis] = ACTIONS(423), - [anon_sym_match] = ACTIONS(421), - [sym_number_literal] = ACTIONS(423), - [sym_string_literal] = ACTIONS(423), - [anon_sym_true] = ACTIONS(421), - [anon_sym_false] = ACTIONS(421), - [sym_null_literal] = ACTIONS(421), - [sym_underscore] = ACTIONS(421), + [sym_identifier] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_var] = ACTIONS(426), + [anon_sym_val] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_return] = ACTIONS(426), + [anon_sym_repeat] = ACTIONS(426), + [anon_sym_if] = ACTIONS(426), + [anon_sym_do] = ACTIONS(426), + [anon_sym_while] = ACTIONS(426), + [sym_break_statement] = ACTIONS(426), + [sym_continue_statement] = ACTIONS(426), + [anon_sym_throw] = ACTIONS(426), + [anon_sym_assert] = ACTIONS(426), + [anon_sym_try] = ACTIONS(426), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_EQ_GT] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_TILDE_GT_GT] = ACTIONS(428), + [anon_sym_CARET_GT_GT] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_PERCENT] = ACTIONS(426), + [anon_sym_TILDE_SLASH] = ACTIONS(428), + [anon_sym_CARET_SLASH] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_lazy] = ACTIONS(426), + [anon_sym_as] = ACTIONS(426), + [anon_sym_is] = ACTIONS(426), + [anon_sym_BANGis] = ACTIONS(428), + [anon_sym_match] = ACTIONS(426), + [sym_number_literal] = ACTIONS(428), + [sym_string_literal] = ACTIONS(428), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [sym_null_literal] = ACTIONS(426), + [sym_underscore] = ACTIONS(426), [sym_comment] = ACTIONS(3), }, [STATE(55)] = { - [sym_identifier] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_var] = ACTIONS(425), - [anon_sym_val] = ACTIONS(425), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_return] = ACTIONS(425), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_if] = ACTIONS(425), - [anon_sym_do] = ACTIONS(425), - [anon_sym_while] = ACTIONS(425), - [sym_break_statement] = ACTIONS(425), - [sym_continue_statement] = ACTIONS(425), - [anon_sym_throw] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_try] = ACTIONS(425), - [anon_sym_PLUS_EQ] = ACTIONS(427), - [anon_sym_DASH_EQ] = ACTIONS(427), - [anon_sym_STAR_EQ] = ACTIONS(427), - [anon_sym_SLASH_EQ] = ACTIONS(427), - [anon_sym_PERCENT_EQ] = ACTIONS(427), - [anon_sym_LT_LT_EQ] = ACTIONS(427), - [anon_sym_GT_GT_EQ] = ACTIONS(427), - [anon_sym_AMP_EQ] = ACTIONS(427), - [anon_sym_PIPE_EQ] = ACTIONS(427), - [anon_sym_CARET_EQ] = ACTIONS(427), - [anon_sym_QMARK] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_CARET] = ACTIONS(425), - [anon_sym_EQ_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(427), - [anon_sym_LT_EQ_GT] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(425), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_TILDE_GT_GT] = ACTIONS(427), - [anon_sym_CARET_GT_GT] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_PERCENT] = ACTIONS(425), - [anon_sym_TILDE_SLASH] = ACTIONS(427), - [anon_sym_CARET_SLASH] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(425), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_is] = ACTIONS(425), - [anon_sym_BANGis] = ACTIONS(427), - [anon_sym_match] = ACTIONS(425), - [sym_number_literal] = ACTIONS(427), - [sym_string_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(425), - [anon_sym_false] = ACTIONS(425), - [sym_null_literal] = ACTIONS(425), - [sym_underscore] = ACTIONS(425), + [sym_identifier] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_var] = ACTIONS(430), + [anon_sym_val] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_return] = ACTIONS(430), + [anon_sym_repeat] = ACTIONS(430), + [anon_sym_if] = ACTIONS(430), + [anon_sym_do] = ACTIONS(430), + [anon_sym_while] = ACTIONS(430), + [sym_break_statement] = ACTIONS(430), + [sym_continue_statement] = ACTIONS(430), + [anon_sym_throw] = ACTIONS(430), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_try] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(432), + [anon_sym_PIPE_PIPE] = ACTIONS(432), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(432), + [anon_sym_BANG_EQ] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT_EQ_GT] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_TILDE_GT_GT] = ACTIONS(432), + [anon_sym_CARET_GT_GT] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_TILDE_SLASH] = ACTIONS(432), + [anon_sym_CARET_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_lazy] = ACTIONS(430), + [anon_sym_as] = ACTIONS(430), + [anon_sym_is] = ACTIONS(430), + [anon_sym_BANGis] = ACTIONS(432), + [anon_sym_match] = ACTIONS(430), + [sym_number_literal] = ACTIONS(432), + [sym_string_literal] = ACTIONS(432), + [anon_sym_true] = ACTIONS(430), + [anon_sym_false] = ACTIONS(430), + [sym_null_literal] = ACTIONS(430), + [sym_underscore] = ACTIONS(430), [sym_comment] = ACTIONS(3), }, [STATE(56)] = { - [sym_identifier] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_val] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_return] = ACTIONS(429), - [anon_sym_repeat] = ACTIONS(429), - [anon_sym_if] = ACTIONS(429), - [anon_sym_do] = ACTIONS(429), - [anon_sym_while] = ACTIONS(429), - [sym_break_statement] = ACTIONS(429), - [sym_continue_statement] = ACTIONS(429), - [anon_sym_throw] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_try] = ACTIONS(429), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_EQ_GT] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_TILDE_GT_GT] = ACTIONS(431), - [anon_sym_CARET_GT_GT] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(429), - [anon_sym_TILDE_SLASH] = ACTIONS(431), - [anon_sym_CARET_SLASH] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_lazy] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_is] = ACTIONS(429), - [anon_sym_BANGis] = ACTIONS(431), - [anon_sym_match] = ACTIONS(429), - [sym_number_literal] = ACTIONS(431), - [sym_string_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_null_literal] = ACTIONS(429), - [sym_underscore] = ACTIONS(429), + [sym_identifier] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_var] = ACTIONS(434), + [anon_sym_val] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_return] = ACTIONS(434), + [anon_sym_repeat] = ACTIONS(434), + [anon_sym_if] = ACTIONS(434), + [anon_sym_do] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [sym_break_statement] = ACTIONS(434), + [sym_continue_statement] = ACTIONS(434), + [anon_sym_throw] = ACTIONS(434), + [anon_sym_assert] = ACTIONS(434), + [anon_sym_try] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(436), + [anon_sym_DASH_EQ] = ACTIONS(436), + [anon_sym_STAR_EQ] = ACTIONS(436), + [anon_sym_SLASH_EQ] = ACTIONS(436), + [anon_sym_PERCENT_EQ] = ACTIONS(436), + [anon_sym_LT_LT_EQ] = ACTIONS(436), + [anon_sym_GT_GT_EQ] = ACTIONS(436), + [anon_sym_AMP_EQ] = ACTIONS(436), + [anon_sym_PIPE_EQ] = ACTIONS(436), + [anon_sym_CARET_EQ] = ACTIONS(436), + [anon_sym_QMARK] = ACTIONS(436), + [anon_sym_AMP_AMP] = ACTIONS(436), + [anon_sym_PIPE_PIPE] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_EQ_EQ] = ACTIONS(436), + [anon_sym_BANG_EQ] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT_EQ] = ACTIONS(436), + [anon_sym_LT_EQ_GT] = ACTIONS(436), + [anon_sym_LT_LT] = ACTIONS(434), + [anon_sym_GT_GT] = ACTIONS(434), + [anon_sym_TILDE_GT_GT] = ACTIONS(436), + [anon_sym_CARET_GT_GT] = ACTIONS(436), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_TILDE_SLASH] = ACTIONS(436), + [anon_sym_CARET_SLASH] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_lazy] = ACTIONS(434), + [anon_sym_as] = ACTIONS(434), + [anon_sym_is] = ACTIONS(434), + [anon_sym_BANGis] = ACTIONS(436), + [anon_sym_match] = ACTIONS(434), + [sym_number_literal] = ACTIONS(436), + [sym_string_literal] = ACTIONS(436), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [sym_null_literal] = ACTIONS(434), + [sym_underscore] = ACTIONS(434), [sym_comment] = ACTIONS(3), }, [STATE(57)] = { - [sym_identifier] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_var] = ACTIONS(433), - [anon_sym_val] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_return] = ACTIONS(433), - [anon_sym_repeat] = ACTIONS(433), - [anon_sym_if] = ACTIONS(433), - [anon_sym_do] = ACTIONS(433), - [anon_sym_while] = ACTIONS(433), - [sym_break_statement] = ACTIONS(433), - [sym_continue_statement] = ACTIONS(433), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_try] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(435), - [anon_sym_DASH_EQ] = ACTIONS(435), - [anon_sym_STAR_EQ] = ACTIONS(435), - [anon_sym_SLASH_EQ] = ACTIONS(435), - [anon_sym_PERCENT_EQ] = ACTIONS(435), - [anon_sym_LT_LT_EQ] = ACTIONS(435), - [anon_sym_GT_GT_EQ] = ACTIONS(435), - [anon_sym_AMP_EQ] = ACTIONS(435), - [anon_sym_PIPE_EQ] = ACTIONS(435), - [anon_sym_CARET_EQ] = ACTIONS(435), - [anon_sym_QMARK] = ACTIONS(435), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(433), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_LT_EQ_GT] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_TILDE_GT_GT] = ACTIONS(435), - [anon_sym_CARET_GT_GT] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_TILDE_SLASH] = ACTIONS(435), - [anon_sym_CARET_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_is] = ACTIONS(433), - [anon_sym_BANGis] = ACTIONS(435), - [anon_sym_match] = ACTIONS(433), - [sym_number_literal] = ACTIONS(435), - [sym_string_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_null_literal] = ACTIONS(433), - [sym_underscore] = ACTIONS(433), + [sym_identifier] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(438), + [anon_sym_var] = ACTIONS(438), + [anon_sym_val] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(440), + [anon_sym_return] = ACTIONS(438), + [anon_sym_repeat] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [sym_break_statement] = ACTIONS(438), + [sym_continue_statement] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_assert] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(440), + [anon_sym_DASH_EQ] = ACTIONS(440), + [anon_sym_STAR_EQ] = ACTIONS(440), + [anon_sym_SLASH_EQ] = ACTIONS(440), + [anon_sym_PERCENT_EQ] = ACTIONS(440), + [anon_sym_LT_LT_EQ] = ACTIONS(440), + [anon_sym_GT_GT_EQ] = ACTIONS(440), + [anon_sym_AMP_EQ] = ACTIONS(440), + [anon_sym_PIPE_EQ] = ACTIONS(440), + [anon_sym_CARET_EQ] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(438), + [anon_sym_EQ_EQ] = ACTIONS(440), + [anon_sym_BANG_EQ] = ACTIONS(440), + [anon_sym_LT_EQ] = ACTIONS(438), + [anon_sym_GT_EQ] = ACTIONS(440), + [anon_sym_LT_EQ_GT] = ACTIONS(440), + [anon_sym_LT_LT] = ACTIONS(438), + [anon_sym_GT_GT] = ACTIONS(438), + [anon_sym_TILDE_GT_GT] = ACTIONS(440), + [anon_sym_CARET_GT_GT] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_TILDE_SLASH] = ACTIONS(440), + [anon_sym_CARET_SLASH] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(438), + [anon_sym_lazy] = ACTIONS(438), + [anon_sym_as] = ACTIONS(438), + [anon_sym_is] = ACTIONS(438), + [anon_sym_BANGis] = ACTIONS(440), + [anon_sym_match] = ACTIONS(438), + [sym_number_literal] = ACTIONS(440), + [sym_string_literal] = ACTIONS(440), + [anon_sym_true] = ACTIONS(438), + [anon_sym_false] = ACTIONS(438), + [sym_null_literal] = ACTIONS(438), + [sym_underscore] = ACTIONS(438), [sym_comment] = ACTIONS(3), }, [STATE(58)] = { - [sym_identifier] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_var] = ACTIONS(437), - [anon_sym_val] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_return] = ACTIONS(437), - [anon_sym_repeat] = ACTIONS(437), - [anon_sym_if] = ACTIONS(437), - [anon_sym_do] = ACTIONS(437), - [anon_sym_while] = ACTIONS(437), - [sym_break_statement] = ACTIONS(437), - [sym_continue_statement] = ACTIONS(437), - [anon_sym_throw] = ACTIONS(437), - [anon_sym_assert] = ACTIONS(437), - [anon_sym_try] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(437), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_EQ_GT] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(437), - [anon_sym_TILDE_GT_GT] = ACTIONS(439), - [anon_sym_CARET_GT_GT] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_TILDE_SLASH] = ACTIONS(439), - [anon_sym_CARET_SLASH] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_is] = ACTIONS(437), - [anon_sym_BANGis] = ACTIONS(439), - [anon_sym_match] = ACTIONS(437), - [sym_number_literal] = ACTIONS(439), - [sym_string_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_null_literal] = ACTIONS(437), - [sym_underscore] = ACTIONS(437), + [sym_identifier] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_var] = ACTIONS(442), + [anon_sym_val] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_return] = ACTIONS(442), + [anon_sym_repeat] = ACTIONS(442), + [anon_sym_if] = ACTIONS(442), + [anon_sym_do] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [sym_break_statement] = ACTIONS(442), + [sym_continue_statement] = ACTIONS(442), + [anon_sym_throw] = ACTIONS(442), + [anon_sym_assert] = ACTIONS(442), + [anon_sym_try] = ACTIONS(442), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [anon_sym_DASH_EQ] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(444), + [anon_sym_SLASH_EQ] = ACTIONS(444), + [anon_sym_PERCENT_EQ] = ACTIONS(444), + [anon_sym_LT_LT_EQ] = ACTIONS(444), + [anon_sym_GT_GT_EQ] = ACTIONS(444), + [anon_sym_AMP_EQ] = ACTIONS(444), + [anon_sym_PIPE_EQ] = ACTIONS(444), + [anon_sym_CARET_EQ] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(442), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(444), + [anon_sym_BANG_EQ] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(444), + [anon_sym_LT_EQ_GT] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(442), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_TILDE_GT_GT] = ACTIONS(444), + [anon_sym_CARET_GT_GT] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_TILDE_SLASH] = ACTIONS(444), + [anon_sym_CARET_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_lazy] = ACTIONS(442), + [anon_sym_as] = ACTIONS(442), + [anon_sym_is] = ACTIONS(442), + [anon_sym_BANGis] = ACTIONS(444), + [anon_sym_match] = ACTIONS(442), + [sym_number_literal] = ACTIONS(444), + [sym_string_literal] = ACTIONS(444), + [anon_sym_true] = ACTIONS(442), + [anon_sym_false] = ACTIONS(442), + [sym_null_literal] = ACTIONS(442), + [sym_underscore] = ACTIONS(442), [sym_comment] = ACTIONS(3), }, [STATE(59)] = { - [sym_identifier] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_var] = ACTIONS(441), - [anon_sym_val] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_return] = ACTIONS(441), - [anon_sym_repeat] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_do] = ACTIONS(441), - [anon_sym_while] = ACTIONS(441), - [sym_break_statement] = ACTIONS(441), - [sym_continue_statement] = ACTIONS(441), - [anon_sym_throw] = ACTIONS(441), - [anon_sym_assert] = ACTIONS(441), - [anon_sym_try] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(443), - [anon_sym_DASH_EQ] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(443), - [anon_sym_SLASH_EQ] = ACTIONS(443), - [anon_sym_PERCENT_EQ] = ACTIONS(443), - [anon_sym_LT_LT_EQ] = ACTIONS(443), - [anon_sym_GT_GT_EQ] = ACTIONS(443), - [anon_sym_AMP_EQ] = ACTIONS(443), - [anon_sym_PIPE_EQ] = ACTIONS(443), - [anon_sym_CARET_EQ] = ACTIONS(443), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_LT_EQ_GT] = ACTIONS(443), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_TILDE_GT_GT] = ACTIONS(443), - [anon_sym_CARET_GT_GT] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_TILDE_SLASH] = ACTIONS(443), - [anon_sym_CARET_SLASH] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_lazy] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_is] = ACTIONS(441), - [anon_sym_BANGis] = ACTIONS(443), - [anon_sym_match] = ACTIONS(441), - [sym_number_literal] = ACTIONS(443), - [sym_string_literal] = ACTIONS(443), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_null_literal] = ACTIONS(441), - [sym_underscore] = ACTIONS(441), + [sym_identifier] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(446), + [anon_sym_GT] = ACTIONS(446), + [anon_sym_var] = ACTIONS(446), + [anon_sym_val] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_return] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [sym_break_statement] = ACTIONS(446), + [sym_continue_statement] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_assert] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(448), + [anon_sym_DASH_EQ] = ACTIONS(448), + [anon_sym_STAR_EQ] = ACTIONS(448), + [anon_sym_SLASH_EQ] = ACTIONS(448), + [anon_sym_PERCENT_EQ] = ACTIONS(448), + [anon_sym_LT_LT_EQ] = ACTIONS(448), + [anon_sym_GT_GT_EQ] = ACTIONS(448), + [anon_sym_AMP_EQ] = ACTIONS(448), + [anon_sym_PIPE_EQ] = ACTIONS(448), + [anon_sym_CARET_EQ] = ACTIONS(448), + [anon_sym_QMARK] = ACTIONS(448), + [anon_sym_AMP_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_EQ_EQ] = ACTIONS(448), + [anon_sym_BANG_EQ] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_GT_EQ] = ACTIONS(448), + [anon_sym_LT_EQ_GT] = ACTIONS(448), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_TILDE_GT_GT] = ACTIONS(448), + [anon_sym_CARET_GT_GT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_TILDE_SLASH] = ACTIONS(448), + [anon_sym_CARET_SLASH] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_lazy] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_is] = ACTIONS(446), + [anon_sym_BANGis] = ACTIONS(448), + [anon_sym_match] = ACTIONS(446), + [sym_number_literal] = ACTIONS(448), + [sym_string_literal] = ACTIONS(448), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [sym_null_literal] = ACTIONS(446), + [sym_underscore] = ACTIONS(446), [sym_comment] = ACTIONS(3), }, [STATE(60)] = { - [sym_identifier] = ACTIONS(445), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(445), - [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_var] = ACTIONS(445), - [anon_sym_val] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_return] = ACTIONS(445), - [anon_sym_repeat] = ACTIONS(445), - [anon_sym_if] = ACTIONS(445), - [anon_sym_do] = ACTIONS(445), - [anon_sym_while] = ACTIONS(445), - [sym_break_statement] = ACTIONS(445), - [sym_continue_statement] = ACTIONS(445), - [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_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_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_match] = ACTIONS(445), - [sym_number_literal] = ACTIONS(447), - [sym_string_literal] = ACTIONS(447), - [anon_sym_true] = ACTIONS(445), - [anon_sym_false] = ACTIONS(445), - [sym_null_literal] = ACTIONS(445), - [sym_underscore] = ACTIONS(445), + [sym_identifier] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_EQ] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_var] = ACTIONS(450), + [anon_sym_val] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_return] = ACTIONS(450), + [anon_sym_repeat] = ACTIONS(450), + [anon_sym_if] = ACTIONS(450), + [anon_sym_do] = ACTIONS(450), + [anon_sym_while] = ACTIONS(450), + [sym_break_statement] = ACTIONS(450), + [sym_continue_statement] = ACTIONS(450), + [anon_sym_throw] = ACTIONS(450), + [anon_sym_assert] = ACTIONS(450), + [anon_sym_try] = ACTIONS(450), + [anon_sym_PLUS_EQ] = ACTIONS(452), + [anon_sym_DASH_EQ] = ACTIONS(452), + [anon_sym_STAR_EQ] = ACTIONS(452), + [anon_sym_SLASH_EQ] = ACTIONS(452), + [anon_sym_PERCENT_EQ] = ACTIONS(452), + [anon_sym_LT_LT_EQ] = ACTIONS(452), + [anon_sym_GT_GT_EQ] = ACTIONS(452), + [anon_sym_AMP_EQ] = ACTIONS(452), + [anon_sym_PIPE_EQ] = ACTIONS(452), + [anon_sym_CARET_EQ] = ACTIONS(452), + [anon_sym_QMARK] = ACTIONS(452), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE_PIPE] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(452), + [anon_sym_BANG_EQ] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_GT_EQ] = ACTIONS(452), + [anon_sym_LT_EQ_GT] = ACTIONS(452), + [anon_sym_LT_LT] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_TILDE_GT_GT] = ACTIONS(452), + [anon_sym_CARET_GT_GT] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_TILDE_SLASH] = ACTIONS(452), + [anon_sym_CARET_SLASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_TILDE] = ACTIONS(450), + [anon_sym_lazy] = ACTIONS(450), + [anon_sym_as] = ACTIONS(450), + [anon_sym_is] = ACTIONS(450), + [anon_sym_BANGis] = ACTIONS(452), + [anon_sym_match] = ACTIONS(450), + [sym_number_literal] = ACTIONS(452), + [sym_string_literal] = ACTIONS(452), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(450), + [sym_null_literal] = ACTIONS(450), + [sym_underscore] = ACTIONS(450), [sym_comment] = ACTIONS(3), }, [STATE(61)] = { - [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(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(454), + [anon_sym_var] = ACTIONS(454), + [anon_sym_val] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_return] = ACTIONS(454), + [anon_sym_repeat] = ACTIONS(454), + [anon_sym_if] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [sym_break_statement] = ACTIONS(454), + [sym_continue_statement] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_assert] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_PLUS_EQ] = ACTIONS(456), + [anon_sym_DASH_EQ] = ACTIONS(456), + [anon_sym_STAR_EQ] = ACTIONS(456), + [anon_sym_SLASH_EQ] = ACTIONS(456), + [anon_sym_PERCENT_EQ] = ACTIONS(456), + [anon_sym_LT_LT_EQ] = ACTIONS(456), + [anon_sym_GT_GT_EQ] = ACTIONS(456), + [anon_sym_AMP_EQ] = ACTIONS(456), + [anon_sym_PIPE_EQ] = ACTIONS(456), + [anon_sym_CARET_EQ] = ACTIONS(456), + [anon_sym_QMARK] = ACTIONS(456), + [anon_sym_AMP_AMP] = ACTIONS(456), + [anon_sym_PIPE_PIPE] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_EQ_EQ] = ACTIONS(456), + [anon_sym_BANG_EQ] = ACTIONS(456), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(456), + [anon_sym_LT_EQ_GT] = ACTIONS(456), + [anon_sym_LT_LT] = ACTIONS(454), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_TILDE_GT_GT] = ACTIONS(456), + [anon_sym_CARET_GT_GT] = ACTIONS(456), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_TILDE_SLASH] = ACTIONS(456), + [anon_sym_CARET_SLASH] = ACTIONS(456), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_lazy] = ACTIONS(454), + [anon_sym_as] = ACTIONS(454), + [anon_sym_is] = ACTIONS(454), + [anon_sym_BANGis] = ACTIONS(456), + [anon_sym_match] = ACTIONS(454), + [sym_number_literal] = ACTIONS(456), + [sym_string_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [sym_null_literal] = ACTIONS(454), + [sym_underscore] = ACTIONS(454), [sym_comment] = ACTIONS(3), }, [STATE(62)] = { - [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(458), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_var] = ACTIONS(458), + [anon_sym_val] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_return] = ACTIONS(458), + [anon_sym_repeat] = ACTIONS(458), + [anon_sym_if] = ACTIONS(458), + [anon_sym_do] = ACTIONS(458), + [anon_sym_while] = ACTIONS(458), + [sym_break_statement] = ACTIONS(458), + [sym_continue_statement] = ACTIONS(458), + [anon_sym_throw] = ACTIONS(458), + [anon_sym_assert] = ACTIONS(458), + [anon_sym_try] = ACTIONS(458), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_EQ_GT] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_TILDE_GT_GT] = ACTIONS(428), + [anon_sym_CARET_GT_GT] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_PERCENT] = ACTIONS(426), + [anon_sym_TILDE_SLASH] = ACTIONS(428), + [anon_sym_CARET_SLASH] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_lazy] = ACTIONS(458), + [anon_sym_as] = ACTIONS(426), + [anon_sym_is] = ACTIONS(426), + [anon_sym_BANGis] = ACTIONS(428), + [anon_sym_match] = ACTIONS(458), + [sym_number_literal] = ACTIONS(461), + [sym_string_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(458), + [anon_sym_false] = ACTIONS(458), + [sym_null_literal] = ACTIONS(458), + [sym_underscore] = ACTIONS(458), [sym_comment] = ACTIONS(3), }, [STATE(63)] = { - [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(464), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_var] = ACTIONS(464), + [anon_sym_val] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_return] = ACTIONS(464), + [anon_sym_repeat] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [sym_break_statement] = ACTIONS(464), + [sym_continue_statement] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_assert] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_PLUS_EQ] = ACTIONS(466), + [anon_sym_DASH_EQ] = ACTIONS(466), + [anon_sym_STAR_EQ] = ACTIONS(466), + [anon_sym_SLASH_EQ] = ACTIONS(466), + [anon_sym_PERCENT_EQ] = ACTIONS(466), + [anon_sym_LT_LT_EQ] = ACTIONS(466), + [anon_sym_GT_GT_EQ] = ACTIONS(466), + [anon_sym_AMP_EQ] = ACTIONS(466), + [anon_sym_PIPE_EQ] = ACTIONS(466), + [anon_sym_CARET_EQ] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_EQ_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(464), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_LT_EQ_GT] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_TILDE_GT_GT] = ACTIONS(466), + [anon_sym_CARET_GT_GT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_TILDE_SLASH] = ACTIONS(466), + [anon_sym_CARET_SLASH] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_lazy] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_is] = ACTIONS(464), + [anon_sym_BANGis] = ACTIONS(466), + [anon_sym_match] = ACTIONS(464), + [sym_number_literal] = ACTIONS(466), + [sym_string_literal] = ACTIONS(466), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [sym_null_literal] = ACTIONS(464), + [sym_underscore] = ACTIONS(464), [sym_comment] = ACTIONS(3), }, [STATE(64)] = { - [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(468), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [anon_sym_val] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_return] = ACTIONS(468), + [anon_sym_repeat] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym_break_statement] = ACTIONS(468), + [sym_continue_statement] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_assert] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_PLUS_EQ] = ACTIONS(470), + [anon_sym_DASH_EQ] = ACTIONS(470), + [anon_sym_STAR_EQ] = ACTIONS(470), + [anon_sym_SLASH_EQ] = ACTIONS(470), + [anon_sym_PERCENT_EQ] = ACTIONS(470), + [anon_sym_LT_LT_EQ] = ACTIONS(470), + [anon_sym_GT_GT_EQ] = ACTIONS(470), + [anon_sym_AMP_EQ] = ACTIONS(470), + [anon_sym_PIPE_EQ] = ACTIONS(470), + [anon_sym_CARET_EQ] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_LT_EQ_GT] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_TILDE_GT_GT] = ACTIONS(470), + [anon_sym_CARET_GT_GT] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_TILDE_SLASH] = ACTIONS(470), + [anon_sym_CARET_SLASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_lazy] = ACTIONS(468), + [anon_sym_as] = ACTIONS(468), + [anon_sym_is] = ACTIONS(468), + [anon_sym_BANGis] = ACTIONS(470), + [anon_sym_match] = ACTIONS(468), + [sym_number_literal] = ACTIONS(470), + [sym_string_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [sym_null_literal] = ACTIONS(468), + [sym_underscore] = ACTIONS(468), [sym_comment] = ACTIONS(3), }, [STATE(65)] = { - [sym_identifier] = ACTIONS(405), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_var] = ACTIONS(405), - [anon_sym_val] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_return] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(405), - [anon_sym_if] = ACTIONS(405), - [anon_sym_do] = ACTIONS(405), - [anon_sym_while] = ACTIONS(405), - [sym_break_statement] = ACTIONS(405), - [sym_continue_statement] = ACTIONS(405), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_assert] = ACTIONS(405), - [anon_sym_try] = ACTIONS(405), - [anon_sym_PLUS_EQ] = ACTIONS(407), - [anon_sym_DASH_EQ] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(407), - [anon_sym_SLASH_EQ] = ACTIONS(407), - [anon_sym_PERCENT_EQ] = ACTIONS(407), - [anon_sym_LT_LT_EQ] = ACTIONS(407), - [anon_sym_GT_GT_EQ] = ACTIONS(407), - [anon_sym_AMP_EQ] = ACTIONS(407), - [anon_sym_PIPE_EQ] = ACTIONS(407), - [anon_sym_CARET_EQ] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AMP_AMP] = ACTIONS(407), - [anon_sym_PIPE_PIPE] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(407), - [anon_sym_BANG_EQ] = ACTIONS(407), - [anon_sym_LT_EQ] = ACTIONS(405), - [anon_sym_GT_EQ] = ACTIONS(407), - [anon_sym_LT_EQ_GT] = ACTIONS(407), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_TILDE_GT_GT] = ACTIONS(407), - [anon_sym_CARET_GT_GT] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_TILDE_SLASH] = ACTIONS(407), - [anon_sym_CARET_SLASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_TILDE] = ACTIONS(405), - [anon_sym_lazy] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_is] = ACTIONS(405), - [anon_sym_BANGis] = ACTIONS(407), - [anon_sym_match] = ACTIONS(405), - [sym_number_literal] = ACTIONS(407), - [sym_string_literal] = ACTIONS(407), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [sym_null_literal] = ACTIONS(405), - [sym_underscore] = ACTIONS(405), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_var] = ACTIONS(472), + [anon_sym_val] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_return] = ACTIONS(472), + [anon_sym_repeat] = ACTIONS(472), + [anon_sym_if] = ACTIONS(472), + [anon_sym_do] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [sym_break_statement] = ACTIONS(472), + [sym_continue_statement] = ACTIONS(472), + [anon_sym_throw] = ACTIONS(472), + [anon_sym_assert] = ACTIONS(472), + [anon_sym_try] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(474), + [anon_sym_DASH_EQ] = ACTIONS(474), + [anon_sym_STAR_EQ] = ACTIONS(474), + [anon_sym_SLASH_EQ] = ACTIONS(474), + [anon_sym_PERCENT_EQ] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(474), + [anon_sym_GT_GT_EQ] = ACTIONS(474), + [anon_sym_AMP_EQ] = ACTIONS(474), + [anon_sym_PIPE_EQ] = ACTIONS(474), + [anon_sym_CARET_EQ] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_LT_EQ_GT] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(472), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_TILDE_GT_GT] = ACTIONS(474), + [anon_sym_CARET_GT_GT] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_TILDE_SLASH] = ACTIONS(474), + [anon_sym_CARET_SLASH] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_lazy] = ACTIONS(472), + [anon_sym_as] = ACTIONS(472), + [anon_sym_is] = ACTIONS(472), + [anon_sym_BANGis] = ACTIONS(474), + [anon_sym_match] = ACTIONS(472), + [sym_number_literal] = ACTIONS(474), + [sym_string_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [sym_null_literal] = ACTIONS(472), + [sym_underscore] = ACTIONS(472), [sym_comment] = ACTIONS(3), }, [STATE(66)] = { - [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(476), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_return] = ACTIONS(476), + [anon_sym_repeat] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [anon_sym_do] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [sym_break_statement] = ACTIONS(476), + [sym_continue_statement] = ACTIONS(476), + [anon_sym_throw] = ACTIONS(476), + [anon_sym_assert] = ACTIONS(476), + [anon_sym_try] = ACTIONS(476), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(478), + [anon_sym_GT_GT_EQ] = ACTIONS(478), + [anon_sym_AMP_EQ] = ACTIONS(478), + [anon_sym_PIPE_EQ] = ACTIONS(478), + [anon_sym_CARET_EQ] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_EQ_GT] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(476), + [anon_sym_TILDE_GT_GT] = ACTIONS(478), + [anon_sym_CARET_GT_GT] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_SLASH] = ACTIONS(476), + [anon_sym_PERCENT] = ACTIONS(476), + [anon_sym_TILDE_SLASH] = ACTIONS(478), + [anon_sym_CARET_SLASH] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_as] = ACTIONS(476), + [anon_sym_is] = ACTIONS(476), + [anon_sym_BANGis] = ACTIONS(478), + [anon_sym_match] = ACTIONS(476), + [sym_number_literal] = ACTIONS(478), + [sym_string_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [sym_null_literal] = ACTIONS(476), + [sym_underscore] = ACTIONS(476), [sym_comment] = ACTIONS(3), }, [STATE(67)] = { - [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(480), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_var] = ACTIONS(480), + [anon_sym_val] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_return] = ACTIONS(480), + [anon_sym_repeat] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_do] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [sym_break_statement] = ACTIONS(480), + [sym_continue_statement] = ACTIONS(480), + [anon_sym_throw] = ACTIONS(480), + [anon_sym_assert] = ACTIONS(480), + [anon_sym_try] = ACTIONS(480), + [anon_sym_PLUS_EQ] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(482), + [anon_sym_STAR_EQ] = ACTIONS(482), + [anon_sym_SLASH_EQ] = ACTIONS(482), + [anon_sym_PERCENT_EQ] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(482), + [anon_sym_GT_GT_EQ] = ACTIONS(482), + [anon_sym_AMP_EQ] = ACTIONS(482), + [anon_sym_PIPE_EQ] = ACTIONS(482), + [anon_sym_CARET_EQ] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_EQ_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_LT_EQ_GT] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_TILDE_GT_GT] = ACTIONS(482), + [anon_sym_CARET_GT_GT] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_TILDE_SLASH] = ACTIONS(482), + [anon_sym_CARET_SLASH] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_lazy] = ACTIONS(480), + [anon_sym_as] = ACTIONS(480), + [anon_sym_is] = ACTIONS(480), + [anon_sym_BANGis] = ACTIONS(482), + [anon_sym_match] = ACTIONS(480), + [sym_number_literal] = ACTIONS(482), + [sym_string_literal] = ACTIONS(482), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [sym_null_literal] = ACTIONS(480), + [sym_underscore] = ACTIONS(480), [sym_comment] = ACTIONS(3), }, [STATE(68)] = { - [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(484), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_var] = ACTIONS(484), + [anon_sym_val] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_return] = ACTIONS(484), + [anon_sym_repeat] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_do] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [sym_break_statement] = ACTIONS(484), + [sym_continue_statement] = ACTIONS(484), + [anon_sym_throw] = ACTIONS(484), + [anon_sym_assert] = ACTIONS(484), + [anon_sym_try] = ACTIONS(484), + [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_DASH_EQ] = ACTIONS(486), + [anon_sym_STAR_EQ] = ACTIONS(486), + [anon_sym_SLASH_EQ] = ACTIONS(486), + [anon_sym_PERCENT_EQ] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(486), + [anon_sym_GT_GT_EQ] = ACTIONS(486), + [anon_sym_AMP_EQ] = ACTIONS(486), + [anon_sym_PIPE_EQ] = ACTIONS(486), + [anon_sym_CARET_EQ] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(484), + [anon_sym_EQ_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_LT_EQ_GT] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_TILDE_GT_GT] = ACTIONS(486), + [anon_sym_CARET_GT_GT] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(484), + [anon_sym_PERCENT] = ACTIONS(484), + [anon_sym_TILDE_SLASH] = ACTIONS(486), + [anon_sym_CARET_SLASH] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(484), + [anon_sym_lazy] = ACTIONS(484), + [anon_sym_as] = ACTIONS(484), + [anon_sym_is] = ACTIONS(484), + [anon_sym_BANGis] = ACTIONS(486), + [anon_sym_match] = ACTIONS(484), + [sym_number_literal] = ACTIONS(486), + [sym_string_literal] = ACTIONS(486), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [sym_null_literal] = ACTIONS(484), + [sym_underscore] = ACTIONS(484), [sym_comment] = ACTIONS(3), }, [STATE(69)] = { - [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(488), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_var] = ACTIONS(488), + [anon_sym_val] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_return] = ACTIONS(488), + [anon_sym_repeat] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_do] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [sym_break_statement] = ACTIONS(488), + [sym_continue_statement] = ACTIONS(488), + [anon_sym_throw] = ACTIONS(488), + [anon_sym_assert] = ACTIONS(488), + [anon_sym_try] = ACTIONS(488), + [anon_sym_PLUS_EQ] = ACTIONS(490), + [anon_sym_DASH_EQ] = ACTIONS(490), + [anon_sym_STAR_EQ] = ACTIONS(490), + [anon_sym_SLASH_EQ] = ACTIONS(490), + [anon_sym_PERCENT_EQ] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(490), + [anon_sym_GT_GT_EQ] = ACTIONS(490), + [anon_sym_AMP_EQ] = ACTIONS(490), + [anon_sym_PIPE_EQ] = ACTIONS(490), + [anon_sym_CARET_EQ] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_AMP_AMP] = ACTIONS(490), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_CARET] = ACTIONS(488), + [anon_sym_EQ_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_LT_EQ_GT] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(488), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_TILDE_GT_GT] = ACTIONS(490), + [anon_sym_CARET_GT_GT] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_TILDE_SLASH] = ACTIONS(490), + [anon_sym_CARET_SLASH] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_lazy] = ACTIONS(488), + [anon_sym_as] = ACTIONS(488), + [anon_sym_is] = ACTIONS(488), + [anon_sym_BANGis] = ACTIONS(490), + [anon_sym_match] = ACTIONS(488), + [sym_number_literal] = ACTIONS(490), + [sym_string_literal] = ACTIONS(490), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), + [sym_null_literal] = ACTIONS(488), + [sym_underscore] = ACTIONS(488), [sym_comment] = ACTIONS(3), }, [STATE(70)] = { - [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(492), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_var] = ACTIONS(492), + [anon_sym_val] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_return] = ACTIONS(492), + [anon_sym_repeat] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_do] = ACTIONS(492), + [anon_sym_while] = ACTIONS(492), + [sym_break_statement] = ACTIONS(492), + [sym_continue_statement] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(492), + [anon_sym_assert] = ACTIONS(492), + [anon_sym_try] = ACTIONS(492), + [anon_sym_PLUS_EQ] = ACTIONS(494), + [anon_sym_DASH_EQ] = ACTIONS(494), + [anon_sym_STAR_EQ] = ACTIONS(494), + [anon_sym_SLASH_EQ] = ACTIONS(494), + [anon_sym_PERCENT_EQ] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(494), + [anon_sym_GT_GT_EQ] = ACTIONS(494), + [anon_sym_AMP_EQ] = ACTIONS(494), + [anon_sym_PIPE_EQ] = ACTIONS(494), + [anon_sym_CARET_EQ] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(494), + [anon_sym_BANG_EQ] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_LT_EQ_GT] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(492), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_TILDE_GT_GT] = ACTIONS(494), + [anon_sym_CARET_GT_GT] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_TILDE_SLASH] = ACTIONS(494), + [anon_sym_CARET_SLASH] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_lazy] = ACTIONS(492), + [anon_sym_as] = ACTIONS(492), + [anon_sym_is] = ACTIONS(492), + [anon_sym_BANGis] = ACTIONS(494), + [anon_sym_match] = ACTIONS(492), + [sym_number_literal] = ACTIONS(494), + [sym_string_literal] = ACTIONS(494), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [sym_null_literal] = ACTIONS(492), + [sym_underscore] = ACTIONS(492), [sym_comment] = ACTIONS(3), }, [STATE(71)] = { - [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(496), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_var] = ACTIONS(496), + [anon_sym_val] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_return] = ACTIONS(496), + [anon_sym_repeat] = ACTIONS(496), + [anon_sym_if] = ACTIONS(496), + [anon_sym_do] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [sym_break_statement] = ACTIONS(496), + [sym_continue_statement] = ACTIONS(496), + [anon_sym_throw] = ACTIONS(496), + [anon_sym_assert] = ACTIONS(496), + [anon_sym_try] = ACTIONS(496), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(498), + [anon_sym_GT_GT_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(496), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_EQ_GT] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_TILDE_GT_GT] = ACTIONS(498), + [anon_sym_CARET_GT_GT] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(496), + [anon_sym_TILDE_SLASH] = ACTIONS(498), + [anon_sym_CARET_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_lazy] = ACTIONS(496), + [anon_sym_as] = ACTIONS(496), + [anon_sym_is] = ACTIONS(496), + [anon_sym_BANGis] = ACTIONS(498), + [anon_sym_match] = ACTIONS(496), + [sym_number_literal] = ACTIONS(498), + [sym_string_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(496), + [anon_sym_false] = ACTIONS(496), + [sym_null_literal] = ACTIONS(496), + [sym_underscore] = ACTIONS(496), [sym_comment] = ACTIONS(3), }, [STATE(72)] = { - [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_identifier] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_var] = ACTIONS(500), + [anon_sym_val] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_return] = ACTIONS(500), + [anon_sym_repeat] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_do] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [sym_break_statement] = ACTIONS(500), + [sym_continue_statement] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(500), + [anon_sym_assert] = ACTIONS(500), + [anon_sym_try] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(502), + [anon_sym_DASH_EQ] = ACTIONS(502), + [anon_sym_STAR_EQ] = ACTIONS(502), + [anon_sym_SLASH_EQ] = ACTIONS(502), + [anon_sym_PERCENT_EQ] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(502), + [anon_sym_GT_GT_EQ] = ACTIONS(502), + [anon_sym_AMP_EQ] = ACTIONS(502), + [anon_sym_PIPE_EQ] = ACTIONS(502), + [anon_sym_CARET_EQ] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(502), + [anon_sym_PIPE_PIPE] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_LT_EQ_GT] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(500), + [anon_sym_TILDE_GT_GT] = ACTIONS(502), + [anon_sym_CARET_GT_GT] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_TILDE_SLASH] = ACTIONS(502), + [anon_sym_CARET_SLASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_lazy] = ACTIONS(500), + [anon_sym_as] = ACTIONS(500), + [anon_sym_is] = ACTIONS(500), + [anon_sym_BANGis] = ACTIONS(502), + [anon_sym_match] = ACTIONS(500), + [sym_number_literal] = ACTIONS(502), + [sym_string_literal] = ACTIONS(502), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [sym_null_literal] = ACTIONS(500), + [sym_underscore] = ACTIONS(500), [sym_comment] = ACTIONS(3), }, [STATE(73)] = { - [sym_identifier] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_var] = ACTIONS(493), - [anon_sym_val] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(495), - [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(495), - [anon_sym_DASH_EQ] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(495), - [anon_sym_SLASH_EQ] = ACTIONS(495), - [anon_sym_PERCENT_EQ] = ACTIONS(495), - [anon_sym_LT_LT_EQ] = ACTIONS(495), - [anon_sym_GT_GT_EQ] = ACTIONS(495), - [anon_sym_AMP_EQ] = ACTIONS(495), - [anon_sym_PIPE_EQ] = ACTIONS(495), - [anon_sym_CARET_EQ] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AMP_AMP] = ACTIONS(495), - [anon_sym_PIPE_PIPE] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [anon_sym_CARET] = ACTIONS(493), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(495), - [anon_sym_LT_EQ_GT] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_TILDE_GT_GT] = ACTIONS(495), - [anon_sym_CARET_GT_GT] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_SLASH] = ACTIONS(493), - [anon_sym_PERCENT] = ACTIONS(493), - [anon_sym_TILDE_SLASH] = ACTIONS(495), - [anon_sym_CARET_SLASH] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_lazy] = ACTIONS(493), - [anon_sym_as] = ACTIONS(493), - [anon_sym_is] = ACTIONS(493), - [anon_sym_BANGis] = ACTIONS(495), - [anon_sym_match] = ACTIONS(493), - [sym_number_literal] = ACTIONS(495), - [sym_string_literal] = ACTIONS(495), - [anon_sym_true] = ACTIONS(493), - [anon_sym_false] = ACTIONS(493), - [sym_null_literal] = ACTIONS(493), - [sym_underscore] = ACTIONS(493), + [sym_identifier] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_var] = ACTIONS(504), + [anon_sym_val] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_return] = ACTIONS(504), + [anon_sym_repeat] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_do] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [sym_break_statement] = ACTIONS(504), + [sym_continue_statement] = ACTIONS(504), + [anon_sym_throw] = ACTIONS(504), + [anon_sym_assert] = ACTIONS(504), + [anon_sym_try] = ACTIONS(504), + [anon_sym_PLUS_EQ] = ACTIONS(506), + [anon_sym_DASH_EQ] = ACTIONS(506), + [anon_sym_STAR_EQ] = ACTIONS(506), + [anon_sym_SLASH_EQ] = ACTIONS(506), + [anon_sym_PERCENT_EQ] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(506), + [anon_sym_GT_GT_EQ] = ACTIONS(506), + [anon_sym_AMP_EQ] = ACTIONS(506), + [anon_sym_PIPE_EQ] = ACTIONS(506), + [anon_sym_CARET_EQ] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_AMP_AMP] = ACTIONS(506), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(504), + [anon_sym_CARET] = ACTIONS(504), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_LT_EQ_GT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(504), + [anon_sym_GT_GT] = ACTIONS(504), + [anon_sym_TILDE_GT_GT] = ACTIONS(506), + [anon_sym_CARET_GT_GT] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(504), + [anon_sym_PERCENT] = ACTIONS(504), + [anon_sym_TILDE_SLASH] = ACTIONS(506), + [anon_sym_CARET_SLASH] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_lazy] = ACTIONS(504), + [anon_sym_as] = ACTIONS(504), + [anon_sym_is] = ACTIONS(504), + [anon_sym_BANGis] = ACTIONS(506), + [anon_sym_match] = ACTIONS(504), + [sym_number_literal] = ACTIONS(506), + [sym_string_literal] = ACTIONS(506), + [anon_sym_true] = ACTIONS(504), + [anon_sym_false] = ACTIONS(504), + [sym_null_literal] = ACTIONS(504), + [sym_underscore] = ACTIONS(504), [sym_comment] = ACTIONS(3), }, [STATE(74)] = { - [sym_identifier] = ACTIONS(497), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PIPE] = ACTIONS(497), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_var] = ACTIONS(497), - [anon_sym_val] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_return] = ACTIONS(497), - [anon_sym_repeat] = ACTIONS(497), - [anon_sym_if] = ACTIONS(497), - [anon_sym_do] = ACTIONS(497), - [anon_sym_while] = ACTIONS(497), - [sym_break_statement] = ACTIONS(497), - [sym_continue_statement] = ACTIONS(497), - [anon_sym_throw] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_try] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(499), - [anon_sym_DASH_EQ] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(499), - [anon_sym_SLASH_EQ] = ACTIONS(499), - [anon_sym_PERCENT_EQ] = ACTIONS(499), - [anon_sym_LT_LT_EQ] = ACTIONS(499), - [anon_sym_GT_GT_EQ] = ACTIONS(499), - [anon_sym_AMP_EQ] = ACTIONS(499), - [anon_sym_PIPE_EQ] = ACTIONS(499), - [anon_sym_CARET_EQ] = ACTIONS(499), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_LT_EQ_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_TILDE_GT_GT] = ACTIONS(499), - [anon_sym_CARET_GT_GT] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(497), - [anon_sym_SLASH] = ACTIONS(497), - [anon_sym_PERCENT] = ACTIONS(497), - [anon_sym_TILDE_SLASH] = ACTIONS(499), - [anon_sym_CARET_SLASH] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(497), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_as] = ACTIONS(497), - [anon_sym_is] = ACTIONS(497), - [anon_sym_BANGis] = ACTIONS(499), - [anon_sym_match] = ACTIONS(497), - [sym_number_literal] = ACTIONS(499), - [sym_string_literal] = ACTIONS(499), - [anon_sym_true] = ACTIONS(497), - [anon_sym_false] = ACTIONS(497), - [sym_null_literal] = ACTIONS(497), - [sym_underscore] = ACTIONS(497), + [sym_identifier] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_var] = ACTIONS(508), + [anon_sym_val] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_return] = ACTIONS(508), + [anon_sym_repeat] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [sym_break_statement] = ACTIONS(508), + [sym_continue_statement] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_assert] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(510), + [anon_sym_DASH_EQ] = ACTIONS(510), + [anon_sym_STAR_EQ] = ACTIONS(510), + [anon_sym_SLASH_EQ] = ACTIONS(510), + [anon_sym_PERCENT_EQ] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(510), + [anon_sym_GT_GT_EQ] = ACTIONS(510), + [anon_sym_AMP_EQ] = ACTIONS(510), + [anon_sym_PIPE_EQ] = ACTIONS(510), + [anon_sym_CARET_EQ] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(510), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(510), + [anon_sym_LT_EQ_GT] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_TILDE_GT_GT] = ACTIONS(510), + [anon_sym_CARET_GT_GT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_PERCENT] = ACTIONS(508), + [anon_sym_TILDE_SLASH] = ACTIONS(510), + [anon_sym_CARET_SLASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_lazy] = ACTIONS(508), + [anon_sym_as] = ACTIONS(508), + [anon_sym_is] = ACTIONS(508), + [anon_sym_BANGis] = ACTIONS(510), + [anon_sym_match] = ACTIONS(508), + [sym_number_literal] = ACTIONS(510), + [sym_string_literal] = ACTIONS(510), + [anon_sym_true] = ACTIONS(508), + [anon_sym_false] = ACTIONS(508), + [sym_null_literal] = ACTIONS(508), + [sym_underscore] = ACTIONS(508), [sym_comment] = ACTIONS(3), }, [STATE(75)] = { - [sym_identifier] = ACTIONS(501), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_EQ] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_val] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_return] = ACTIONS(501), - [anon_sym_repeat] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [sym_break_statement] = ACTIONS(501), - [sym_continue_statement] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_assert] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(503), - [anon_sym_DASH_EQ] = ACTIONS(503), - [anon_sym_STAR_EQ] = ACTIONS(503), - [anon_sym_SLASH_EQ] = ACTIONS(503), - [anon_sym_PERCENT_EQ] = ACTIONS(503), - [anon_sym_LT_LT_EQ] = ACTIONS(503), - [anon_sym_GT_GT_EQ] = ACTIONS(503), - [anon_sym_AMP_EQ] = ACTIONS(503), - [anon_sym_PIPE_EQ] = ACTIONS(503), - [anon_sym_CARET_EQ] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(501), - [anon_sym_EQ_EQ] = ACTIONS(503), - [anon_sym_BANG_EQ] = ACTIONS(503), - [anon_sym_LT_EQ] = ACTIONS(501), - [anon_sym_GT_EQ] = ACTIONS(503), - [anon_sym_LT_EQ_GT] = ACTIONS(503), - [anon_sym_LT_LT] = ACTIONS(501), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_TILDE_GT_GT] = ACTIONS(503), - [anon_sym_CARET_GT_GT] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(501), - [anon_sym_TILDE_SLASH] = ACTIONS(503), - [anon_sym_CARET_SLASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_lazy] = ACTIONS(501), - [anon_sym_as] = ACTIONS(501), - [anon_sym_is] = ACTIONS(501), - [anon_sym_BANGis] = ACTIONS(503), - [anon_sym_match] = ACTIONS(501), - [sym_number_literal] = ACTIONS(503), - [sym_string_literal] = ACTIONS(503), - [anon_sym_true] = ACTIONS(501), - [anon_sym_false] = ACTIONS(501), - [sym_null_literal] = ACTIONS(501), - [sym_underscore] = ACTIONS(501), + [sym_identifier] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_var] = ACTIONS(512), + [anon_sym_val] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_return] = ACTIONS(512), + [anon_sym_repeat] = ACTIONS(512), + [anon_sym_if] = ACTIONS(512), + [anon_sym_do] = ACTIONS(512), + [anon_sym_while] = ACTIONS(512), + [sym_break_statement] = ACTIONS(512), + [sym_continue_statement] = ACTIONS(512), + [anon_sym_throw] = ACTIONS(512), + [anon_sym_assert] = ACTIONS(512), + [anon_sym_try] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(514), + [anon_sym_DASH_EQ] = ACTIONS(514), + [anon_sym_STAR_EQ] = ACTIONS(514), + [anon_sym_SLASH_EQ] = ACTIONS(514), + [anon_sym_PERCENT_EQ] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(514), + [anon_sym_GT_GT_EQ] = ACTIONS(514), + [anon_sym_AMP_EQ] = ACTIONS(514), + [anon_sym_PIPE_EQ] = ACTIONS(514), + [anon_sym_CARET_EQ] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_CARET] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(514), + [anon_sym_LT_EQ_GT] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_TILDE_GT_GT] = ACTIONS(514), + [anon_sym_CARET_GT_GT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(512), + [anon_sym_TILDE_SLASH] = ACTIONS(514), + [anon_sym_CARET_SLASH] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_lazy] = ACTIONS(512), + [anon_sym_as] = ACTIONS(512), + [anon_sym_is] = ACTIONS(512), + [anon_sym_BANGis] = ACTIONS(514), + [anon_sym_match] = ACTIONS(512), + [sym_number_literal] = ACTIONS(514), + [sym_string_literal] = ACTIONS(514), + [anon_sym_true] = ACTIONS(512), + [anon_sym_false] = ACTIONS(512), + [sym_null_literal] = ACTIONS(512), + [sym_underscore] = ACTIONS(512), [sym_comment] = ACTIONS(3), }, [STATE(76)] = { - [sym_identifier] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(184), - [anon_sym_GT] = ACTIONS(184), - [anon_sym_var] = ACTIONS(505), - [anon_sym_val] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_return] = ACTIONS(505), - [anon_sym_repeat] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [sym_break_statement] = ACTIONS(505), - [sym_continue_statement] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_assert] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_SLASH_EQ] = ACTIONS(188), - [anon_sym_PERCENT_EQ] = ACTIONS(188), - [anon_sym_LT_LT_EQ] = ACTIONS(188), - [anon_sym_GT_GT_EQ] = ACTIONS(188), - [anon_sym_AMP_EQ] = ACTIONS(188), - [anon_sym_PIPE_EQ] = ACTIONS(188), - [anon_sym_CARET_EQ] = ACTIONS(188), - [anon_sym_QMARK] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_AMP] = ACTIONS(184), - [anon_sym_CARET] = ACTIONS(184), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_LT_EQ_GT] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(184), - [anon_sym_GT_GT] = ACTIONS(184), - [anon_sym_TILDE_GT_GT] = ACTIONS(188), - [anon_sym_CARET_GT_GT] = ACTIONS(188), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(184), - [anon_sym_PERCENT] = ACTIONS(184), - [anon_sym_TILDE_SLASH] = ACTIONS(188), - [anon_sym_CARET_SLASH] = ACTIONS(188), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_lazy] = ACTIONS(505), - [anon_sym_as] = ACTIONS(184), - [anon_sym_is] = ACTIONS(184), - [anon_sym_BANGis] = ACTIONS(188), - [anon_sym_match] = ACTIONS(505), - [sym_number_literal] = ACTIONS(507), - [sym_string_literal] = ACTIONS(507), - [anon_sym_true] = ACTIONS(505), - [anon_sym_false] = ACTIONS(505), - [sym_null_literal] = ACTIONS(505), - [sym_underscore] = ACTIONS(505), + [sym_identifier] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_var] = ACTIONS(516), + [anon_sym_val] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_return] = ACTIONS(516), + [anon_sym_repeat] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_while] = ACTIONS(516), + [sym_break_statement] = ACTIONS(516), + [sym_continue_statement] = ACTIONS(516), + [anon_sym_throw] = ACTIONS(516), + [anon_sym_assert] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_PLUS_EQ] = ACTIONS(518), + [anon_sym_DASH_EQ] = ACTIONS(518), + [anon_sym_STAR_EQ] = ACTIONS(518), + [anon_sym_SLASH_EQ] = ACTIONS(518), + [anon_sym_PERCENT_EQ] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(518), + [anon_sym_GT_GT_EQ] = ACTIONS(518), + [anon_sym_AMP_EQ] = ACTIONS(518), + [anon_sym_PIPE_EQ] = ACTIONS(518), + [anon_sym_CARET_EQ] = ACTIONS(518), + [anon_sym_QMARK] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_CARET] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_LT_EQ_GT] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_TILDE_GT_GT] = ACTIONS(518), + [anon_sym_CARET_GT_GT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_SLASH] = ACTIONS(516), + [anon_sym_PERCENT] = ACTIONS(516), + [anon_sym_TILDE_SLASH] = ACTIONS(518), + [anon_sym_CARET_SLASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_lazy] = ACTIONS(516), + [anon_sym_as] = ACTIONS(516), + [anon_sym_is] = ACTIONS(516), + [anon_sym_BANGis] = ACTIONS(518), + [anon_sym_match] = ACTIONS(516), + [sym_number_literal] = ACTIONS(518), + [sym_string_literal] = ACTIONS(518), + [anon_sym_true] = ACTIONS(516), + [anon_sym_false] = ACTIONS(516), + [sym_null_literal] = ACTIONS(516), + [sym_underscore] = ACTIONS(516), [sym_comment] = ACTIONS(3), }, [STATE(77)] = { - [sym__type_hint] = STATE(152), - [sym_type_instantiatedTs] = STATE(152), - [sym_tensor_type] = STATE(152), - [sym_tuple_type] = STATE(152), - [sym_parenthesized_type] = STATE(152), - [sym_fun_callable_type] = STATE(152), - [sym_nullable_type] = STATE(152), - [sym_union_type] = STATE(152), - [sym_identifier] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(179), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_COMMA] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(177), - [anon_sym_LT] = ACTIONS(179), - [anon_sym_GT] = ACTIONS(179), - [anon_sym_DASH_GT] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_else] = ACTIONS(179), - [anon_sym_PLUS_EQ] = ACTIONS(177), - [anon_sym_DASH_EQ] = ACTIONS(177), - [anon_sym_STAR_EQ] = ACTIONS(177), - [anon_sym_SLASH_EQ] = ACTIONS(177), - [anon_sym_PERCENT_EQ] = ACTIONS(177), - [anon_sym_LT_LT_EQ] = ACTIONS(177), - [anon_sym_GT_GT_EQ] = ACTIONS(177), - [anon_sym_AMP_EQ] = ACTIONS(177), - [anon_sym_PIPE_EQ] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(181), - [anon_sym_AMP_AMP] = ACTIONS(177), - [anon_sym_PIPE_PIPE] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(179), - [anon_sym_CARET] = ACTIONS(179), - [anon_sym_EQ_EQ] = ACTIONS(177), - [anon_sym_BANG_EQ] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(179), - [anon_sym_GT_EQ] = ACTIONS(177), - [anon_sym_LT_EQ_GT] = ACTIONS(177), - [anon_sym_LT_LT] = ACTIONS(179), - [anon_sym_GT_GT] = ACTIONS(179), - [anon_sym_TILDE_GT_GT] = ACTIONS(177), - [anon_sym_CARET_GT_GT] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(179), - [anon_sym_PERCENT] = ACTIONS(179), - [anon_sym_TILDE_SLASH] = ACTIONS(177), - [anon_sym_CARET_SLASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_lazy] = ACTIONS(179), - [anon_sym_as] = ACTIONS(179), - [anon_sym_is] = ACTIONS(179), - [anon_sym_BANGis] = ACTIONS(177), - [anon_sym_match] = ACTIONS(179), - [sym_number_literal] = ACTIONS(177), - [sym_string_literal] = ACTIONS(177), - [anon_sym_true] = ACTIONS(179), - [anon_sym_false] = ACTIONS(179), - [sym_null_literal] = ACTIONS(179), - [sym_underscore] = ACTIONS(179), + [sym_identifier] = ACTIONS(520), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_var] = ACTIONS(520), + [anon_sym_val] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_return] = ACTIONS(520), + [anon_sym_repeat] = ACTIONS(520), + [anon_sym_if] = ACTIONS(520), + [anon_sym_do] = ACTIONS(520), + [anon_sym_while] = ACTIONS(520), + [sym_break_statement] = ACTIONS(520), + [sym_continue_statement] = ACTIONS(520), + [anon_sym_throw] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_try] = ACTIONS(520), + [anon_sym_PLUS_EQ] = ACTIONS(522), + [anon_sym_DASH_EQ] = ACTIONS(522), + [anon_sym_STAR_EQ] = ACTIONS(522), + [anon_sym_SLASH_EQ] = ACTIONS(522), + [anon_sym_PERCENT_EQ] = ACTIONS(522), + [anon_sym_LT_LT_EQ] = ACTIONS(522), + [anon_sym_GT_GT_EQ] = ACTIONS(522), + [anon_sym_AMP_EQ] = ACTIONS(522), + [anon_sym_PIPE_EQ] = ACTIONS(522), + [anon_sym_CARET_EQ] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_AMP_AMP] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(520), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_LT_EQ_GT] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_TILDE_GT_GT] = ACTIONS(522), + [anon_sym_CARET_GT_GT] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(520), + [anon_sym_PERCENT] = ACTIONS(520), + [anon_sym_TILDE_SLASH] = ACTIONS(522), + [anon_sym_CARET_SLASH] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_as] = ACTIONS(520), + [anon_sym_is] = ACTIONS(520), + [anon_sym_BANGis] = ACTIONS(522), + [anon_sym_match] = ACTIONS(520), + [sym_number_literal] = ACTIONS(522), + [sym_string_literal] = ACTIONS(522), + [anon_sym_true] = ACTIONS(520), + [anon_sym_false] = ACTIONS(520), + [sym_null_literal] = ACTIONS(520), + [sym_underscore] = ACTIONS(520), [sym_comment] = ACTIONS(3), }, [STATE(78)] = { - [sym__type_hint] = STATE(152), - [sym_type_instantiatedTs] = STATE(152), - [sym_tensor_type] = STATE(152), - [sym_tuple_type] = STATE(152), - [sym_parenthesized_type] = STATE(152), - [sym_fun_callable_type] = STATE(152), - [sym_nullable_type] = STATE(152), - [sym_union_type] = STATE(152), - [sym_identifier] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(167), - [anon_sym_EQ] = ACTIONS(169), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LT] = ACTIONS(169), - [anon_sym_GT] = ACTIONS(169), - [anon_sym_DASH_GT] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_else] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(167), - [anon_sym_PIPE_PIPE] = ACTIONS(167), - [anon_sym_AMP] = ACTIONS(169), - [anon_sym_CARET] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_LT_EQ_GT] = ACTIONS(167), - [anon_sym_LT_LT] = ACTIONS(169), - [anon_sym_GT_GT] = ACTIONS(169), - [anon_sym_TILDE_GT_GT] = ACTIONS(167), - [anon_sym_CARET_GT_GT] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(169), - [anon_sym_STAR] = ACTIONS(169), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(169), - [anon_sym_TILDE_SLASH] = ACTIONS(167), - [anon_sym_CARET_SLASH] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_lazy] = ACTIONS(169), - [anon_sym_as] = ACTIONS(169), - [anon_sym_is] = ACTIONS(169), - [anon_sym_BANGis] = ACTIONS(167), - [anon_sym_match] = ACTIONS(169), - [sym_number_literal] = ACTIONS(167), - [sym_string_literal] = ACTIONS(167), - [anon_sym_true] = ACTIONS(169), - [anon_sym_false] = ACTIONS(169), - [sym_null_literal] = ACTIONS(169), - [sym_underscore] = ACTIONS(169), + [sym__type_hint] = STATE(153), + [sym_type_instantiatedTs] = STATE(153), + [sym_tensor_type] = STATE(153), + [sym_tuple_type] = STATE(153), + [sym_parenthesized_type] = STATE(153), + [sym_fun_callable_type] = STATE(153), + [sym_nullable_type] = STATE(153), + [sym_union_type] = STATE(153), + [sym_identifier] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_RBRACE] = ACTIONS(172), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_else] = ACTIONS(174), + [anon_sym_PLUS_EQ] = ACTIONS(172), + [anon_sym_DASH_EQ] = ACTIONS(172), + [anon_sym_STAR_EQ] = ACTIONS(172), + [anon_sym_SLASH_EQ] = ACTIONS(172), + [anon_sym_PERCENT_EQ] = ACTIONS(172), + [anon_sym_LT_LT_EQ] = ACTIONS(172), + [anon_sym_GT_GT_EQ] = ACTIONS(172), + [anon_sym_AMP_EQ] = ACTIONS(172), + [anon_sym_PIPE_EQ] = ACTIONS(172), + [anon_sym_CARET_EQ] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [anon_sym_AMP] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_EQ_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_LT_EQ_GT] = ACTIONS(172), + [anon_sym_LT_LT] = ACTIONS(174), + [anon_sym_GT_GT] = ACTIONS(174), + [anon_sym_TILDE_GT_GT] = ACTIONS(172), + [anon_sym_CARET_GT_GT] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(174), + [anon_sym_TILDE_SLASH] = ACTIONS(172), + [anon_sym_CARET_SLASH] = ACTIONS(172), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_lazy] = ACTIONS(174), + [anon_sym_as] = ACTIONS(174), + [anon_sym_is] = ACTIONS(174), + [anon_sym_BANGis] = ACTIONS(172), + [anon_sym_match] = ACTIONS(174), + [sym_number_literal] = ACTIONS(172), + [sym_string_literal] = ACTIONS(172), + [anon_sym_true] = ACTIONS(174), + [anon_sym_false] = ACTIONS(174), + [sym_null_literal] = ACTIONS(532), + [sym_underscore] = ACTIONS(174), [sym_comment] = ACTIONS(3), }, [STATE(79)] = { + [sym__type_hint] = STATE(153), + [sym_type_instantiatedTs] = STATE(153), + [sym_tensor_type] = STATE(153), + [sym_tuple_type] = STATE(153), + [sym_parenthesized_type] = STATE(153), + [sym_fun_callable_type] = STATE(153), + [sym_nullable_type] = STATE(153), + [sym_union_type] = STATE(153), + [sym_identifier] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_else] = ACTIONS(189), + [anon_sym_PLUS_EQ] = ACTIONS(187), + [anon_sym_DASH_EQ] = ACTIONS(187), + [anon_sym_STAR_EQ] = ACTIONS(187), + [anon_sym_SLASH_EQ] = ACTIONS(187), + [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_LT_LT_EQ] = ACTIONS(187), + [anon_sym_GT_GT_EQ] = ACTIONS(187), + [anon_sym_AMP_EQ] = ACTIONS(187), + [anon_sym_PIPE_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_LT_EQ_GT] = ACTIONS(187), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_TILDE_GT_GT] = ACTIONS(187), + [anon_sym_CARET_GT_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(189), + [anon_sym_PERCENT] = ACTIONS(189), + [anon_sym_TILDE_SLASH] = ACTIONS(187), + [anon_sym_CARET_SLASH] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(189), + [anon_sym_lazy] = ACTIONS(189), + [anon_sym_as] = ACTIONS(189), + [anon_sym_is] = ACTIONS(189), + [anon_sym_BANGis] = ACTIONS(187), + [anon_sym_match] = ACTIONS(189), + [sym_number_literal] = ACTIONS(187), + [sym_string_literal] = ACTIONS(187), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [sym_null_literal] = ACTIONS(532), + [sym_underscore] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + }, + [STATE(80)] = { [sym__type_hint] = STATE(208), [sym_type_instantiatedTs] = STATE(208), [sym_tensor_type] = STATE(208), @@ -11588,65 +11658,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fun_callable_type] = STATE(208), [sym_nullable_type] = STATE(208), [sym_union_type] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(167), - [sym_identifier] = ACTIONS(517), - [anon_sym_tolk] = ACTIONS(169), - [anon_sym_import] = ACTIONS(169), - [anon_sym_global] = ACTIONS(169), - [anon_sym_SEMI] = ACTIONS(167), - [anon_sym_const] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(169), - [anon_sym_type] = ACTIONS(169), - [anon_sym_PIPE] = ACTIONS(519), - [anon_sym_struct] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(169), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_get] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(167), - [anon_sym_LT] = ACTIONS(169), - [anon_sym_GT] = ACTIONS(169), - [anon_sym_DASH_GT] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(167), - [anon_sym_PIPE_PIPE] = ACTIONS(167), - [anon_sym_AMP] = ACTIONS(169), - [anon_sym_CARET] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_LT_EQ_GT] = ACTIONS(167), - [anon_sym_LT_LT] = ACTIONS(169), - [anon_sym_GT_GT] = ACTIONS(169), - [anon_sym_TILDE_GT_GT] = ACTIONS(167), - [anon_sym_CARET_GT_GT] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(169), - [anon_sym_STAR] = ACTIONS(169), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(169), - [anon_sym_TILDE_SLASH] = ACTIONS(167), - [anon_sym_CARET_SLASH] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_as] = ACTIONS(169), - [anon_sym_is] = ACTIONS(169), - [anon_sym_BANGis] = ACTIONS(167), + [ts_builtin_sym_end] = ACTIONS(187), + [sym_identifier] = ACTIONS(534), + [anon_sym_tolk] = ACTIONS(189), + [anon_sym_import] = ACTIONS(189), + [anon_sym_global] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_const] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_type] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(189), + [anon_sym_fun] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_get] = ACTIONS(189), + [anon_sym_AT] = ACTIONS(187), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(187), + [anon_sym_DASH_EQ] = ACTIONS(187), + [anon_sym_STAR_EQ] = ACTIONS(187), + [anon_sym_SLASH_EQ] = ACTIONS(187), + [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_LT_LT_EQ] = ACTIONS(187), + [anon_sym_GT_GT_EQ] = ACTIONS(187), + [anon_sym_AMP_EQ] = ACTIONS(187), + [anon_sym_PIPE_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_LT_EQ_GT] = ACTIONS(187), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_TILDE_GT_GT] = ACTIONS(187), + [anon_sym_CARET_GT_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(189), + [anon_sym_PERCENT] = ACTIONS(189), + [anon_sym_TILDE_SLASH] = ACTIONS(187), + [anon_sym_CARET_SLASH] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_as] = ACTIONS(189), + [anon_sym_is] = ACTIONS(189), + [anon_sym_BANGis] = ACTIONS(187), + [sym_null_literal] = ACTIONS(542), [sym_comment] = ACTIONS(3), }, - [STATE(80)] = { + [STATE(81)] = { [sym__type_hint] = STATE(208), [sym_type_instantiatedTs] = STATE(208), [sym_tensor_type] = STATE(208), @@ -11655,62 +11726,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fun_callable_type] = STATE(208), [sym_nullable_type] = STATE(208), [sym_union_type] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(177), - [sym_identifier] = ACTIONS(517), - [anon_sym_tolk] = ACTIONS(179), - [anon_sym_import] = ACTIONS(179), - [anon_sym_global] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(177), - [anon_sym_const] = ACTIONS(179), - [anon_sym_EQ] = ACTIONS(179), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PIPE] = ACTIONS(519), - [anon_sym_struct] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(179), - [anon_sym_fun] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(177), - [anon_sym_get] = ACTIONS(179), - [anon_sym_AT] = ACTIONS(177), - [anon_sym_LT] = ACTIONS(179), - [anon_sym_GT] = ACTIONS(179), - [anon_sym_DASH_GT] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_PLUS_EQ] = ACTIONS(177), - [anon_sym_DASH_EQ] = ACTIONS(177), - [anon_sym_STAR_EQ] = ACTIONS(177), - [anon_sym_SLASH_EQ] = ACTIONS(177), - [anon_sym_PERCENT_EQ] = ACTIONS(177), - [anon_sym_LT_LT_EQ] = ACTIONS(177), - [anon_sym_GT_GT_EQ] = ACTIONS(177), - [anon_sym_AMP_EQ] = ACTIONS(177), - [anon_sym_PIPE_EQ] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(181), - [anon_sym_AMP_AMP] = ACTIONS(177), - [anon_sym_PIPE_PIPE] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(179), - [anon_sym_CARET] = ACTIONS(179), - [anon_sym_EQ_EQ] = ACTIONS(177), - [anon_sym_BANG_EQ] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(179), - [anon_sym_GT_EQ] = ACTIONS(177), - [anon_sym_LT_EQ_GT] = ACTIONS(177), - [anon_sym_LT_LT] = ACTIONS(179), - [anon_sym_GT_GT] = ACTIONS(179), - [anon_sym_TILDE_GT_GT] = ACTIONS(177), - [anon_sym_CARET_GT_GT] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(179), - [anon_sym_PERCENT] = ACTIONS(179), - [anon_sym_TILDE_SLASH] = ACTIONS(177), - [anon_sym_CARET_SLASH] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_as] = ACTIONS(179), - [anon_sym_is] = ACTIONS(179), - [anon_sym_BANGis] = ACTIONS(177), + [ts_builtin_sym_end] = ACTIONS(172), + [sym_identifier] = ACTIONS(534), + [anon_sym_tolk] = ACTIONS(174), + [anon_sym_import] = ACTIONS(174), + [anon_sym_global] = ACTIONS(174), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_const] = ACTIONS(174), + [anon_sym_EQ] = ACTIONS(174), + [anon_sym_type] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(174), + [anon_sym_fun] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_get] = ACTIONS(174), + [anon_sym_AT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(172), + [anon_sym_DASH_EQ] = ACTIONS(172), + [anon_sym_STAR_EQ] = ACTIONS(172), + [anon_sym_SLASH_EQ] = ACTIONS(172), + [anon_sym_PERCENT_EQ] = ACTIONS(172), + [anon_sym_LT_LT_EQ] = ACTIONS(172), + [anon_sym_GT_GT_EQ] = ACTIONS(172), + [anon_sym_AMP_EQ] = ACTIONS(172), + [anon_sym_PIPE_EQ] = ACTIONS(172), + [anon_sym_CARET_EQ] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [anon_sym_AMP] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_EQ_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_LT_EQ_GT] = ACTIONS(172), + [anon_sym_LT_LT] = ACTIONS(174), + [anon_sym_GT_GT] = ACTIONS(174), + [anon_sym_TILDE_GT_GT] = ACTIONS(172), + [anon_sym_CARET_GT_GT] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(174), + [anon_sym_TILDE_SLASH] = ACTIONS(172), + [anon_sym_CARET_SLASH] = ACTIONS(172), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_as] = ACTIONS(174), + [anon_sym_is] = ACTIONS(174), + [anon_sym_BANGis] = ACTIONS(172), + [sym_null_literal] = ACTIONS(542), [sym_comment] = ACTIONS(3), }, }; @@ -11719,19 +11791,19 @@ static const uint16_t ts_small_parse_table[] = { [0] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(190), 1, + ACTIONS(197), 1, anon_sym_PIPE, - ACTIONS(201), 1, + ACTIONS(208), 1, anon_sym_LT, - STATE(531), 1, + STATE(536), 1, sym_instantiationT_list, - ACTIONS(193), 2, + ACTIONS(200), 2, anon_sym_QMARK, anon_sym_EQ_GT, - ACTIONS(204), 2, + ACTIONS(211), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(184), 13, + ACTIONS(191), 13, anon_sym_EQ, anon_sym_GT, anon_sym_AMP, @@ -11745,7 +11817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(188), 42, + ACTIONS(195), 42, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -11791,15 +11863,15 @@ static const uint16_t ts_small_parse_table[] = { [80] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, + ACTIONS(400), 1, anon_sym_PIPE, - ACTIONS(324), 2, + ACTIONS(403), 2, anon_sym_QMARK, anon_sym_EQ_GT, - ACTIONS(327), 2, + ACTIONS(406), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(317), 14, + ACTIONS(191), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -11814,7 +11886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(319), 42, + ACTIONS(195), 42, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -11860,79 +11932,11 @@ static const uint16_t ts_small_parse_table[] = { [155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, - anon_sym_LT, - STATE(90), 1, - sym_instantiationT_list, - ACTIONS(297), 14, - anon_sym_EQ, - anon_sym_PIPE, - 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(204), 45, - 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_enum, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - 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_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, - [228] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(528), 1, + ACTIONS(544), 1, anon_sym_LBRACE, - STATE(113), 1, + STATE(111), 1, sym_match_body, - ACTIONS(349), 15, + ACTIONS(309), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -11948,7 +11952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(351), 44, + ACTIONS(311), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -11993,17 +11997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [301] = 5, + [228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(319), 1, anon_sym_PIPE, - ACTIONS(335), 4, + ACTIONS(321), 4, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_EQ_GT, - ACTIONS(329), 14, + ACTIONS(315), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -12018,7 +12022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(331), 42, + ACTIONS(317), 42, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12061,142 +12065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [374] = 3, + [301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 15, - anon_sym_EQ, + ACTIONS(384), 1, 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(383), 45, - 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_enum, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - 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, + ACTIONS(387), 2, 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, - [442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(377), 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(379), 45, - 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_enum, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + ACTIONS(390), 2, + anon_sym_LBRACE, 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_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, - [510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(355), 15, + ACTIONS(380), 14, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -12210,7 +12091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(327), 45, + ACTIONS(382), 42, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12229,7 +12110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_AT, - anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -12241,7 +12121,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, @@ -12255,14 +12134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - anon_sym_EQ_GT, - [578] = 3, + [376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 15, + ACTIONS(546), 1, + anon_sym_LT, + STATE(98), 1, + sym_instantiationT_list, + ACTIONS(304), 14, anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_CARET, @@ -12275,7 +12156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(335), 45, + ACTIONS(211), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12321,10 +12202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [646] = 3, + [449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(302), 15, + ACTIONS(351), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12340,7 +12221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(304), 45, + ACTIONS(353), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12386,10 +12267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [714] = 3, + [517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 15, + ACTIONS(327), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12405,7 +12286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(359), 45, + ACTIONS(329), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12451,10 +12332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [782] = 3, + [585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 15, + ACTIONS(343), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12470,7 +12351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(363), 45, + ACTIONS(345), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12516,10 +12397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [850] = 3, + [653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(365), 15, + ACTIONS(347), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12535,7 +12416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(367), 45, + ACTIONS(349), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12581,90 +12462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [918] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, - anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, - sym__comparison_lt_gt, - STATE(52), 1, - sym_object_literal_body, - ACTIONS(73), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(530), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(536), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(538), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(899), 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(534), 12, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - STATE(16), 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, - [1016] = 3, + [721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(369), 15, + ACTIONS(335), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12680,7 +12481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(371), 45, + ACTIONS(337), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12726,10 +12527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1084] = 3, + [789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 15, + ACTIONS(331), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12745,7 +12546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(375), 45, + ACTIONS(333), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12791,138 +12592,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1152] = 3, + [857] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 15, - anon_sym_EQ, + ACTIONS(33), 1, 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(483), 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, + ACTIONS(35), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_lazy, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + sym_underscore, + STATE(52), 1, + sym__comparison_lt_gt, + STATE(53), 1, + sym_object_literal_body, + ACTIONS(73), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(549), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_enum, - 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, - [1219] = 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, + ACTIONS(555), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(411), 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_enum, - 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, - [1286] = 3, + anon_sym_TILDE, + STATE(907), 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(553), 12, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + STATE(27), 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, + [957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 15, + ACTIONS(339), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -12938,7 +12692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(463), 44, + ACTIONS(341), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -12957,6 +12711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -12983,10 +12738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1353] = 3, + [1025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 15, + ACTIONS(408), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13002,7 +12757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(415), 44, + ACTIONS(390), 45, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13021,6 +12776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_AT, + anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -13047,84 +12803,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1420] = 27, + [1093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, + ACTIONS(319), 15, anon_sym_EQ, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(550), 1, - anon_sym_COMMA, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(554), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(556), 1, anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(578), 1, + 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(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(562), 2, + ACTIONS(321), 45, + 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_enum, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(568), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(570), 2, + 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, - ACTIONS(572), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(576), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(544), 3, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [1161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(323), 15, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(574), 3, + 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(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(548), 5, - anon_sym_LBRACE, + anon_sym_BANG, + ACTIONS(325), 45, + 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_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(540), 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(558), 10, + anon_sym_enum, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13135,75 +12918,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1535] = 27, + 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, + [1229] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_EQ, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(556), 1, - anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, - anon_sym_LT_EQ, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - ACTIONS(590), 1, - anon_sym_COMMA, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(562), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(568), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(570), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(572), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(576), 2, + ACTIONS(565), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(588), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(586), 9, + ACTIONS(213), 20, + 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_TILDE, anon_sym_lazy, anon_sym_match, @@ -13212,7 +12982,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(558), 10, + ACTIONS(215), 25, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -13223,84 +12997,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1650] = 27, + 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, + sym_number_literal, + sym_string_literal, + [1318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, + ACTIONS(450), 15, anon_sym_EQ, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(554), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(556), 1, anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - ACTIONS(596), 1, - anon_sym_COMMA, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(562), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(572), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(594), 5, - anon_sym_LBRACE, + anon_sym_BANG, + ACTIONS(452), 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_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(592), 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(558), 10, + anon_sym_enum, + 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, @@ -13311,10 +13057,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1765] = 3, + 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, + [1385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 15, + ACTIONS(410), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13330,7 +13091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(435), 44, + ACTIONS(412), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13375,10 +13136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1832] = 3, + [1452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 15, + ACTIONS(454), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13394,7 +13155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(439), 44, + ACTIONS(456), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13439,10 +13200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1899] = 3, + [1519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 15, + ACTIONS(464), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13458,7 +13219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(447), 44, + ACTIONS(466), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13503,10 +13264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [1966] = 3, + [1586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 15, + ACTIONS(468), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13522,7 +13283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(475), 44, + ACTIONS(470), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13567,10 +13328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2033] = 3, + [1653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(405), 15, + ACTIONS(472), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13586,7 +13347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(407), 44, + ACTIONS(474), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13631,10 +13392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2100] = 3, + [1720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 15, + ACTIONS(484), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13650,7 +13411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(467), 44, + ACTIONS(486), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13695,10 +13456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2167] = 3, + [1787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 15, + ACTIONS(442), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13714,7 +13475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(479), 44, + ACTIONS(444), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13759,10 +13520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2234] = 3, + [1854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 15, + ACTIONS(488), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13778,7 +13539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(487), 44, + ACTIONS(490), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13823,10 +13584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2301] = 3, + [1921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 15, + ACTIONS(492), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13842,7 +13603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(397), 44, + ACTIONS(494), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13887,10 +13648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2368] = 3, + [1988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 15, + ACTIONS(496), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13906,7 +13667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(443), 44, + ACTIONS(498), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -13951,10 +13712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2435] = 3, + [2055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 15, + ACTIONS(500), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -13970,7 +13731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(491), 44, + ACTIONS(502), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14015,10 +13776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2502] = 3, + [2122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 15, + ACTIONS(504), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14034,7 +13795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(495), 44, + ACTIONS(506), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14079,10 +13840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2569] = 3, + [2189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 15, + ACTIONS(508), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14098,7 +13859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(499), 44, + ACTIONS(510), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14143,10 +13904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2636] = 3, + [2256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 15, + ACTIONS(512), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14162,7 +13923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(459), 44, + ACTIONS(514), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14207,12 +13968,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2703] = 3, + [2323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 15, - anon_sym_EQ, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(575), 1, anon_sym_PIPE, + ACTIONS(577), 1, + sym_null_literal, + STATE(262), 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(189), 16, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -14226,25 +14005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(503), 44, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_as, + anon_sym_is, + ACTIONS(187), 30, 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_enum, - anon_sym_fun, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, + anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -14267,14 +14036,12 @@ 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, - [2770] = 3, + [2402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 15, + ACTIONS(418), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14290,7 +14057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(419), 44, + ACTIONS(420), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14335,10 +14102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2837] = 3, + [2469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 15, + ACTIONS(430), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14354,7 +14121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(423), 44, + ACTIONS(432), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14399,10 +14166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2904] = 3, + [2536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 15, + ACTIONS(516), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14418,7 +14185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(427), 44, + ACTIONS(518), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14463,45 +14230,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [2971] = 3, + [2603] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 15, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(581), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(587), 1, + anon_sym_COMMA, + ACTIONS(589), 1, anon_sym_LT, + ACTIONS(591), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, anon_sym_LT_EQ, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(605), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(431), 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, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(585), 5, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_enum, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(579), 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(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14512,33 +14318,14 @@ 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, - [3038] = 5, + [2718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, - anon_sym_LT, - STATE(148), 1, - sym_instantiationT_list, - ACTIONS(297), 25, + ACTIONS(422), 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, @@ -14550,25 +14337,26 @@ 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(204), 32, + ACTIONS(424), 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_LBRACE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_enum, + 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, anon_sym_STAR_EQ, @@ -14590,15 +14378,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, - [3109] = 3, + anon_sym_EQ_GT, + [2785] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 15, - anon_sym_EQ, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(575), 1, anon_sym_PIPE, + ACTIONS(577), 1, + sym_null_literal, + ACTIONS(180), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + STATE(262), 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(174), 16, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -14612,25 +14422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(455), 44, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + anon_sym_as, + anon_sym_is, + ACTIONS(172), 28, 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_enum, - anon_sym_fun, anon_sym_DOT, - anon_sym_get, - anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -14642,7 +14441,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, @@ -14653,14 +14451,12 @@ 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, - [3176] = 3, + [2866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 15, + ACTIONS(446), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -14676,7 +14472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(471), 44, + ACTIONS(448), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -14721,160 +14517,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [3243] = 26, + [2933] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_EQ, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(556), 1, - anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, - anon_sym_LT_EQ, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(562), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(568), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(570), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(572), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(264), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, - sym_string_literal, - ACTIONS(262), 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(558), 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, - [3356] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(542), 1, + ACTIONS(581), 1, anon_sym_EQ, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(554), 1, + ACTIONS(589), 1, anon_sym_LT, - ACTIONS(556), 1, + ACTIONS(591), 1, anon_sym_GT, - ACTIONS(560), 1, + ACTIONS(595), 1, anon_sym_QMARK, - ACTIONS(566), 1, + ACTIONS(601), 1, anon_sym_LT_EQ, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(562), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(568), 2, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(252), 6, + ACTIONS(298), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, sym_number_literal, sym_string_literal, - ACTIONS(250), 9, + ACTIONS(296), 9, anon_sym_else, anon_sym_TILDE, anon_sym_lazy, @@ -14884,7 +14593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(558), 10, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14895,73 +14604,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3469] = 26, + [3046] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_EQ, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(556), 1, - anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, - anon_sym_LT_EQ, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + ACTIONS(581), 1, + anon_sym_EQ, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, + anon_sym_LT_EQ, + ACTIONS(613), 1, + anon_sym_COMMA, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(562), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(568), 2, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(295), 6, + ACTIONS(611), 5, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, sym_number_literal, sym_string_literal, - ACTIONS(293), 9, + ACTIONS(609), 9, anon_sym_else, anon_sym_TILDE, anon_sym_lazy, @@ -14971,7 +14681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(558), 10, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -14982,73 +14692,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3582] = 21, + [3161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(556), 1, + ACTIONS(476), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(566), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - ACTIONS(601), 1, - anon_sym_LT, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(572), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(574), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(274), 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(276), 19, - anon_sym_LBRACE, + anon_sym_BANG, + ACTIONS(478), 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_LBRACK, + anon_sym_enum, + 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, @@ -15062,75 +14744,86 @@ 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, - [3685] = 26, + 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, + [3228] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_EQ, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(556), 1, - anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, - anon_sym_LT_EQ, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + ACTIONS(581), 1, + anon_sym_EQ, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, + anon_sym_LT_EQ, + ACTIONS(619), 1, + anon_sym_COMMA, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(562), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(568), 2, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(283), 6, + ACTIONS(617), 5, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, sym_number_literal, sym_string_literal, - ACTIONS(281), 9, + ACTIONS(615), 9, anon_sym_else, anon_sym_TILDE, anon_sym_lazy, @@ -15140,7 +14833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(558), 10, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15151,74 +14844,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3798] = 22, + [3343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(556), 1, + ACTIONS(480), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(566), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - ACTIONS(601), 1, - anon_sym_LT, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(572), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(274), 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(276), 19, - anon_sym_LBRACE, + anon_sym_BANG, + ACTIONS(482), 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_LBRACK, + anon_sym_enum, + 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, @@ -15232,54 +14896,86 @@ 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, - [3903] = 17, + 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, + [3410] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + ACTIONS(581), 1, + anon_sym_EQ, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, + anon_sym_LT_EQ, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(568), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(274), 16, - anon_sym_EQ, + ACTIONS(583), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_else, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(278), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(276), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, anon_sym_match, @@ -15288,11 +14984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(276), 23, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15303,70 +14995,45 @@ 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, - sym_number_literal, - sym_string_literal, - [3998] = 15, + [3523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(572), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(574), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 18, + ACTIONS(426), 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(276), 25, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(428), 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_LBRACK, + anon_sym_enum, + 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, @@ -15386,42 +15053,20 @@ 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, - [4089] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, anon_sym_as, - ACTIONS(582), 1, anon_sym_is, - ACTIONS(584), 1, anon_sym_BANGis, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(574), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 20, + anon_sym_EQ_GT, + [3590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 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, @@ -15429,19 +15074,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(276), 25, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(436), 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_LBRACK, + anon_sym_enum, + 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, @@ -15461,45 +15117,80 @@ 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, - [4178] = 12, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_as, + anon_sym_is, + anon_sym_BANGis, + anon_sym_EQ_GT, + [3657] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(363), 1, - sym__brackets_lt_gt, - ACTIONS(274), 23, + ACTIONS(581), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(589), 1, anon_sym_LT, + ACTIONS(591), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, anon_sym_LT_EQ, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(605), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(231), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(229), 9, + anon_sym_else, anon_sym_TILDE, anon_sym_lazy, anon_sym_match, @@ -15508,11 +15199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(276), 27, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15523,65 +15210,60 @@ 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, - sym_number_literal, - sym_string_literal, - [4263] = 17, + [3770] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(601), 1, + anon_sym_LT_EQ, + ACTIONS(621), 1, + anon_sym_LT, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(568), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(285), 16, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(213), 13, 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, @@ -15590,7 +15272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(287), 23, + ACTIONS(215), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -15608,79 +15290,75 @@ 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, sym_number_literal, sym_string_literal, - [4358] = 26, + [3873] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_EQ, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(556), 1, - anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, - anon_sym_LT_EQ, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + ACTIONS(581), 1, + anon_sym_EQ, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, + anon_sym_LT_EQ, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(562), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(568), 2, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(291), 6, + ACTIONS(274), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, sym_number_literal, sym_string_literal, - ACTIONS(289), 9, + ACTIONS(272), 9, anon_sym_else, anon_sym_TILDE, anon_sym_lazy, @@ -15690,7 +15368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(558), 10, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15701,48 +15379,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4471] = 9, + [3986] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - STATE(166), 1, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(601), 1, + anon_sym_LT_EQ, + ACTIONS(621), 1, + anon_sym_LT, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(266), 25, - 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, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(605), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(213), 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(268), 28, + ACTIONS(215), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -15760,85 +15460,128 @@ 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, sym_number_literal, sym_string_literal, - [4550] = 26, + [4091] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_EQ, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(556), 1, - anon_sym_GT, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(566), 1, - anon_sym_LT_EQ, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(363), 1, + STATE(368), 1, sym__brackets_lt_gt, - ACTIONS(562), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(568), 2, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(570), 2, + ACTIONS(605), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(572), 2, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(576), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(544), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(574), 3, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(564), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(272), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - sym_number_literal, + ACTIONS(213), 16, + 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(215), 23, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + 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, + sym_number_literal, sym_string_literal, - ACTIONS(270), 9, + [4186] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(213), 18, + 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, @@ -15847,7 +15590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(558), 10, + ACTIONS(215), 25, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -15858,10 +15605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4663] = 3, + 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, + sym_number_literal, + sym_string_literal, + [4277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 15, + ACTIONS(520), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15877,7 +15635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(451), 44, + ACTIONS(522), 44, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -15922,10 +15680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [4730] = 3, + [4344] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 26, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(213), 23, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -15941,25 +15717,18 @@ 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(383), 32, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(215), 27, 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, @@ -15982,17 +15751,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, sym_number_literal, sym_string_literal, - [4796] = 5, + [4429] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(604), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_match_body, - ACTIONS(349), 26, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(605), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(280), 16, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16001,30 +15799,18 @@ 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(351), 30, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(282), 23, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -16043,29 +15829,114 @@ 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, - [4866] = 8, + [4524] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_PIPE, - ACTIONS(201), 1, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(581), 1, + anon_sym_EQ, + ACTIONS(589), 1, anon_sym_LT, - ACTIONS(204), 1, - anon_sym_DASH_GT, - STATE(531), 1, + ACTIONS(591), 1, + anon_sym_GT, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, + anon_sym_LT_EQ, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, sym_instantiationT_list, - ACTIONS(193), 2, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(605), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(290), 6, anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(184), 24, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(288), 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(593), 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, + [4637] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(261), 25, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_else, anon_sym_AMP, @@ -16078,7 +15949,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, @@ -16089,11 +15959,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(188), 28, - anon_sym_LPAREN, + ACTIONS(263), 28, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -16105,6 +15974,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, @@ -16118,48 +15988,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [4942] = 5, + [4716] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, - anon_sym_PIPE, - ACTIONS(335), 3, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_QMARK, - ACTIONS(329), 25, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(581), 1, anon_sym_EQ, + ACTIONS(589), 1, anon_sym_LT, + ACTIONS(591), 1, anon_sym_GT, - anon_sym_else, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(595), 1, + anon_sym_QMARK, + ACTIONS(601), 1, anon_sym_LT_EQ, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(368), 1, + sym__brackets_lt_gt, + ACTIONS(565), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(597), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(605), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(583), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(599), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(267), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(265), 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(331), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(593), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16170,44 +16075,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_number_literal, - sym_string_literal, - [5012] = 9, + [4829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_identifier, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(606), 1, - anon_sym_PIPE, - ACTIONS(181), 2, - anon_sym_DASH_GT, - anon_sym_QMARK, - STATE(260), 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(179), 16, + ACTIONS(438), 15, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -16221,14 +16094,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, - anon_sym_is, - ACTIONS(177), 28, + ACTIONS(440), 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_enum, + anon_sym_fun, anon_sym_DOT, + anon_sym_get, + anon_sym_AT, anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -16240,6 +16124,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, @@ -16250,15 +16135,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, - [5090] = 3, + [4896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(355), 26, + ACTIONS(624), 1, + anon_sym_LT, + STATE(149), 1, + sym_instantiationT_list, + ACTIONS(304), 25, anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_else, anon_sym_AMP, @@ -16282,7 +16172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(327), 32, + ACTIONS(211), 32, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -16315,12 +16205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5156] = 3, + [4967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 26, - anon_sym_EQ, + ACTIONS(627), 1, anon_sym_PIPE, + ACTIONS(629), 1, + anon_sym_DASH_GT, + ACTIONS(631), 1, + anon_sym_QMARK, + ACTIONS(396), 25, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -16345,14 +16240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(335), 32, + ACTIONS(398), 30, 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, @@ -16364,7 +16258,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, @@ -16378,12 +16271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5222] = 3, + [5039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(302), 26, - anon_sym_EQ, + ACTIONS(627), 1, anon_sym_PIPE, + ACTIONS(629), 1, + anon_sym_DASH_GT, + ACTIONS(631), 1, + anon_sym_QMARK, + ACTIONS(392), 25, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -16408,14 +16306,13 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(304), 32, + ACTIONS(394), 30, 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, @@ -16427,7 +16324,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, @@ -16441,10 +16337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5288] = 3, + [5111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 26, + ACTIONS(408), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16471,7 +16367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(359), 32, + ACTIONS(390), 32, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -16504,10 +16400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5354] = 3, + [5177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 26, + ACTIONS(319), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16534,7 +16430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(363), 32, + ACTIONS(321), 32, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -16567,10 +16463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5420] = 3, + [5243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(365), 26, + ACTIONS(323), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16597,7 +16493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(367), 32, + ACTIONS(325), 32, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -16630,82 +16526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5486] = 5, + [5309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - anon_sym_PIPE, - ACTIONS(610), 1, - anon_sym_QMARK, - ACTIONS(385), 25, + ACTIONS(327), 26, anon_sym_EQ, - 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(387), 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, - 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, - sym_number_literal, - sym_string_literal, - [5556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(610), 1, - anon_sym_QMARK, - ACTIONS(612), 1, anon_sym_PIPE, - ACTIONS(614), 1, - anon_sym_DASH_GT, - ACTIONS(391), 25, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -16730,79 +16556,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(393), 30, + ACTIONS(329), 32, 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, - 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, - sym_number_literal, - sym_string_literal, - [5628] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(312), 1, anon_sym_DASH_GT, - ACTIONS(610), 1, - anon_sym_QMARK, - ACTIONS(616), 1, - anon_sym_PIPE, - ACTIONS(306), 25, - anon_sym_EQ, - 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(308), 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, @@ -16814,6 +16575,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, @@ -16827,10 +16589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5700] = 3, + [5375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(369), 26, + ACTIONS(331), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16857,7 +16619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(371), 32, + ACTIONS(333), 32, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -16890,10 +16652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5766] = 3, + [5441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 26, + ACTIONS(335), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -16920,7 +16682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(375), 32, + ACTIONS(337), 32, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -16953,12 +16715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5832] = 3, + [5507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 26, - anon_sym_EQ, + ACTIONS(631), 1, + anon_sym_QMARK, + ACTIONS(633), 1, anon_sym_PIPE, + ACTIONS(355), 25, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -16983,7 +16748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(379), 32, + ACTIONS(357), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17002,7 +16767,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, @@ -17016,84 +16780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [5898] = 8, + [5577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_identifier, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(606), 1, + ACTIONS(627), 1, anon_sym_PIPE, - STATE(260), 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(169), 16, - 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(167), 30, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(629), 1, 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_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, - [5974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(610), 1, + ACTIONS(631), 1, anon_sym_QMARK, - ACTIONS(612), 1, - anon_sym_PIPE, - ACTIONS(614), 1, - anon_sym_DASH_GT, - ACTIONS(337), 25, + ACTIONS(363), 25, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -17119,7 +16815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(339), 30, + ACTIONS(365), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17150,16 +16846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6046] = 6, + [5649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(377), 1, + anon_sym_DASH_GT, + ACTIONS(631), 1, anon_sym_QMARK, - ACTIONS(612), 1, + ACTIONS(635), 1, anon_sym_PIPE, - ACTIONS(614), 1, - anon_sym_DASH_GT, - ACTIONS(345), 25, + ACTIONS(371), 25, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -17185,7 +16881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(347), 30, + ACTIONS(373), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17216,10 +16912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6118] = 3, + [5721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 26, + ACTIONS(339), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17246,13 +16942,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(495), 31, + ACTIONS(341), 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, @@ -17278,10 +16975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6183] = 3, + [5787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 26, + ACTIONS(343), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17308,13 +17005,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(435), 31, + ACTIONS(345), 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, @@ -17340,10 +17038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6248] = 3, + [5853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 26, + ACTIONS(347), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17370,13 +17068,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(463), 31, + ACTIONS(349), 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, @@ -17402,74 +17101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6313] = 3, + [5919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 26, - anon_sym_EQ, + ACTIONS(319), 1, 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(439), 31, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(321), 3, 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, - 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_DASH_GT, 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, - [6378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 26, + ACTIONS(315), 25, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -17494,10 +17136,9 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(471), 31, + ACTIONS(317), 29, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, @@ -17512,7 +17153,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, @@ -17526,10 +17166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6443] = 3, + [5989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 26, + ACTIONS(351), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17556,13 +17196,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(475), 31, + 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, @@ -17588,18 +17229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6508] = 6, + [6055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_PIPE, - ACTIONS(327), 1, - anon_sym_DASH_GT, - ACTIONS(324), 2, + ACTIONS(637), 1, anon_sym_LBRACE, - anon_sym_QMARK, - ACTIONS(317), 25, + STATE(183), 1, + sym_match_body, + ACTIONS(309), 26, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_else, @@ -17624,7 +17263,8 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(319), 28, + ACTIONS(311), 30, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -17640,6 +17280,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, @@ -17653,13 +17294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6579] = 3, + [6125] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 26, - anon_sym_EQ, + ACTIONS(197), 1, anon_sym_PIPE, + ACTIONS(208), 1, anon_sym_LT, + ACTIONS(211), 1, + anon_sym_DASH_GT, + STATE(536), 1, + sym_instantiationT_list, + ACTIONS(200), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(191), 24, + anon_sym_EQ, anon_sym_GT, anon_sym_else, anon_sym_AMP, @@ -17683,10 +17333,8 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(447), 31, - anon_sym_SEMI, + ACTIONS(195), 28, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT, @@ -17701,7 +17349,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, @@ -17715,10 +17362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6644] = 3, + [6201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 26, + ACTIONS(442), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17745,7 +17392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(479), 31, + ACTIONS(444), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17777,10 +17424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6709] = 3, + [6266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 26, + ACTIONS(418), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17807,7 +17454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(483), 31, + ACTIONS(420), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17839,10 +17486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6774] = 3, + [6331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 26, + ACTIONS(422), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17869,7 +17516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(443), 31, + ACTIONS(424), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17901,10 +17548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6839] = 3, + [6396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 26, + ACTIONS(426), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17931,7 +17578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(467), 31, + ACTIONS(428), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -17963,10 +17610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6904] = 3, + [6461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 26, + ACTIONS(430), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -17993,7 +17640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(411), 31, + ACTIONS(432), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18025,10 +17672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [6969] = 3, + [6526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 26, + ACTIONS(434), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18055,7 +17702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(415), 31, + ACTIONS(436), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18087,10 +17734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7034] = 3, + [6591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 26, + ACTIONS(438), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18117,7 +17764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(487), 31, + ACTIONS(440), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18149,10 +17796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7099] = 3, + [6656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 26, + ACTIONS(446), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18179,7 +17826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(491), 31, + ACTIONS(448), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18211,10 +17858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7164] = 3, + [6721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 26, + ACTIONS(450), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18241,7 +17888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(431), 31, + ACTIONS(452), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18273,10 +17920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7229] = 3, + [6786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 26, + ACTIONS(454), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18303,7 +17950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(499), 31, + ACTIONS(456), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18335,10 +17982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7294] = 3, + [6851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 26, + ACTIONS(464), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18365,7 +18012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(503), 31, + ACTIONS(466), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18397,10 +18044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7359] = 3, + [6916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(449), 26, + ACTIONS(468), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18427,7 +18074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(451), 31, + ACTIONS(470), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18459,10 +18106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7424] = 3, + [6981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 26, + ACTIONS(472), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18489,7 +18136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(455), 31, + ACTIONS(474), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18521,10 +18168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7489] = 3, + [7046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(405), 26, + ACTIONS(476), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18551,7 +18198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(407), 31, + ACTIONS(478), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18583,10 +18230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7554] = 3, + [7111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 26, + ACTIONS(480), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18613,7 +18260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(419), 31, + ACTIONS(482), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18645,10 +18292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7619] = 3, + [7176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 26, + ACTIONS(410), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18675,7 +18322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(423), 31, + ACTIONS(412), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18707,10 +18354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7684] = 3, + [7241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 26, + ACTIONS(484), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18737,7 +18384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(427), 31, + ACTIONS(486), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18769,10 +18416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7749] = 3, + [7306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 26, + ACTIONS(488), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18799,7 +18446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(397), 31, + ACTIONS(490), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18831,10 +18478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7814] = 3, + [7371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 26, + ACTIONS(492), 26, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -18861,7 +18508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(459), 31, + ACTIONS(494), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -18893,72 +18540,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, sym_number_literal, sym_string_literal, - [7879] = 21, + [7436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(496), 26, anon_sym_EQ, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(624), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(627), 1, anon_sym_GT, - ACTIONS(631), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(645), 1, - anon_sym_as, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(635), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(637), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(618), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(629), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(276), 25, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + 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(498), 31, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, + 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, @@ -18972,67 +18591,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [7979] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(627), 1, - anon_sym_GT, - ACTIONS(631), 1, - anon_sym_LT_EQ, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(645), 1, - anon_sym_as, - ACTIONS(651), 1, - anon_sym_SEMI, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, - anon_sym_QMARK, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(635), 2, + 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, - ACTIONS(637), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(641), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + sym_number_literal, + sym_string_literal, + [7501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 26, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + 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(629), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(657), 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(502), 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, @@ -19043,142 +18650,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(649), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [8087] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(627), 1, - anon_sym_GT, - ACTIONS(631), 1, - anon_sym_LT_EQ, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(645), 1, - anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, anon_sym_QMARK, - ACTIONS(665), 1, - anon_sym_SEMI, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(635), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(637), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(641), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(661), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(618), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(639), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(629), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(657), 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(663), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [8195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(402), 7, - anon_sym_LPAREN, - 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(399), 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(405), 13, + [7566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(504), 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, - ACTIONS(407), 23, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(506), 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, @@ -19201,67 +18724,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - [8263] = 25, + sym_number_literal, + sym_string_literal, + [7631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(627), 1, + ACTIONS(508), 26, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(631), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(643), 1, + 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(645), 1, + anon_sym_TILDE, + anon_sym_lazy, anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, - anon_sym_QMARK, - ACTIONS(669), 1, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(510), 31, anon_sym_SEMI, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(635), 2, + 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, + 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, - ACTIONS(637), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(641), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + sym_number_literal, + sym_string_literal, + [7696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(512), 26, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + 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(629), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(657), 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(514), 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, @@ -19272,79 +18836,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(667), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [8371] = 25, + 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, + [7761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(627), 1, + ACTIONS(516), 26, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(631), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(643), 1, + 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(645), 1, + anon_sym_TILDE, + anon_sym_lazy, anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, - anon_sym_QMARK, - ACTIONS(673), 1, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(518), 31, anon_sym_SEMI, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(635), 2, + 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, + 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, - ACTIONS(637), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(641), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + sym_number_literal, + sym_string_literal, + [7826] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(400), 1, anon_sym_PIPE, + ACTIONS(406), 1, + anon_sym_DASH_GT, + ACTIONS(403), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(191), 25, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + 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(629), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(657), 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(195), 28, + 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, @@ -19355,77 +18964,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(671), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [8479] = 24, + 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, + [7897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(627), 1, + ACTIONS(520), 26, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - ACTIONS(631), 1, + anon_sym_else, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(643), 1, + 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(645), 1, + anon_sym_TILDE, + anon_sym_lazy, anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, + anon_sym_is, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(522), 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, + 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, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(635), 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, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(637), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(641), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + sym_number_literal, + sym_string_literal, + [7962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(384), 1, anon_sym_PIPE, + ACTIONS(390), 1, + anon_sym_DASH_GT, + ACTIONS(387), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(380), 25, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_else, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + 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(629), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(657), 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(382), 28, + 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, @@ -19436,72 +19091,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(295), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [8585] = 20, + 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, + [8033] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(624), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(627), 1, + ACTIONS(649), 1, anon_sym_GT, - ACTIONS(631), 1, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, anon_sym_LT_EQ, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(633), 2, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(637), 2, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(639), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 4, - anon_sym_EQ, + ACTIONS(641), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(629), 4, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(657), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(276), 25, + ACTIONS(651), 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(231), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19514,78 +19186,65 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8683] = 24, + [8139] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(627), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, anon_sym_GT, - ACTIONS(631), 1, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, anon_sym_LT_EQ, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, - anon_sym_QMARK, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(633), 2, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(637), 2, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + ACTIONS(641), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + ACTIONS(667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(629), 4, + ACTIONS(657), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(657), 10, + ACTIONS(651), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -19596,7 +19255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(283), 12, + ACTIONS(267), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19609,22 +19268,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [8789] = 9, + [8245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(266), 14, + ACTIONS(261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -19639,7 +19298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(268), 36, + ACTIONS(263), 36, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -19676,73 +19335,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [8865] = 16, + [8321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(461), 7, anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(645), 1, - anon_sym_as, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(407), 1, - sym__brackets_lt_gt, - ACTIONS(633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(635), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(637), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(641), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(647), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(639), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + sym_number_literal, + sym_string_literal, + ACTIONS(426), 13, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(276), 29, - 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_enum, - 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_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_as, + anon_sym_is, + ACTIONS(458), 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(428), 23, + 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -19750,52 +19393,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [8955] = 14, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + anon_sym_BANGis, + [8389] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, + anon_sym_GT, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, + anon_sym_LT_EQ, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - STATE(107), 1, + ACTIONS(679), 1, + anon_sym_SEMI, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(637), 2, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(639), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 9, - anon_sym_EQ, + ACTIONS(641), 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, - ACTIONS(276), 31, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(651), 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(677), 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, @@ -19803,70 +19481,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - [9041] = 13, + [8497] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, + anon_sym_GT, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, + anon_sym_LT_EQ, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - STATE(107), 1, + ACTIONS(683), 1, + anon_sym_SEMI, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(641), 2, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(639), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 11, - anon_sym_EQ, + ACTIONS(641), 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(276), 31, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(651), 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(681), 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, @@ -19874,66 +19564,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - [9125] = 11, + [8605] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, + anon_sym_GT, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, + anon_sym_LT_EQ, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - STATE(107), 1, + ACTIONS(687), 1, + anon_sym_SEMI, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(647), 2, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(669), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(274), 14, - anon_sym_EQ, + ACTIONS(641), 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(667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(276), 33, + ACTIONS(657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(651), 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(685), 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, @@ -19941,6 +19647,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, + [8713] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, + anon_sym_GT, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, + anon_sym_LT_EQ, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, + anon_sym_as, + ACTIONS(691), 1, + anon_sym_SEMI, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(669), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(675), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(641), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(651), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -19951,62 +19718,71 @@ 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, - [9205] = 16, + ACTIONS(689), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [8821] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(649), 1, + anon_sym_GT, + ACTIONS(659), 1, + anon_sym_LT_EQ, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - STATE(107), 1, + ACTIONS(693), 1, + anon_sym_LT, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(633), 2, + ACTIONS(661), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(637), 2, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(639), 3, + ACTIONS(667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(285), 7, + ACTIONS(213), 4, anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - ACTIONS(287), 29, + ACTIONS(657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(215), 25, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20032,69 +19808,65 @@ 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, - [9295] = 24, + [8919] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(627), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, anon_sym_GT, - ACTIONS(631), 1, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, anon_sym_LT_EQ, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(659), 1, - anon_sym_QMARK, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(633), 2, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(637), 2, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + ACTIONS(641), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + ACTIONS(667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(629), 4, + ACTIONS(657), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(657), 10, + ACTIONS(651), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -20105,7 +19877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(291), 12, + ACTIONS(274), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20118,76 +19890,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [9401] = 24, + [9025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(213), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(627), 1, + ACTIONS(649), 1, anon_sym_GT, - ACTIONS(631), 1, + ACTIONS(659), 1, anon_sym_LT_EQ, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(645), 1, + ACTIONS(673), 1, anon_sym_as, - ACTIONS(653), 1, - anon_sym_EQ, - ACTIONS(655), 1, + ACTIONS(693), 1, anon_sym_LT, - ACTIONS(659), 1, - anon_sym_QMARK, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(407), 1, + STATE(412), 1, sym__brackets_lt_gt, - ACTIONS(633), 2, + ACTIONS(661), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(637), 2, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(641), 2, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(647), 2, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(661), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(618), 3, + ACTIONS(641), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(639), 3, + ACTIONS(667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(629), 4, + ACTIONS(657), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(657), 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(272), 12, + ACTIONS(215), 25, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20200,31 +19956,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [9507] = 6, + 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, + [9125] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_PIPE, - ACTIONS(677), 1, - anon_sym_DASH_GT, - ACTIONS(679), 1, - anon_sym_QMARK, - ACTIONS(391), 14, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(661), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(669), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(675), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(393), 37, + ACTIONS(213), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + ACTIONS(215), 29, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20233,10 +20022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_enum, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -20249,30 +20036,46 @@ 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, + [9215] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - [9575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(312), 1, - anon_sym_DASH_GT, - ACTIONS(679), 1, - anon_sym_QMARK, - ACTIONS(681), 1, - anon_sym_PIPE, - ACTIONS(306), 14, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(213), 9, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -20280,13 +20083,7 @@ 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, - ACTIONS(308), 37, + ACTIONS(215), 31, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20295,10 +20092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_enum, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -20311,6 +20106,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, @@ -20319,22 +20115,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, + [9301] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(669), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - anon_sym_as, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - [9643] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(675), 1, - anon_sym_PIPE, - ACTIONS(677), 1, - anon_sym_DASH_GT, - ACTIONS(679), 1, - anon_sym_QMARK, - ACTIONS(337), 14, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(213), 11, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -20344,11 +20154,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(339), 37, + ACTIONS(215), 31, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20357,10 +20163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_enum, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_AT, anon_sym_PLUS_EQ, @@ -20373,6 +20177,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, @@ -20381,20 +20186,29 @@ 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, + [9385] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(675), 2, anon_sym_is, anon_sym_BANGis, - [9711] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_QMARK, - ACTIONS(683), 1, - anon_sym_PIPE, - ACTIONS(385), 14, + ACTIONS(213), 14, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -20407,8 +20221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(387), 38, + ACTIONS(215), 33, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20417,13 +20230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_enum, anon_sym_fun, - 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, @@ -20434,6 +20244,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, @@ -20444,19 +20255,419 @@ 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, + [9465] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(661), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(669), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(675), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(280), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + ACTIONS(282), 29, + 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_enum, + 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, + [9555] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(649), 1, + anon_sym_GT, + ACTIONS(653), 1, + anon_sym_QMARK, + ACTIONS(659), 1, + anon_sym_LT_EQ, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(673), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(412), 1, + sym__brackets_lt_gt, + ACTIONS(655), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(661), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(663), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(669), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(675), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(641), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(651), 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(290), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [9661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 1, + anon_sym_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(355), 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(357), 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_LPAREN, + anon_sym_enum, + anon_sym_fun, + 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, + 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, + [9727] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(377), 1, + anon_sym_DASH_GT, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_PIPE, + ACTIONS(371), 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(373), 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_enum, + 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, + 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, - [9777] = 6, + [9795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(677), 1, + ACTIONS(704), 1, anon_sym_DASH_GT, - ACTIONS(679), 1, + ACTIONS(363), 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(365), 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_enum, + 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, + 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, + [9863] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(704), 1, + anon_sym_DASH_GT, + ACTIONS(392), 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(394), 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_enum, + 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, + 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, + [9931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(345), 14, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(704), 1, + anon_sym_DASH_GT, + ACTIONS(396), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -20471,7 +20682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(347), 37, + ACTIONS(398), 37, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -20509,52 +20720,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_BANGis, - [9845] = 21, + [9999] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(689), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(714), 1, anon_sym_return, - ACTIONS(695), 1, + ACTIONS(716), 1, anon_sym_throw, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - STATE(173), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(730), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - STATE(575), 1, - sym_block_statement, STATE(577), 1, - sym_return_statement, - STATE(578), 1, sym_throw_statement, - ACTIONS(703), 2, + STATE(583), 1, + sym_block_statement, + STATE(584), 1, + sym_return_statement, + ACTIONS(724), 2, sym_number_literal, sym_string_literal, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(707), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20563,7 +20775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(101), 19, + STATE(126), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20583,52 +20795,53 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [9940] = 21, + [10096] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(689), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(714), 1, anon_sym_return, - ACTIONS(695), 1, + ACTIONS(716), 1, anon_sym_throw, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - STATE(173), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(734), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - STATE(572), 1, + STATE(576), 1, + sym_block_statement, + STATE(578), 1, sym_return_statement, - STATE(573), 1, - sym_throw_statement, STATE(579), 1, - sym_block_statement, - ACTIONS(705), 2, + sym_throw_statement, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(709), 2, + ACTIONS(732), 2, sym_number_literal, sym_string_literal, - ACTIONS(711), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20637,7 +20850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(102), 19, + STATE(119), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20657,52 +20870,53 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10035] = 21, + [10193] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(689), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(714), 1, anon_sym_return, - ACTIONS(695), 1, + ACTIONS(716), 1, anon_sym_throw, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - STATE(173), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(738), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - STATE(571), 1, - sym_throw_statement, - STATE(574), 1, + STATE(580), 1, sym_block_statement, - STATE(576), 1, + STATE(581), 1, sym_return_statement, - ACTIONS(705), 2, + STATE(582), 1, + sym_throw_statement, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(713), 2, + ACTIONS(736), 2, sym_number_literal, sym_string_literal, - ACTIONS(715), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20711,7 +20925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(103), 19, + STATE(124), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20731,49 +20945,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10130] = 19, + [10290] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(723), 1, + ACTIONS(746), 1, anon_sym_RBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(750), 1, anon_sym_else, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - STATE(98), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(764), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(735), 2, + ACTIONS(758), 2, sym_number_literal, sym_string_literal, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(739), 2, - sym_null_literal, - sym_underscore, - STATE(215), 2, + STATE(219), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(882), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20782,7 +20997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(429), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20802,50 +21017,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10220] = 20, + [10382] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(741), 1, - anon_sym_RPAREN, - ACTIONS(743), 1, - anon_sym_COMMA, - ACTIONS(745), 1, - anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(750), 1, + anon_sym_else, + ACTIONS(754), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(764), 1, + sym_underscore, + ACTIONS(766), 1, + anon_sym_RBRACE, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(966), 1, - sym_call_argument, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(751), 2, + ACTIONS(758), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + STATE(219), 2, + sym_match_arm, + aux_sym_match_body_repeat1, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20854,7 +21069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20874,49 +21089,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10312] = 19, + [10474] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(750), 1, anon_sym_else, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(755), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(764), 1, + sym_underscore, + ACTIONS(768), 1, anon_sym_RBRACE, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(735), 2, + ACTIONS(758), 2, sym_number_literal, sym_string_literal, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(739), 2, - sym_null_literal, - sym_underscore, STATE(219), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(882), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20925,7 +21141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(429), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -20945,50 +21161,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10402] = 20, + [10566] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(770), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(773), 1, + anon_sym_PIPE, + ACTIONS(776), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(782), 1, + anon_sym_RBRACE, + ACTIONS(784), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(745), 1, - anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(787), 1, + anon_sym_else, + ACTIONS(793), 1, anon_sym_lazy, - ACTIONS(757), 1, - anon_sym_RPAREN, - ACTIONS(759), 1, - anon_sym_COMMA, - STATE(98), 1, + ACTIONS(796), 1, + anon_sym_match, + ACTIONS(805), 1, + sym_null_literal, + ACTIONS(808), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(942), 1, - sym_call_argument, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(751), 2, + ACTIONS(799), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(802), 2, + anon_sym_true, + anon_sym_false, + STATE(219), 2, + sym_match_arm, + aux_sym_match_body_repeat1, + ACTIONS(790), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -20997,7 +21213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21017,50 +21233,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10494] = 20, + [10658] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(745), 1, - anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(750), 1, + anon_sym_else, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(761), 1, - anon_sym_RPAREN, - ACTIONS(763), 1, - anon_sym_COMMA, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(764), 1, + sym_underscore, + ACTIONS(811), 1, + anon_sym_RBRACE, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1005), 1, - sym_call_argument, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(751), 2, + ACTIONS(758), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + STATE(218), 2, + sym_match_arm, + aux_sym_match_body_repeat1, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21069,7 +21285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21089,49 +21305,51 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10586] = 19, + [10750] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_else, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(765), 1, - anon_sym_RBRACE, - STATE(98), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(813), 1, + anon_sym_RPAREN, + ACTIONS(815), 1, + anon_sym_COMMA, + ACTIONS(817), 1, + anon_sym_mutate, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(825), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(735), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(737), 2, + STATE(1012), 1, + sym_call_argument, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(739), 2, - sym_null_literal, - sym_underscore, - STATE(219), 2, - sym_match_arm, - aux_sym_match_body_repeat1, - ACTIONS(729), 4, + ACTIONS(823), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(882), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21140,7 +21358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(429), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21160,120 +21378,51 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10676] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(767), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_PIPE, - ACTIONS(773), 1, - anon_sym_LPAREN, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - anon_sym_RBRACE, - ACTIONS(781), 1, - anon_sym_LBRACK, - ACTIONS(784), 1, - anon_sym_else, - ACTIONS(790), 1, - anon_sym_lazy, - ACTIONS(793), 1, - anon_sym_match, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(796), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(799), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(802), 2, - sym_null_literal, - sym_underscore, - STATE(219), 2, - sym_match_arm, - aux_sym_match_body_repeat1, - ACTIONS(787), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(882), 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(429), 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, - [10766] = 19, + [10844] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_else, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(805), 1, - anon_sym_RBRACE, - STATE(98), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, + anon_sym_mutate, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(827), 1, + anon_sym_RPAREN, + ACTIONS(829), 1, + anon_sym_COMMA, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(735), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(737), 2, + STATE(972), 1, + sym_call_argument, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(739), 2, - sym_null_literal, - sym_underscore, - STATE(218), 2, - sym_match_arm, - aux_sym_match_body_repeat1, - ACTIONS(729), 4, + ACTIONS(823), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(882), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21282,7 +21431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(429), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21302,49 +21451,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10856] = 19, + [10938] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(750), 1, anon_sym_else, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(807), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(764), 1, + sym_underscore, + ACTIONS(831), 1, anon_sym_RBRACE, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(735), 2, + ACTIONS(758), 2, sym_number_literal, sym_string_literal, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(739), 2, - sym_null_literal, - sym_underscore, - STATE(219), 2, + STATE(216), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(882), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21353,7 +21503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(429), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21373,49 +21523,50 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [10946] = 19, + [11030] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(750), 1, anon_sym_else, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(809), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(764), 1, + sym_underscore, + ACTIONS(833), 1, anon_sym_RBRACE, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(735), 2, + ACTIONS(758), 2, sym_number_literal, sym_string_literal, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(739), 2, - sym_null_literal, - sym_underscore, - STATE(221), 2, + STATE(217), 2, sym_match_arm, aux_sym_match_body_repeat1, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(882), 8, + STATE(893), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21424,7 +21575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(429), 19, + STATE(432), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21444,112 +21595,51 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11036] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(815), 1, - anon_sym_as, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 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(276), 24, - anon_sym_COLON, - 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, - [11113] = 19, + [11122] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(745), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(819), 1, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(835), 1, anon_sym_RPAREN, - STATE(98), 1, + ACTIONS(837), 1, + anon_sym_COMMA, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1022), 1, + STATE(943), 1, sym_call_argument, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(751), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21558,7 +21648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21578,48 +21668,48 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11202] = 19, + [11216] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(745), 1, - anon_sym_mutate, - ACTIONS(749), 1, - anon_sym_lazy, + ACTIONS(762), 1, + sym_null_literal, ACTIONS(821), 1, - anon_sym_RPAREN, - STATE(98), 1, + anon_sym_lazy, + ACTIONS(843), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1022), 1, - sym_call_argument, - ACTIONS(737), 2, + STATE(1052), 1, + sym_local_vars_declaration, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(751), 2, + ACTIONS(839), 2, + anon_sym_var, + anon_sym_val, + ACTIONS(841), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21628,7 +21718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(442), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21648,117 +21738,49 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11291] = 19, + [11305] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(745), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(823), 1, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(845), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1022), 1, + STATE(1014), 1, sym_call_argument, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(751), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(905), 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(368), 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, - [11380] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - STATE(1038), 1, - sym_local_vars_declaration, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(825), 2, - anon_sym_var, - anon_sym_val, - ACTIONS(827), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(829), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -21767,7 +21789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(416), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -21787,71 +21809,71 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11467] = 24, + [11396] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(295), 5, + ACTIONS(290), 5, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -21862,71 +21884,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11566] = 24, + [11495] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(261), 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(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(291), 5, + ACTIONS(263), 29, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(837), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -21937,65 +21930,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11665] = 21, + 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, + [11564] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_EQ, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(624), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(835), 1, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(845), 1, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(847), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(276), 18, + ACTIONS(267), 5, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22006,50 +22019,48 @@ 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, - [11758] = 18, + [11663] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(879), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1061), 1, + STATE(1076), 1, sym_local_vars_declaration, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(825), 2, + ACTIONS(839), 2, anon_sym_var, anon_sym_val, - ACTIONS(853), 2, + ACTIONS(877), 2, sym_number_literal, sym_string_literal, - ACTIONS(855), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22058,7 +22069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(418), 19, + STATE(419), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22078,64 +22089,71 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [11845] = 20, + [11752] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(624), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(835), 1, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(845), 1, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(847), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 4, - anon_sym_EQ, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(276), 18, + ACTIONS(231), 5, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22146,54 +22164,59 @@ 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, - [11936] = 16, + [11851] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(693), 1, + anon_sym_LT, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(869), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(274), 7, + ACTIONS(213), 4, anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_EQ, - ACTIONS(276), 22, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(215), 18, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, @@ -22212,56 +22235,71 @@ 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, - [12019] = 14, + [11942] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 9, - anon_sym_EQ, + ACTIONS(849), 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, - ACTIONS(276), 24, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(274), 5, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22272,219 +22310,128 @@ 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, - [12098] = 19, + [12041] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, + ACTIONS(213), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(745), 1, - anon_sym_mutate, - ACTIONS(749), 1, - anon_sym_lazy, - ACTIONS(857), 1, - anon_sym_RPAREN, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - STATE(1022), 1, - sym_call_argument, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(751), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, anon_sym_BANG, - anon_sym_TILDE, - STATE(905), 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(368), 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, - [12187] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(534), 1, - anon_sym_else, - ACTIONS(685), 1, - sym_identifier, - ACTIONS(687), 1, - anon_sym_LPAREN, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(699), 1, - anon_sym_lazy, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym__comparison_lt_gt, - STATE(174), 1, - sym_object_literal_body, - ACTIONS(530), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(705), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(861), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(863), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(906), 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(126), 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, - [12274] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(693), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(215), 18, + anon_sym_COLON, + 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, - ACTIONS(847), 2, + [12134] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(869), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(213), 7, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(272), 5, + anon_sym_LT_EQ, + ACTIONS(215), 22, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(837), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22495,27 +22442,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12373] = 11, + 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, + [12217] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(274), 14, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(213), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -22525,12 +22489,7 @@ 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, - ACTIONS(276), 26, + ACTIONS(215), 24, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, @@ -22555,45 +22514,34 @@ 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, - [12446] = 16, + [12296] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, + ACTIONS(871), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(869), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(285), 7, + ACTIONS(213), 11, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -22601,7 +22549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(287), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(215), 24, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, @@ -22624,22 +22576,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [12529] = 9, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + [12373] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(266), 14, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -22654,7 +22613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(268), 29, + ACTIONS(215), 26, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, @@ -22681,74 +22640,56 @@ 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, - [12598] = 24, + [12446] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(869), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(280), 7, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(283), 5, + anon_sym_LT_EQ, + ACTIONS(282), 22, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(837), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -22759,48 +22700,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12697] = 19, + 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, + [12529] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(553), 1, + anon_sym_else, + ACTIONS(706), 1, + sym_identifier, + ACTIONS(708), 1, + anon_sym_LPAREN, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(720), 1, + anon_sym_lazy, + ACTIONS(722), 1, + anon_sym_match, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(885), 1, + sym_underscore, + STATE(164), 1, + sym__comparison_lt_gt, + STATE(165), 1, + sym_object_literal_body, + ACTIONS(549), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(726), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(883), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(718), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(912), 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(123), 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, + [12618] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(745), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(865), 1, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(887), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1022), 1, + STATE(1014), 1, sym_call_argument, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(751), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22809,7 +22828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22829,48 +22848,49 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12786] = 19, + [12709] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(745), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, anon_sym_mutate, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(867), 1, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(889), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1022), 1, + STATE(1014), 1, sym_call_argument, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(751), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22879,7 +22899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22899,47 +22919,120 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12875] = 18, + [12800] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, + anon_sym_mutate, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(891), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1048), 1, - sym_local_vars_declaration, - ACTIONS(737), 2, + STATE(1014), 1, + sym_call_argument, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(825), 2, - anon_sym_var, - anon_sym_val, - ACTIONS(869), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(871), 2, + ACTIONS(819), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(388), 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, + [12891] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, sym_null_literal, + ACTIONS(817), 1, + anon_sym_mutate, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(825), 1, sym_underscore, - ACTIONS(747), 4, + ACTIONS(893), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + STATE(1014), 1, + sym_call_argument, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(823), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -22948,7 +23041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(424), 19, + STATE(388), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -22968,46 +23061,119 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [12962] = 18, + [12982] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, + anon_sym_mutate, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(873), 1, + ACTIONS(825), 1, + sym_underscore, + ACTIONS(895), 1, anon_sym_RPAREN, - ACTIONS(875), 1, - anon_sym_COMMA, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + STATE(1014), 1, + sym_call_argument, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(877), 2, + ACTIONS(823), 2, sym_number_literal, sym_string_literal, - ACTIONS(879), 2, + ACTIONS(819), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(388), 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, + [13073] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(899), 1, sym_underscore, - ACTIONS(747), 4, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + STATE(1075), 1, + sym_local_vars_declaration, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(839), 2, + anon_sym_var, + anon_sym_val, + ACTIONS(897), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -23016,7 +23182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(272), 19, + STATE(438), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -23036,40 +23202,72 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [13048] = 8, + [13162] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_PIPE, - ACTIONS(201), 1, + ACTIONS(265), 1, + sym_identifier, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(589), 1, anon_sym_LT, - STATE(531), 1, - sym_instantiationT_list, - ACTIONS(204), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(193), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(184), 13, + ACTIONS(901), 1, anon_sym_EQ, + ACTIONS(905), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(909), 1, + anon_sym_QMARK, + ACTIONS(915), 1, anon_sym_LT_EQ, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(372), 1, + sym__brackets_lt_gt, + ACTIONS(911), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(919), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(267), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(903), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(188), 26, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(913), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -23080,243 +23278,140 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13114] = 9, + [13264] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(578), 1, - anon_sym_BANG, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(266), 17, - anon_sym_EQ, + ACTIONS(33), 1, 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, + ACTIONS(740), 1, sym_identifier, - ACTIONS(268), 25, - anon_sym_SEMI, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(931), 1, + sym_underscore, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(927), 2, 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, - [13182] = 26, + ACTIONS(929), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(359), 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, + [13350] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(270), 1, - sym_identifier, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - ACTIONS(881), 1, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_GT, - ACTIONS(889), 1, + ACTIONS(909), 1, anon_sym_QMARK, - ACTIONS(895), 1, + ACTIONS(915), 1, anon_sym_LT_EQ, - STATE(166), 1, + ACTIONS(933), 1, + sym_identifier, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(891), 2, + ACTIONS(911), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(272), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(883), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, ACTIONS(903), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(887), 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, - [13284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_QMARK, - ACTIONS(907), 1, anon_sym_PIPE, - ACTIONS(909), 1, - anon_sym_DASH_GT, - ACTIONS(337), 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, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(339), 31, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(935), 3, + anon_sym_SEMI, 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, + ACTIONS(913), 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, - anon_sym_as, - anon_sym_is, - anon_sym_BANGis, - anon_sym_EQ_GT, - [13346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_QMARK, - ACTIONS(907), 1, - anon_sym_PIPE, - ACTIONS(909), 1, - anon_sym_DASH_GT, - ACTIONS(345), 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(347), 31, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_RBRACK, + ACTIONS(907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -23327,86 +23422,72 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13408] = 26, + [13452] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(229), 1, sym_identifier, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - ACTIONS(881), 1, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_GT, - ACTIONS(889), 1, + ACTIONS(909), 1, anon_sym_QMARK, - ACTIONS(895), 1, + ACTIONS(915), 1, anon_sym_LT_EQ, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(891), 2, + ACTIONS(911), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(295), 3, + ACTIONS(231), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(883), 3, + ACTIONS(903), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(893), 4, + ACTIONS(913), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(887), 10, + ACTIONS(907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -23417,61 +23498,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13510] = 21, + [13554] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - ACTIONS(601), 1, + ACTIONS(621), 1, anon_sym_LT, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_GT, - ACTIONS(895), 1, + ACTIONS(915), 1, anon_sym_LT_EQ, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(893), 4, + ACTIONS(913), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(274), 5, + ACTIONS(213), 5, anon_sym_EQ, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, sym_identifier, - ACTIONS(276), 16, + ACTIONS(215), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23488,72 +23569,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13602] = 26, + [13646] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(272), 1, sym_identifier, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - ACTIONS(881), 1, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_GT, - ACTIONS(889), 1, + ACTIONS(909), 1, anon_sym_QMARK, - ACTIONS(895), 1, + ACTIONS(915), 1, anon_sym_LT_EQ, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(891), 2, + ACTIONS(911), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(283), 3, + ACTIONS(274), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(883), 3, + ACTIONS(903), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(893), 4, + ACTIONS(913), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(887), 10, + ACTIONS(907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -23564,62 +23645,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13704] = 22, + [13748] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - ACTIONS(601), 1, + ACTIONS(621), 1, anon_sym_LT, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_GT, - ACTIONS(895), 1, + ACTIONS(915), 1, anon_sym_LT_EQ, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(274), 2, + ACTIONS(213), 2, anon_sym_EQ, sym_identifier, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(883), 3, + ACTIONS(903), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(893), 4, + ACTIONS(913), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(276), 16, + ACTIONS(215), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23636,44 +23717,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13798] = 17, + [13842] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(274), 8, + ACTIONS(213), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -23682,7 +23763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_EQ, sym_identifier, - ACTIONS(276), 20, + ACTIONS(215), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23703,38 +23784,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [13882] = 15, + [13926] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(274), 10, + ACTIONS(213), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -23745,7 +23826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, sym_identifier, - ACTIONS(276), 22, + ACTIONS(215), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23768,35 +23849,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - [13962] = 14, + [14006] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(274), 12, + ACTIONS(213), 12, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -23809,7 +23890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, sym_identifier, - ACTIONS(276), 22, + ACTIONS(215), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23832,28 +23913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - [14040] = 12, + [14084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(274), 15, + ACTIONS(213), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -23869,7 +23950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, sym_identifier, - ACTIONS(276), 24, + ACTIONS(215), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23894,44 +23975,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_GT_GT, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - [14114] = 17, + [14158] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(552), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(937), 1, + anon_sym_RPAREN, + ACTIONS(939), 1, + anon_sym_COMMA, + ACTIONS(943), 1, + sym_underscore, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(941), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(291), 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, + [14246] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(817), 1, + anon_sym_mutate, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(825), 1, + sym_underscore, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + STATE(1014), 1, + sym_call_argument, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(823), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(388), 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, + [14334] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(578), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(580), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(582), 1, + ACTIONS(571), 1, anon_sym_is, - ACTIONS(584), 1, + ACTIONS(573), 1, anon_sym_BANGis, - STATE(166), 1, + STATE(168), 1, sym_argument_list, STATE(169), 1, sym_instantiationT_list, - STATE(344), 1, + STATE(372), 1, sym__brackets_lt_gt, - ACTIONS(897), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(901), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, + ACTIONS(925), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(903), 3, + ACTIONS(923), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(285), 8, + ACTIONS(280), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -23940,7 +24159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_EQ, sym_identifier, - ACTIONS(287), 20, + ACTIONS(282), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -23961,14 +24180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [14198] = 5, + [14418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(911), 1, + ACTIONS(945), 1, anon_sym_PIPE, - ACTIONS(385), 14, + ACTIONS(355), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -23983,7 +24202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(387), 32, + ACTIONS(357), 32, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, @@ -24016,16 +24235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [14258] = 6, + [14478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(907), 1, + ACTIONS(947), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(949), 1, anon_sym_DASH_GT, - ACTIONS(391), 14, + ACTIONS(363), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -24040,7 +24259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(393), 31, + ACTIONS(365), 31, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, @@ -24072,72 +24291,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [14320] = 26, + [14540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(289), 1, - sym_identifier, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - ACTIONS(881), 1, + ACTIONS(377), 1, + anon_sym_DASH_GT, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(951), 1, + anon_sym_PIPE, + ACTIONS(371), 14, anon_sym_EQ, - ACTIONS(885), 1, + anon_sym_LT, anon_sym_GT, - ACTIONS(889), 1, - anon_sym_QMARK, - ACTIONS(895), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(891), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(291), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(883), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(887), 10, + anon_sym_BANG, + ACTIONS(373), 31, + anon_sym_COLON, + 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, @@ -24148,83 +24333,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14422] = 17, + 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, + [14602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(947), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(913), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(915), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(917), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(949), 1, + anon_sym_DASH_GT, + ACTIONS(392), 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, - anon_sym_TILDE, - STATE(905), 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(377), 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, - [14506] = 6, + ACTIONS(394), 31, + anon_sym_COLON, + 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, + [14664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, - anon_sym_DASH_GT, - ACTIONS(679), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(919), 1, + ACTIONS(947), 1, anon_sym_PIPE, - ACTIONS(306), 14, + ACTIONS(949), 1, + anon_sym_DASH_GT, + ACTIONS(396), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -24239,7 +24427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(308), 31, + ACTIONS(398), 31, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, @@ -24271,21 +24459,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_EQ_GT, - [14568] = 8, + [14726] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + sym_identifier, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + ACTIONS(569), 1, + anon_sym_as, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(901), 1, + anon_sym_EQ, + ACTIONS(905), 1, + anon_sym_GT, + ACTIONS(909), 1, + anon_sym_QMARK, + ACTIONS(915), 1, + anon_sym_LT_EQ, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(372), 1, + sym__brackets_lt_gt, + ACTIONS(911), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(919), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(921), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(290), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(903), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(923), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(913), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(907), 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, + [14828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(190), 1, + ACTIONS(197), 1, anon_sym_PIPE, - ACTIONS(193), 1, + ACTIONS(200), 1, anon_sym_QMARK, - ACTIONS(201), 1, + ACTIONS(208), 1, anon_sym_LT, - STATE(531), 1, + STATE(536), 1, sym_instantiationT_list, - ACTIONS(204), 2, + ACTIONS(211), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(184), 16, + ACTIONS(191), 16, anon_sym_EQ, anon_sym_GT, anon_sym_AMP, @@ -24302,7 +24566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, sym_identifier, - ACTIONS(188), 26, + ACTIONS(195), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -24329,46 +24593,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, anon_sym_BANGis, - [14634] = 18, + [14894] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(957), 1, anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(929), 1, + ACTIONS(961), 1, anon_sym_RBRACK, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(967), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(931), 2, + ACTIONS(963), 2, sym_number_literal, sym_string_literal, - ACTIONS(933), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(857), 8, + STATE(865), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24377,7 +24642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(280), 19, + STATE(285), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24397,46 +24662,47 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [14720] = 18, + [14982] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(935), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(969), 1, anon_sym_COMMA, - ACTIONS(937), 1, + ACTIONS(971), 1, anon_sym_RBRACK, - STATE(98), 1, + ACTIONS(975), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(939), 2, + ACTIONS(973), 2, sym_number_literal, sym_string_literal, - ACTIONS(941), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(857), 8, + STATE(865), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24445,7 +24711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(287), 19, + STATE(276), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24465,72 +24731,40 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [14806] = 26, + [15070] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(554), 1, + ACTIONS(197), 1, + anon_sym_PIPE, + ACTIONS(208), 1, anon_sym_LT, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - ACTIONS(881), 1, + STATE(536), 1, + sym_instantiationT_list, + ACTIONS(211), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(200), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(191), 13, anon_sym_EQ, - ACTIONS(885), 1, anon_sym_GT, - ACTIONS(889), 1, - anon_sym_QMARK, - ACTIONS(895), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(943), 1, - sym_identifier, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(891), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(883), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(945), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(887), 10, + anon_sym_BANG, + ACTIONS(195), 26, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24541,46 +24775,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14908] = 18, + 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, + [15136] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(935), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(969), 1, anon_sym_COMMA, - ACTIONS(947), 1, + ACTIONS(975), 1, + sym_underscore, + ACTIONS(977), 1, anon_sym_RBRACK, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(939), 2, + ACTIONS(973), 2, sym_number_literal, sym_string_literal, - ACTIONS(941), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(857), 8, + STATE(865), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24589,7 +24838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(287), 19, + STATE(276), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24609,114 +24858,106 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [14994] = 18, + [15224] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_DOT, + ACTIONS(567), 1, + anon_sym_BANG, + STATE(168), 1, + sym_argument_list, + STATE(169), 1, + sym_instantiationT_list, + STATE(372), 1, + sym__brackets_lt_gt, + ACTIONS(261), 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(263), 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, + [15292] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(949), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(979), 1, anon_sym_COMMA, - ACTIONS(951), 1, + ACTIONS(981), 1, anon_sym_RBRACK, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(953), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(955), 2, - sym_null_literal, + ACTIONS(985), 1, sym_underscore, - ACTIONS(747), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(857), 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(293), 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, - [15080] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(745), 1, - anon_sym_mutate, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - STATE(1022), 1, - sym_call_argument, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(751), 2, + ACTIONS(983), 2, sym_number_literal, sym_string_literal, - ACTIONS(753), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(865), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24725,7 +24966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(368), 19, + STATE(298), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24745,71 +24986,71 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15166] = 26, + [15380] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(559), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(561), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(567), 1, anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(569), 1, anon_sym_as, - ACTIONS(831), 1, + ACTIONS(571), 1, + anon_sym_is, + ACTIONS(573), 1, + anon_sym_BANGis, + ACTIONS(589), 1, + anon_sym_LT, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(905), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(909), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(915), 1, anon_sym_LT_EQ, - ACTIONS(957), 1, - anon_sym_RPAREN, - ACTIONS(959), 1, - anon_sym_COMMA, - STATE(107), 1, + ACTIONS(987), 1, + sym_identifier, + STATE(168), 1, sym_argument_list, - STATE(110), 1, + STATE(169), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(372), 1, sym__brackets_lt_gt, - STATE(988), 1, - aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(911), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(919), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(921), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(925), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(903), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(923), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(913), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24820,36 +25061,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15267] = 5, + [15481] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, - anon_sym_PIPE, - ACTIONS(335), 6, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(329), 14, - anon_sym_EQ, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(991), 1, + anon_sym_COMMA, + ACTIONS(993), 1, + anon_sym_RBRACK, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + STATE(949), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(331), 26, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24860,34 +25136,84 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15326] = 6, + [15582] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, + ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(327), 2, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(324), 4, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(995), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(999), 1, + sym_underscore, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(997), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(283), 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, + [15667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(400), 1, + anon_sym_PIPE, + ACTIONS(403), 1, anon_sym_QMARK, - ACTIONS(317), 14, + ACTIONS(406), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(191), 17, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -24902,8 +25228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(319), 26, + anon_sym_as, + anon_sym_is, + sym_identifier, + ACTIONS(195), 26, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -24925,48 +25257,46 @@ 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, - [15387] = 17, + [15728] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(961), 1, - anon_sym_RPAREN, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1001), 1, + anon_sym_RBRACK, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(963), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(965), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(862), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -24975,7 +25305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(279), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -24995,71 +25325,40 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15470] = 26, + [15813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - anon_sym_LPAREN, - ACTIONS(552), 1, - anon_sym_DOT, - ACTIONS(554), 1, - anon_sym_LT, - ACTIONS(578), 1, - anon_sym_BANG, - ACTIONS(580), 1, - anon_sym_as, - ACTIONS(582), 1, - anon_sym_is, - ACTIONS(584), 1, - anon_sym_BANGis, - ACTIONS(881), 1, + ACTIONS(384), 1, + anon_sym_PIPE, + ACTIONS(387), 1, + anon_sym_QMARK, + ACTIONS(390), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(380), 17, anon_sym_EQ, - ACTIONS(885), 1, + anon_sym_LT, anon_sym_GT, - ACTIONS(889), 1, - anon_sym_QMARK, - ACTIONS(895), 1, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(967), 1, - sym_identifier, - STATE(166), 1, - sym_argument_list, - STATE(169), 1, - sym_instantiationT_list, - STATE(344), 1, - sym__brackets_lt_gt, - ACTIONS(891), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(899), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(901), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(905), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(969), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(883), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(903), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(887), 10, + anon_sym_BANG, + anon_sym_as, + anon_sym_is, + sym_identifier, + ACTIONS(382), 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, @@ -25070,44 +25369,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15571] = 17, + 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, + [15874] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(971), 1, + ACTIONS(953), 1, + sym_identifier, + ACTIONS(955), 1, + anon_sym_LPAREN, + ACTIONS(959), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1003), 1, anon_sym_RPAREN, - STATE(98), 1, + ACTIONS(1007), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(1005), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(860), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25116,7 +25427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(284), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25136,44 +25447,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15654] = 17, + [15959] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(977), 1, - anon_sym_RBRACK, - STATE(98), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1009), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25182,7 +25494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25202,71 +25514,144 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [15737] = 26, + [16044] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(979), 1, - anon_sym_RPAREN, - ACTIONS(981), 1, - anon_sym_COMMA, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - STATE(1000), 1, - aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1011), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [16141] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1013), 1, + anon_sym_RPAREN, + ACTIONS(1015), 1, + anon_sym_COMMA, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + STATE(1005), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25277,71 +25662,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15838] = 26, + [16242] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(983), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1017), 1, anon_sym_COMMA, - ACTIONS(985), 1, + ACTIONS(1019), 1, anon_sym_RBRACK, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - STATE(1003), 1, + STATE(1008), 1, aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25352,44 +25737,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15939] = 17, + [16343] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(987), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1021), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25398,7 +25784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25418,44 +25804,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16022] = 17, + [16428] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(989), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1023), 1, anon_sym_RBRACK, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25464,7 +25851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25484,44 +25871,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16105] = 17, + [16513] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(991), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1025), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25530,7 +25918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25550,44 +25938,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16188] = 17, + [16598] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(993), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1027), 1, anon_sym_RBRACK, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25596,7 +25985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25616,71 +26005,126 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16271] = 26, + [16683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(400), 1, + anon_sym_PIPE, + ACTIONS(406), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(403), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(191), 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(195), 26, anon_sym_LPAREN, - ACTIONS(622), 1, 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, + [16744] = 26, + ACTIONS(3), 1, + sym_comment, ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(995), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1029), 1, anon_sym_RPAREN, - ACTIONS(997), 1, + ACTIONS(1031), 1, anon_sym_COMMA, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - STATE(994), 1, + STATE(986), 1, aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25691,44 +26135,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16372] = 17, + [16845] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, ACTIONS(999), 1, - anon_sym_RBRACK, - STATE(98), 1, + sym_underscore, + ACTIONS(1033), 1, + anon_sym_RPAREN, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25737,7 +26182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25757,192 +26202,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16455] = 26, + [16930] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1035), 1, anon_sym_RBRACK, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - STATE(937), 1, - aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [16556] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1005), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [16653] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - ACTIONS(1007), 1, - anon_sym_RPAREN, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(973), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(997), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -25951,7 +26249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -25971,110 +26269,100 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16736] = 17, + [17015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(384), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(390), 2, anon_sym_LBRACE, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - ACTIONS(921), 1, - sym_identifier, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_LBRACK, - ACTIONS(1009), 1, + anon_sym_DASH_GT, + ACTIONS(387), 4, anon_sym_RPAREN, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1011), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1013), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(380), 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, - anon_sym_TILDE, - STATE(862), 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(285), 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, - [16819] = 17, + ACTIONS(382), 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, + [17076] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(1015), 1, + ACTIONS(953), 1, + sym_identifier, + ACTIONS(955), 1, + anon_sym_LPAREN, + ACTIONS(959), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1037), 1, anon_sym_RPAREN, - STATE(98), 1, + ACTIONS(1041), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(1039), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(860), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26083,7 +26371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26103,71 +26391,146 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [16902] = 26, + [17161] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1017), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1043), 1, anon_sym_RPAREN, - ACTIONS(1019), 1, + ACTIONS(1045), 1, anon_sym_COMMA, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - STATE(962), 1, + STATE(1010), 1, aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [17262] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1047), 1, + anon_sym_RPAREN, + ACTIONS(1049), 1, + anon_sym_COMMA, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + STATE(968), 1, + aux_sym_annotation_arguments_repeat1, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26178,71 +26541,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17003] = 26, + [17363] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1021), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1051), 1, anon_sym_COMMA, - ACTIONS(1023), 1, + ACTIONS(1053), 1, anon_sym_RBRACK, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - STATE(965), 1, + STATE(971), 1, aux_sym_annotation_arguments_repeat1, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26253,44 +26616,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17104] = 17, + [17464] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(1025), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1055), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26299,7 +26663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26319,44 +26683,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17187] = 17, + [17549] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(1027), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1057), 1, anon_sym_RBRACK, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26365,7 +26730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26385,44 +26750,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17270] = 17, + [17634] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(1029), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1059), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26431,7 +26797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26451,44 +26817,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17353] = 17, + [17719] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(1031), 1, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1061), 1, anon_sym_RBRACK, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26497,7 +26864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26517,44 +26884,99 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17436] = 17, + [17804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(319), 1, + anon_sym_PIPE, + ACTIONS(321), 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(315), 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(317), 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, + [17863] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(1033), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1041), 1, + sym_underscore, + ACTIONS(1063), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1035), 2, + ACTIONS(1039), 2, sym_number_literal, sym_string_literal, - ACTIONS(1037), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(862), 8, + STATE(860), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26563,7 +26985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(292), 19, + STATE(296), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26583,44 +27005,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17519] = 17, + [17948] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(1039), 1, + ACTIONS(953), 1, + sym_identifier, + ACTIONS(955), 1, + anon_sym_LPAREN, + ACTIONS(959), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1065), 1, anon_sym_RPAREN, - STATE(98), 1, + ACTIONS(1069), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(1067), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(860), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26629,7 +27052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(297), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26649,44 +27072,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17602] = 17, + [18033] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(999), 1, + sym_underscore, + ACTIONS(1071), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1035), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(1037), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(862), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26695,7 +27119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(292), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26715,99 +27139,45 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17685] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, - anon_sym_PIPE, - ACTIONS(324), 1, - anon_sym_QMARK, - ACTIONS(327), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - ACTIONS(317), 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, - sym_identifier, - ACTIONS(319), 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, - [17746] = 17, + [18118] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(1043), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1069), 1, + sym_underscore, + ACTIONS(1073), 1, anon_sym_RPAREN, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1011), 2, + ACTIONS(1067), 2, sym_number_literal, sym_string_literal, - ACTIONS(1013), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(862), 8, + STATE(860), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26816,7 +27186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(285), 19, + STATE(297), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26836,42 +27206,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17829] = 16, + [18203] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1077), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1045), 2, + ACTIONS(1075), 2, sym_number_literal, sym_string_literal, - ACTIONS(1047), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26880,7 +27251,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, @@ -26900,42 +27271,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17909] = 16, + [18285] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1081), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1049), 2, + ACTIONS(1079), 2, sym_number_literal, sym_string_literal, - ACTIONS(1051), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -26944,7 +27316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(436), 19, + STATE(237), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -26964,106 +27336,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [17989] = 16, + [18367] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, - sym__comparison_lt_gt, - STATE(52), 1, - sym_object_literal_body, - ACTIONS(73), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1053), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1055), 2, + ACTIONS(762), 1, sym_null_literal, - sym_underscore, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(899), 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(20), 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, - [18069] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(69), 1, - anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(1085), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1057), 2, + ACTIONS(1083), 2, sym_number_literal, sym_string_literal, - ACTIONS(1059), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27072,7 +27381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(21), 19, + STATE(238), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27092,7 +27401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18149] = 16, + [18449] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -27105,29 +27414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lazy, ACTIONS(69), 1, anon_sym_match, - ACTIONS(81), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(532), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - STATE(51), 1, - sym__comparison_lt_gt, + ACTIONS(1089), 1, + sym_underscore, STATE(52), 1, + sym__comparison_lt_gt, + STATE(53), 1, sym_object_literal_body, ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1061), 2, + ACTIONS(1087), 2, sym_number_literal, sym_string_literal, - ACTIONS(1063), 2, - sym_null_literal, - sym_underscore, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27156,42 +27466,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18229] = 16, + [18531] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1093), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1065), 2, + ACTIONS(1091), 2, sym_number_literal, sym_string_literal, - ACTIONS(1067), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27200,7 +27511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(23), 19, + STATE(239), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27220,42 +27531,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18309] = 16, + [18613] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1097), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1069), 2, + ACTIONS(1095), 2, sym_number_literal, sym_string_literal, - ACTIONS(1071), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27264,7 +27576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(24), 19, + STATE(240), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27284,42 +27596,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18389] = 16, + [18695] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, + anon_sym_lazy, + ACTIONS(1105), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1073), 2, + ACTIONS(1103), 2, sym_number_literal, sym_string_literal, - ACTIONS(1075), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27328,7 +27641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(431), 19, + STATE(198), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27348,42 +27661,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18469] = 16, + [18777] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, + anon_sym_lazy, + ACTIONS(1109), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1077), 2, + ACTIONS(1107), 2, sym_number_literal, sym_string_literal, - ACTIONS(1079), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27392,7 +27706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(432), 19, + STATE(197), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27412,42 +27726,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18549] = 16, + [18859] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(1117), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1123), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1081), 2, + ACTIONS(1119), 2, sym_number_literal, sym_string_literal, - ACTIONS(1083), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27456,7 +27771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(433), 19, + STATE(275), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27476,42 +27791,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18629] = 16, + [18941] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1127), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1085), 2, + ACTIONS(1125), 2, sym_number_literal, sym_string_literal, - ACTIONS(1087), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27520,7 +27836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(434), 19, + STATE(441), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27540,42 +27856,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18709] = 16, + [19023] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1131), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1089), 2, + ACTIONS(1129), 2, sym_number_literal, sym_string_literal, - ACTIONS(1091), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27584,7 +27901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(435), 19, + STATE(340), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27604,42 +27921,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18789] = 16, + [19105] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(69), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1135), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1093), 2, + ACTIONS(1133), 2, sym_number_literal, sym_string_literal, - ACTIONS(1095), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27648,7 +27966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(439), 19, + STATE(22), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27668,42 +27986,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18869] = 16, + [19187] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(921), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1139), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1097), 2, + ACTIONS(1137), 2, sym_number_literal, sym_string_literal, - ACTIONS(1099), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27712,7 +28031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(421), 19, + STATE(431), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27732,42 +28051,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [18949] = 16, + [19269] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(1117), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1143), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1101), 2, + ACTIONS(1141), 2, sym_number_literal, sym_string_literal, - ACTIONS(1103), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27776,7 +28096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(420), 19, + STATE(267), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27796,42 +28116,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19029] = 16, + [19351] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(69), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1147), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1105), 2, + ACTIONS(1145), 2, sym_number_literal, sym_string_literal, - ACTIONS(1107), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27840,7 +28161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(423), 19, + STATE(25), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27860,42 +28181,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19109] = 16, + [19433] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(1111), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1151), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1117), 2, + ACTIONS(1149), 2, sym_number_literal, sym_string_literal, - ACTIONS(1119), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27904,7 +28226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(254), 19, + STATE(433), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27924,42 +28246,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19189] = 16, + [19515] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1155), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1121), 2, + ACTIONS(1153), 2, sym_number_literal, sym_string_literal, - ACTIONS(1123), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -27968,7 +28291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(25), 19, + STATE(434), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -27988,42 +28311,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19269] = 16, + [19597] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1159), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1125), 2, + ACTIONS(1157), 2, sym_number_literal, sym_string_literal, - ACTIONS(1127), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28032,7 +28356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(234), 19, + STATE(435), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28052,42 +28376,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19349] = 16, + [19679] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1163), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1129), 2, + ACTIONS(1161), 2, sym_number_literal, sym_string_literal, - ACTIONS(1131), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28096,7 +28421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(427), 19, + STATE(422), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28116,42 +28441,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19429] = 16, + [19761] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1167), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1133), 2, + ACTIONS(1165), 2, sym_number_literal, sym_string_literal, - ACTIONS(1135), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28160,7 +28486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(333), 19, + STATE(423), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28180,186 +28506,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19509] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1137), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [19605] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1139), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [19701] = 16, + [19843] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1171), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1141), 2, + ACTIONS(1169), 2, sym_number_literal, sym_string_literal, - ACTIONS(1143), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28368,7 +28551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(223), 19, + STATE(424), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28388,42 +28571,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19781] = 16, + [19925] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1175), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1145), 2, + ACTIONS(1173), 2, sym_number_literal, sym_string_literal, - ACTIONS(1147), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28432,7 +28616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(229), 19, + STATE(425), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28452,42 +28636,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19861] = 16, + [20007] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(1111), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, - anon_sym_lazy, - STATE(173), 1, + ACTIONS(959), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1179), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1149), 2, + ACTIONS(1177), 2, sym_number_literal, sym_string_literal, - ACTIONS(1151), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28496,7 +28681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(255), 19, + STATE(426), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28516,42 +28701,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [19941] = 16, + [20089] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1183), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(973), 2, + ACTIONS(1181), 2, sym_number_literal, sym_string_literal, - ACTIONS(975), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28560,7 +28746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(288), 19, + STATE(427), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28580,42 +28766,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20021] = 16, + [20171] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1187), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1157), 2, + ACTIONS(1185), 2, sym_number_literal, sym_string_literal, - ACTIONS(1159), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28624,7 +28811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(190), 19, + STATE(444), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28644,42 +28831,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20101] = 16, + [20253] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(1111), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, - anon_sym_lazy, - STATE(173), 1, + ACTIONS(959), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1191), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1161), 2, + ACTIONS(1189), 2, sym_number_literal, sym_string_literal, - ACTIONS(1163), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28688,7 +28876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(268), 19, + STATE(440), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28708,42 +28896,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20181] = 16, + [20335] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(1111), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, - anon_sym_lazy, - STATE(173), 1, + ACTIONS(959), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1195), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1165), 2, + ACTIONS(1193), 2, sym_number_literal, sym_string_literal, - ACTIONS(1167), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28752,7 +28941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(256), 19, + STATE(429), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28772,114 +28961,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20261] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1169), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [20357] = 16, + [20417] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(754), 1, + anon_sym_lazy, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(953), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1199), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1171), 2, + ACTIONS(1197), 2, sym_number_literal, sym_string_literal, - ACTIONS(1173), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28888,7 +29006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(383), 19, + STATE(430), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28908,42 +29026,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20437] = 16, + [20499] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1203), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1175), 2, + ACTIONS(1201), 2, sym_number_literal, sym_string_literal, - ACTIONS(1177), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -28952,7 +29071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(13), 19, + STATE(229), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -28972,42 +29091,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20517] = 16, + [20581] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1207), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1179), 2, + ACTIONS(1205), 2, sym_number_literal, sym_string_literal, - ACTIONS(1181), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29016,7 +29136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(430), 19, + STATE(343), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29036,42 +29156,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20597] = 16, + [20663] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1211), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1183), 2, + ACTIONS(1209), 2, sym_number_literal, sym_string_literal, - ACTIONS(1185), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29080,7 +29201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(232), 19, + STATE(230), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29100,42 +29221,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20677] = 16, + [20745] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1215), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1187), 2, + ACTIONS(1213), 2, sym_number_literal, sym_string_literal, - ACTIONS(1189), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29144,7 +29266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(14), 19, + STATE(402), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29164,42 +29286,115 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20757] = 16, + [20827] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1217), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [20923] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(1111), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1221), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1191), 2, + ACTIONS(1219), 2, sym_number_literal, sym_string_literal, - ACTIONS(1193), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29208,7 +29403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(257), 19, + STATE(232), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29228,42 +29423,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20837] = 16, + [21005] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(67), 1, + anon_sym_lazy, + ACTIONS(69), 1, anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - anon_sym_lazy, - STATE(173), 1, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1195), 2, + ACTIONS(1223), 2, sym_number_literal, sym_string_literal, - ACTIONS(1197), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29272,7 +29468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(258), 19, + STATE(26), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29292,42 +29488,116 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20917] = 16, + [21087] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1227), 1, + anon_sym_RPAREN, + ACTIONS(1229), 1, + anon_sym_COMMA, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [21185] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1233), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1199), 2, + ACTIONS(1231), 2, sym_number_literal, sym_string_literal, - ACTIONS(1201), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29336,7 +29606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(17), 19, + STATE(233), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29356,7 +29626,79 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [20997] = 16, + [21267] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1235), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [21363] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -29369,29 +29711,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lazy, ACTIONS(69), 1, anon_sym_match, - ACTIONS(81), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(532), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - STATE(51), 1, - sym__comparison_lt_gt, + ACTIONS(1239), 1, + sym_underscore, STATE(52), 1, + sym__comparison_lt_gt, + STATE(53), 1, sym_object_literal_body, ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1203), 2, + ACTIONS(1237), 2, sym_number_literal, sym_string_literal, - ACTIONS(1205), 2, - sym_null_literal, - sym_underscore, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29400,7 +29743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(18), 19, + STATE(14), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29420,42 +29763,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21077] = 16, + [21445] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, + ACTIONS(67), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1243), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1207), 2, + ACTIONS(1241), 2, sym_number_literal, sym_string_literal, - ACTIONS(1209), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29464,7 +29808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(237), 19, + STATE(15), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29484,42 +29828,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21157] = 16, + [21527] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(1111), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1247), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1211), 2, + ACTIONS(1245), 2, sym_number_literal, sym_string_literal, - ACTIONS(1213), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29528,7 +29873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(259), 19, + STATE(345), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29548,42 +29893,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21237] = 16, + [21609] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1251), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1249), 2, sym_number_literal, sym_string_literal, - ACTIONS(1217), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29592,7 +29938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(127), 19, + STATE(128), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29612,42 +29958,115 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21317] = 16, + [21691] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1253), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [21787] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1257), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1219), 2, + ACTIONS(1255), 2, sym_number_literal, sym_string_literal, - ACTIONS(1221), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29656,7 +30075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(241), 19, + STATE(234), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29676,42 +30095,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21397] = 16, + [21869] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1261), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1223), 2, + ACTIONS(1259), 2, sym_number_literal, sym_string_literal, - ACTIONS(1225), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29720,7 +30140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(413), 19, + STATE(251), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29740,42 +30160,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21477] = 16, + [21951] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, - sym_identifier, ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1265), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1227), 2, + ACTIONS(1263), 2, sym_number_literal, sym_string_literal, - ACTIONS(1229), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29784,7 +30205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(251), 19, + STATE(252), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29804,42 +30225,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21557] = 16, + [22033] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1269), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1231), 2, + ACTIONS(1267), 2, sym_number_literal, sym_string_literal, - ACTIONS(1233), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29848,7 +30270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(412), 19, + STATE(253), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29868,42 +30290,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21637] = 16, + [22115] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, - sym_identifier, ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1273), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1235), 2, + ACTIONS(1271), 2, sym_number_literal, sym_string_literal, - ACTIONS(1237), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -29912,7 +30335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(252), 19, + STATE(254), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -29932,115 +30355,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21717] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - ACTIONS(1239), 1, - anon_sym_RPAREN, - ACTIONS(1241), 1, - anon_sym_COMMA, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [21815] = 16, + [22197] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1277), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1243), 2, + ACTIONS(1275), 2, sym_number_literal, sym_string_literal, - ACTIONS(1245), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30049,7 +30400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(428), 19, + STATE(255), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30069,42 +30420,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21895] = 16, + [22279] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1281), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1247), 2, + ACTIONS(1279), 2, sym_number_literal, sym_string_literal, - ACTIONS(1249), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30113,7 +30465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(351), 19, + STATE(256), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30133,42 +30485,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [21975] = 16, + [22361] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1285), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1251), 2, + ACTIONS(1283), 2, sym_number_literal, sym_string_literal, - ACTIONS(1253), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30177,7 +30530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(192), 19, + STATE(257), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30197,42 +30550,115 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22055] = 16, + [22443] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1287), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [22539] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, + ACTIONS(720), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(722), 1, + anon_sym_match, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1255), 2, + ACTIONS(1289), 2, sym_number_literal, sym_string_literal, - ACTIONS(1257), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30241,7 +30667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(239), 19, + STATE(131), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30261,42 +30687,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22135] = 16, + [22621] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1295), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1259), 2, + ACTIONS(1293), 2, sym_number_literal, sym_string_literal, - ACTIONS(1261), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30305,7 +30732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(128), 19, + STATE(132), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30325,42 +30752,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22215] = 16, + [22703] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1299), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1263), 2, + ACTIONS(1297), 2, sym_number_literal, sym_string_literal, - ACTIONS(1265), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30369,7 +30797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(129), 19, + STATE(133), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30389,42 +30817,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22295] = 16, + [22785] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1303), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1267), 2, + ACTIONS(1301), 2, sym_number_literal, sym_string_literal, - ACTIONS(1269), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30433,7 +30862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(130), 19, + STATE(134), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30453,42 +30882,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22375] = 16, + [22867] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(699), 1, - anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1307), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1271), 2, + ACTIONS(1305), 2, sym_number_literal, sym_string_literal, - ACTIONS(1273), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30497,7 +30927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(131), 19, + STATE(421), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30517,42 +30947,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22455] = 16, + [22949] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1311), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1275), 2, + ACTIONS(1309), 2, sym_number_literal, sym_string_literal, - ACTIONS(1277), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30561,7 +30992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(132), 19, + STATE(136), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30581,42 +31012,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22535] = 16, + [23031] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1315), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1279), 2, + ACTIONS(1313), 2, sym_number_literal, sym_string_literal, - ACTIONS(1281), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30625,7 +31057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(133), 19, + STATE(99), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30645,42 +31077,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22615] = 16, + [23113] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1319), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1283), 2, + ACTIONS(1317), 2, sym_number_literal, sym_string_literal, - ACTIONS(1285), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30689,7 +31122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(135), 19, + STATE(138), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30709,42 +31142,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22695] = 16, + [23195] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1323), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1287), 2, + ACTIONS(1321), 2, sym_number_literal, sym_string_literal, - ACTIONS(1289), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30753,7 +31187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(136), 19, + STATE(139), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30773,42 +31207,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22775] = 16, + [23277] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1327), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1291), 2, + ACTIONS(1325), 2, sym_number_literal, sym_string_literal, - ACTIONS(1293), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30817,7 +31252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(415), 19, + STATE(258), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30837,42 +31272,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22855] = 16, + [23359] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1331), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1295), 2, + ACTIONS(1329), 2, sym_number_literal, sym_string_literal, - ACTIONS(1297), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30881,7 +31317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(193), 19, + STATE(195), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30901,42 +31337,115 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [22935] = 16, + [23441] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_DOT, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1333), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 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, + [23537] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, - sym_identifier, ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1337), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1299), 2, + ACTIONS(1335), 2, sym_number_literal, sym_string_literal, - ACTIONS(1301), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -30945,7 +31454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(276), 19, + STATE(261), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -30965,42 +31474,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23015] = 16, + [23619] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1341), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1303), 2, + ACTIONS(1339), 2, sym_number_literal, sym_string_literal, - ACTIONS(1305), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31009,7 +31519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(324), 19, + STATE(228), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31029,114 +31539,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23095] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1307), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [23191] = 16, + [23701] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(999), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1309), 2, + ACTIONS(997), 2, sym_number_literal, sym_string_literal, - ACTIONS(1311), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31145,7 +31584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(325), 19, + STATE(283), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31165,42 +31604,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23271] = 16, + [23783] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(699), 1, - anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, + anon_sym_lazy, + ACTIONS(1345), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1313), 2, + ACTIONS(1343), 2, sym_number_literal, sym_string_literal, - ACTIONS(1315), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31209,7 +31649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(137), 19, + STATE(196), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31229,42 +31669,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23351] = 16, + [23865] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(706), 1, + sym_identifier, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(67), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(1349), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1317), 2, + ACTIONS(1347), 2, sym_number_literal, sym_string_literal, - ACTIONS(1319), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31273,7 +31714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(26), 19, + STATE(140), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31293,42 +31734,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23431] = 16, + [23947] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1353), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1321), 2, + ACTIONS(1351), 2, sym_number_literal, sym_string_literal, - ACTIONS(1323), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31337,7 +31779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(414), 19, + STATE(420), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31357,42 +31799,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23511] = 16, + [24029] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(67), 1, + anon_sym_lazy, + ACTIONS(69), 1, anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - anon_sym_lazy, - STATE(173), 1, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1357), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1325), 2, + ACTIONS(1355), 2, sym_number_literal, sym_string_literal, - ACTIONS(1327), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31401,7 +31844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(262), 19, + STATE(13), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31421,42 +31864,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23591] = 16, + [24111] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, - sym_identifier, ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1361), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1329), 2, + ACTIONS(1359), 2, sym_number_literal, sym_string_literal, - ACTIONS(1331), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31465,7 +31909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(247), 19, + STATE(273), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31485,42 +31929,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23671] = 16, + [24193] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, - sym_identifier, ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(173), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1365), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1333), 2, + ACTIONS(1363), 2, sym_number_literal, sym_string_literal, - ACTIONS(1335), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31549,42 +31994,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23751] = 16, + [24275] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(691), 1, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(67), 1, + anon_sym_lazy, + ACTIONS(69), 1, anon_sym_match, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - anon_sym_lazy, - STATE(173), 1, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1369), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1337), 2, + ACTIONS(1367), 2, sym_number_literal, sym_string_literal, - ACTIONS(1339), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1113), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31593,7 +32039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(253), 19, + STATE(17), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31613,114 +32059,108 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [23831] = 24, + [24357] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(355), 1, - sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_lazy, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1373), 1, + sym_underscore, + STATE(52), 1, + sym__comparison_lt_gt, + STATE(53), 1, + sym_object_literal_body, + ACTIONS(73), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1371), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1341), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 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, - [23927] = 16, + anon_sym_BANG, + anon_sym_TILDE, + STATE(907), 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(18), 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, + [24439] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, + ACTIONS(67), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1377), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1343), 2, + ACTIONS(1375), 2, sym_number_literal, sym_string_literal, - ACTIONS(1345), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31729,7 +32169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(233), 19, + STATE(19), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31749,42 +32189,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24007] = 16, + [24521] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(67), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1381), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1347), 2, + ACTIONS(1379), 2, sym_number_literal, sym_string_literal, - ACTIONS(1349), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31793,7 +32234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(189), 19, + STATE(20), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31813,42 +32254,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24087] = 16, + [24603] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1385), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1351), 2, + ACTIONS(1383), 2, sym_number_literal, sym_string_literal, - ACTIONS(1353), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31857,7 +32299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(422), 19, + STATE(371), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31877,42 +32319,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24167] = 16, + [24685] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, + ACTIONS(67), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1389), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1355), 2, + ACTIONS(1387), 2, sym_number_literal, sym_string_literal, - ACTIONS(1357), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31921,7 +32364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(230), 19, + STATE(16), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -31941,42 +32384,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24247] = 16, + [24767] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(45), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(749), 1, + ACTIONS(67), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(69), 1, + anon_sym_match, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + sym_underscore, + STATE(52), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(53), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1359), 2, + ACTIONS(1391), 2, sym_number_literal, sym_string_literal, - ACTIONS(1361), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -31985,7 +32429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(398), 19, + STATE(21), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32005,68 +32449,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24327] = 24, + [24849] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1363), 2, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1395), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32077,7 +32521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24423] = 16, + [24945] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -32090,29 +32534,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lazy, ACTIONS(69), 1, anon_sym_match, - ACTIONS(81), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(532), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - STATE(51), 1, - sym__comparison_lt_gt, + ACTIONS(1399), 1, + sym_underscore, STATE(52), 1, + sym__comparison_lt_gt, + STATE(53), 1, sym_object_literal_body, ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1365), 2, + ACTIONS(1397), 2, sym_number_literal, sym_string_literal, - ACTIONS(1367), 2, - sym_null_literal, - sym_underscore, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32121,7 +32566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(27), 19, + STATE(12), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32141,42 +32586,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24503] = 16, + [25027] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_lazy, - ACTIONS(69), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, + anon_sym_lazy, + ACTIONS(1403), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1369), 2, + ACTIONS(1401), 2, sym_number_literal, sym_string_literal, - ACTIONS(1371), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32185,7 +32631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(19), 19, + STATE(235), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32205,42 +32651,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24583] = 16, + [25109] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1407), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1373), 2, + ACTIONS(1405), 2, sym_number_literal, sym_string_literal, - ACTIONS(1375), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32249,7 +32696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(437), 19, + STATE(436), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32269,42 +32716,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24663] = 16, + [25191] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(754), 1, anon_sym_lazy, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(921), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(955), 1, anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(959), 1, anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(965), 1, + sym_null_literal, + ACTIONS(1411), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1377), 2, + ACTIONS(1409), 2, sym_number_literal, sym_string_literal, - ACTIONS(1379), 2, - sym_null_literal, - sym_underscore, - ACTIONS(729), 4, + ACTIONS(752), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32313,7 +32761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(438), 19, + STATE(437), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32333,7 +32781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24743] = 16, + [25273] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -32346,29 +32794,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lazy, ACTIONS(69), 1, anon_sym_match, - ACTIONS(81), 1, + ACTIONS(75), 1, + sym_null_literal, + ACTIONS(154), 1, sym_identifier, - ACTIONS(532), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - STATE(51), 1, - sym__comparison_lt_gt, + ACTIONS(1415), 1, + sym_underscore, STATE(52), 1, + sym__comparison_lt_gt, + STATE(53), 1, sym_object_literal_body, ACTIONS(73), 2, anon_sym_true, anon_sym_false, - ACTIONS(1381), 2, + ACTIONS(1413), 2, sym_number_literal, sym_string_literal, - ACTIONS(1383), 2, - sym_null_literal, - sym_underscore, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(907), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32377,7 +32826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(22), 19, + STATE(23), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32397,42 +32846,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24823] = 16, + [25355] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1419), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1385), 2, + ACTIONS(1417), 2, sym_number_literal, sym_string_literal, - ACTIONS(1387), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32441,7 +32891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(138), 19, + STATE(141), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32461,42 +32911,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24903] = 16, + [25437] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1423), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1389), 2, + ACTIONS(1421), 2, sym_number_literal, sym_string_literal, - ACTIONS(1391), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32505,7 +32956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(139), 19, + STATE(142), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32525,106 +32976,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [24983] = 16, + [25519] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, - anon_sym_lazy, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1393), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1395), 2, + ACTIONS(762), 1, sym_null_literal, - sym_underscore, - ACTIONS(747), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(905), 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(417), 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, - [25063] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, + ACTIONS(821), 1, anon_sym_lazy, - ACTIONS(69), 1, - anon_sym_match, - ACTIONS(81), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_LBRACE, - STATE(51), 1, + ACTIONS(1427), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(52), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(73), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1397), 2, + ACTIONS(1425), 2, sym_number_literal, sym_string_literal, - ACTIONS(1399), 2, - sym_null_literal, - sym_underscore, - ACTIONS(65), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(899), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32633,7 +33021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(15), 19, + STATE(236), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32653,42 +33041,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25143] = 16, + [25601] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1431), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1401), 2, + ACTIONS(1429), 2, sym_number_literal, sym_string_literal, - ACTIONS(1403), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32697,7 +33086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(419), 19, + STATE(439), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32717,42 +33106,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25223] = 16, + [25683] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1435), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1405), 2, + ACTIONS(1433), 2, sym_number_literal, sym_string_literal, - ACTIONS(1407), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32761,7 +33151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(425), 19, + STATE(417), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32781,42 +33171,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25303] = 16, + [25765] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1439), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1409), 2, + ACTIONS(1437), 2, sym_number_literal, sym_string_literal, - ACTIONS(1411), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32825,7 +33216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(426), 19, + STATE(443), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32845,42 +33236,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25383] = 16, + [25847] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1443), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1413), 2, + ACTIONS(1441), 2, sym_number_literal, sym_string_literal, - ACTIONS(1415), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32889,7 +33281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(238), 19, + STATE(418), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32909,42 +33301,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25463] = 16, + [25929] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(749), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1121), 1, + sym_null_literal, + ACTIONS(1447), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1417), 2, + ACTIONS(1445), 2, sym_number_literal, sym_string_literal, - ACTIONS(1419), 2, - sym_null_literal, - sym_underscore, - ACTIONS(747), 4, + ACTIONS(1115), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -32953,7 +33346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(240), 19, + STATE(250), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -32973,68 +33366,68 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25543] = 24, + [26011] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1421), 2, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(1449), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33045,42 +33438,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25639] = 16, + [26107] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(821), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1453), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1423), 2, + ACTIONS(1451), 2, sym_number_literal, sym_string_literal, - ACTIONS(1425), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(819), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33089,7 +33483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(194), 19, + STATE(350), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33109,42 +33503,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25719] = 16, + [26189] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1457), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1427), 2, + ACTIONS(1455), 2, sym_number_literal, sym_string_literal, - ACTIONS(1429), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33153,7 +33548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(195), 19, + STATE(191), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33173,42 +33568,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25799] = 16, + [26271] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1461), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1431), 2, + ACTIONS(1459), 2, sym_number_literal, sym_string_literal, - ACTIONS(1433), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33217,7 +33613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(196), 19, + STATE(199), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33237,42 +33633,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25879] = 16, + [26353] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1465), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1435), 2, + ACTIONS(1463), 2, sym_number_literal, sym_string_literal, - ACTIONS(1437), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33281,7 +33678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(188), 19, + STATE(200), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33301,42 +33698,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [25959] = 16, + [26435] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1469), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1439), 2, + ACTIONS(1467), 2, sym_number_literal, sym_string_literal, - ACTIONS(1441), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33345,7 +33743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(198), 19, + STATE(201), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33365,42 +33763,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26039] = 16, + [26517] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1473), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1443), 2, + ACTIONS(1471), 2, sym_number_literal, sym_string_literal, - ACTIONS(1445), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33409,7 +33808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(199), 19, + STATE(202), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33429,42 +33828,108 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26119] = 16, + [26599] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1477), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1447), 2, + ACTIONS(1475), 2, sym_number_literal, sym_string_literal, - ACTIONS(1449), 2, + ACTIONS(1099), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(203), 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, + [26681] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, sym_null_literal, + ACTIONS(1101), 1, + anon_sym_lazy, + ACTIONS(1481), 1, sym_underscore, - ACTIONS(1153), 4, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1479), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33473,7 +33938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(200), 19, + STATE(204), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33493,42 +33958,108 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26199] = 16, + [26763] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1485), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1451), 2, + ACTIONS(1483), 2, sym_number_literal, sym_string_literal, - ACTIONS(1453), 2, + ACTIONS(1099), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(205), 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, + [26845] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, sym_null_literal, + ACTIONS(1101), 1, + anon_sym_lazy, + ACTIONS(1489), 1, sym_underscore, - ACTIONS(1153), 4, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1487), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33537,7 +34068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(201), 19, + STATE(206), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33557,42 +34088,108 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26279] = 16, + [26927] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(762), 1, + sym_null_literal, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, + ACTIONS(1493), 1, + sym_underscore, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1455), 2, + ACTIONS(1491), 2, sym_number_literal, sym_string_literal, - ACTIONS(1457), 2, + ACTIONS(1099), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + STATE(904), 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(207), 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, + [27009] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_match, + ACTIONS(762), 1, sym_null_literal, + ACTIONS(1101), 1, + anon_sym_lazy, + ACTIONS(1497), 1, sym_underscore, - ACTIONS(1153), 4, + STATE(116), 1, + sym__comparison_lt_gt, + STATE(120), 1, + sym_object_literal_body, + ACTIONS(760), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1495), 2, + sym_number_literal, + sym_string_literal, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33601,7 +34198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(202), 19, + STATE(192), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33621,170 +34218,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26359] = 16, + [27091] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(717), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(719), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(756), 1, anon_sym_match, - ACTIONS(1155), 1, - anon_sym_lazy, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1459), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1461), 2, + ACTIONS(762), 1, sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(905), 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(203), 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, - [26439] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(1155), 1, + ACTIONS(1101), 1, anon_sym_lazy, - STATE(98), 1, - sym__comparison_lt_gt, - STATE(100), 1, - sym_object_literal_body, - ACTIONS(737), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1463), 2, - sym_number_literal, - sym_string_literal, - ACTIONS(1465), 2, - sym_null_literal, + ACTIONS(1501), 1, sym_underscore, - ACTIONS(1153), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - STATE(905), 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(204), 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, - [26519] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(719), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_match, - ACTIONS(1155), 1, - anon_sym_lazy, - STATE(98), 1, + STATE(116), 1, sym__comparison_lt_gt, - STATE(100), 1, + STATE(120), 1, sym_object_literal_body, - ACTIONS(737), 2, + ACTIONS(760), 2, anon_sym_true, anon_sym_false, - ACTIONS(1467), 2, + ACTIONS(1499), 2, sym_number_literal, sym_string_literal, - ACTIONS(1469), 2, - sym_null_literal, - sym_underscore, - ACTIONS(1153), 4, + ACTIONS(1099), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(905), 8, + STATE(904), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33793,7 +34263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(197), 19, + STATE(193), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33813,42 +34283,43 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26599] = 16, + [27173] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(685), 1, + ACTIONS(706), 1, sym_identifier, - ACTIONS(687), 1, + ACTIONS(708), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(712), 1, anon_sym_LBRACK, - ACTIONS(699), 1, + ACTIONS(720), 1, anon_sym_lazy, - ACTIONS(701), 1, + ACTIONS(722), 1, anon_sym_match, - ACTIONS(859), 1, + ACTIONS(728), 1, + sym_null_literal, + ACTIONS(881), 1, anon_sym_LBRACE, - STATE(173), 1, + ACTIONS(1505), 1, + sym_underscore, + STATE(164), 1, sym__comparison_lt_gt, - STATE(174), 1, + STATE(165), 1, sym_object_literal_body, - ACTIONS(705), 2, + ACTIONS(726), 2, anon_sym_true, anon_sym_false, - ACTIONS(1471), 2, + ACTIONS(1503), 2, sym_number_literal, sym_string_literal, - ACTIONS(1473), 2, - sym_null_literal, - sym_underscore, - ACTIONS(697), 4, + ACTIONS(718), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, - STATE(906), 8, + STATE(912), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -33857,7 +34328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - STATE(134), 19, + STATE(135), 19, sym__expression, sym_assignment, sym_set_assignment, @@ -33877,67 +34348,67 @@ static const uint16_t ts_small_parse_table[] = { sym_tensor_expression, sym_typed_tuple, sym_boolean_literal, - [26679] = 24, + [27255] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1475), 1, - anon_sym_RPAREN, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1507), 1, + anon_sym_COLON, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33948,67 +34419,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26774] = 24, + [27350] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1477), 1, - anon_sym_RPAREN, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1509), 1, + anon_sym_COLON, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34019,67 +34490,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26869] = 24, + [27445] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1479), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1511), 1, anon_sym_RPAREN, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34090,67 +34561,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26964] = 24, + [27540] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_RPAREN, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1513), 1, + anon_sym_COLON, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34161,67 +34632,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27059] = 24, + [27635] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1481), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1515), 1, anon_sym_RPAREN, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34232,67 +34703,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27154] = 24, + [27730] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, + ACTIONS(1517), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(1521), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(1525), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(1531), 1, anon_sym_LT_EQ, - ACTIONS(1483), 1, - anon_sym_COLON, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(1527), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1519), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(1539), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1529), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(1523), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34303,67 +34774,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27249] = 24, + [27825] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(693), 1, anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(1521), 1, anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(1531), 1, anon_sym_LT_EQ, - ACTIONS(1485), 1, - anon_sym_RPAREN, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1539), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(213), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(1529), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(215), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34374,67 +34837,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27344] = 24, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, + [27912] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(274), 1, + anon_sym_EQ_GT, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, + ACTIONS(1517), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(1521), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(1525), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(1531), 1, anon_sym_LT_EQ, - ACTIONS(1487), 1, - anon_sym_COLON, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(1527), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1519), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(1539), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1529), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(1523), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34445,42 +34912,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27439] = 11, + [28007] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(213), 1, + anon_sym_EQ, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(693), 1, + anon_sym_LT, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + ACTIONS(1521), 1, + anon_sym_GT, + ACTIONS(1531), 1, + anon_sym_LT_EQ, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(274), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1535), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1519), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1539), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(276), 22, + ACTIONS(1529), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(215), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34494,43 +34979,44 @@ 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_EQ_GT, - [27508] = 13, + [28096] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1491), 2, + ACTIONS(1533), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1535), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(1537), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1541), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1489), 3, + ACTIONS(1539), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(274), 11, + ACTIONS(213), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -34538,11 +35024,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, - ACTIONS(276), 20, + ACTIONS(215), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34560,70 +35042,48 @@ 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_EQ_GT, - [27581] = 24, + [28175] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(849), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1539), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(213), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(215), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34634,43 +35094,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27676] = 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, + [28250] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1491), 2, + ACTIONS(1541), 2, anon_sym_TILDE_SLASH, anon_sym_CARET_SLASH, - ACTIONS(1495), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1497), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1489), 3, + ACTIONS(1539), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(285), 7, + ACTIONS(213), 11, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -34678,7 +35139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(287), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(215), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34696,68 +35161,54 @@ 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_EQ_GT, - [27755] = 24, + [28323] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_GT, - ACTIONS(839), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_LT_EQ, - ACTIONS(1501), 1, - anon_sym_RPAREN, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1539), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(280), 7, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + anon_sym_LT_EQ, + ACTIONS(282), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34768,67 +35219,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27850] = 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, + [28402] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(290), 1, + anon_sym_EQ_GT, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(831), 1, + ACTIONS(1517), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(1521), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(1525), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(1531), 1, anon_sym_LT_EQ, - ACTIONS(1503), 1, - anon_sym_COLON, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(1527), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1519), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(1539), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1529), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(1523), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34839,67 +35298,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27945] = 24, + [28497] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1505), 1, - anon_sym_COLON, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1543), 1, + anon_sym_RPAREN, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34910,67 +35369,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28040] = 24, + [28592] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, - anon_sym_EQ_GT, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_EQ, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_GT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_QMARK, - ACTIONS(1521), 1, + ACTIONS(1531), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(1527), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1497), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1517), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 3, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1519), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1519), 4, + ACTIONS(1539), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1529), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1513), 10, + ACTIONS(1523), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34981,67 +35440,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28135] = 24, + [28687] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1523), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1547), 1, anon_sym_RPAREN, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35052,67 +35511,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28230] = 24, + [28782] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(1507), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(1511), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(1515), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(1521), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1525), 1, - anon_sym_EQ_GT, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1549), 1, + anon_sym_RPAREN, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1497), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1517), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1519), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1513), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35123,67 +35582,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28325] = 24, + [28877] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1527), 1, - anon_sym_COLON, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1551), 1, + anon_sym_RPAREN, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35194,67 +35653,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28420] = 24, + [28972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_EQ_GT, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(655), 1, - anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(1507), 1, - anon_sym_EQ, - ACTIONS(1511), 1, - anon_sym_GT, - ACTIONS(1515), 1, - anon_sym_QMARK, - ACTIONS(1521), 1, - anon_sym_LT_EQ, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(261), 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(1497), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1517), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1489), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1509), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1519), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1513), 10, + ACTIONS(263), 25, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35265,59 +35694,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28515] = 20, + 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, + [29037] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(267), 1, + anon_sym_EQ_GT, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(624), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - ACTIONS(1511), 1, - anon_sym_GT, + ACTIONS(1517), 1, + anon_sym_EQ, ACTIONS(1521), 1, + anon_sym_GT, + ACTIONS(1525), 1, + anon_sym_QMARK, + ACTIONS(1531), 1, anon_sym_LT_EQ, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(1527), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1533), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1497), 2, + ACTIONS(1535), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, + ACTIONS(1537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 4, - anon_sym_EQ, + ACTIONS(1541), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(1519), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1519), 4, + ACTIONS(1539), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1529), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(276), 14, + ACTIONS(1523), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35328,71 +35780,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, - [28602] = 24, + [29132] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_EQ_GT, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(1507), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(1511), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(1515), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(1521), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1553), 1, + anon_sym_RPAREN, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1497), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1517), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1519), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1513), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35403,60 +35851,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28697] = 21, + [29227] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_EQ, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(624), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(1511), 1, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(1521), 1, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1555), 1, + anon_sym_COLON, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1497), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1519), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(276), 14, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35467,47 +35922,27 @@ 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, - [28786] = 16, + [29322] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(334), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, + ACTIONS(875), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1497), 2, - anon_sym_TILDE_GT_GT, - anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 7, + ACTIONS(213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, @@ -35515,7 +35950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, - ACTIONS(276), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(215), 22, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35533,68 +35975,72 @@ 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_EQ_GT, - [28865] = 24, + [29391] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(294), 1, + anon_sym_RPAREN, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(831), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(835), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(839), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - ACTIONS(1529), 1, - anon_sym_COLON, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(355), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(813), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(841), 2, + ACTIONS(857), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(847), 2, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(849), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(851), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(833), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(843), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(837), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35605,37 +36051,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28960] = 9, + [29486] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, anon_sym_BANG, - STATE(107), 1, - sym_argument_list, - STATE(110), 1, - sym_instantiationT_list, - STATE(318), 1, - sym__brackets_lt_gt, - ACTIONS(266), 14, + ACTIONS(847), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(851), 1, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, anon_sym_LT_EQ, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1557), 1, + anon_sym_RPAREN, + STATE(130), 1, + sym_argument_list, + STATE(143), 1, + sym_instantiationT_list, + STATE(313), 1, + sym__brackets_lt_gt, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(869), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(268), 25, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35646,82 +36122,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, - [29025] = 24, + [29581] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(272), 1, - anon_sym_EQ_GT, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, - anon_sym_BANG, - ACTIONS(655), 1, + ACTIONS(647), 1, anon_sym_LT, - ACTIONS(815), 1, - anon_sym_as, - ACTIONS(1507), 1, + ACTIONS(671), 1, + anon_sym_BANG, + ACTIONS(847), 1, anon_sym_EQ, - ACTIONS(1511), 1, + ACTIONS(851), 1, anon_sym_GT, - ACTIONS(1515), 1, + ACTIONS(855), 1, anon_sym_QMARK, - ACTIONS(1521), 1, + ACTIONS(861), 1, anon_sym_LT_EQ, - STATE(107), 1, + ACTIONS(873), 1, + anon_sym_as, + ACTIONS(1559), 1, + anon_sym_COLON, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1495), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1497), 2, + ACTIONS(865), 2, anon_sym_TILDE_GT_GT, anon_sym_CARET_GT_GT, - ACTIONS(1499), 2, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1517), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 3, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1519), 4, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1513), 10, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35732,47 +36193,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29120] = 14, + [29676] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(643), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(645), 1, anon_sym_DOT, - ACTIONS(643), 1, + ACTIONS(647), 1, + anon_sym_LT, + ACTIONS(671), 1, anon_sym_BANG, - ACTIONS(815), 1, + ACTIONS(847), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_GT, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(861), 1, + anon_sym_LT_EQ, + ACTIONS(873), 1, anon_sym_as, - STATE(107), 1, + ACTIONS(1561), 1, + anon_sym_COLON, + STATE(130), 1, sym_argument_list, - STATE(110), 1, + STATE(143), 1, sym_instantiationT_list, - STATE(318), 1, + STATE(313), 1, sym__brackets_lt_gt, - ACTIONS(817), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(1491), 2, - anon_sym_TILDE_SLASH, - anon_sym_CARET_SLASH, - ACTIONS(1499), 2, + ACTIONS(857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(863), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(865), 2, + anon_sym_TILDE_GT_GT, + anon_sym_CARET_GT_GT, + ACTIONS(867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1489), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(274), 9, - anon_sym_EQ, + ACTIONS(871), 2, + anon_sym_TILDE_SLASH, + anon_sym_CARET_SLASH, + ACTIONS(875), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(849), 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, - ACTIONS(276), 20, + ACTIONS(869), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(859), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(853), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35783,31 +36264,20 @@ 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_EQ_GT, - [29195] = 9, + [29771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1533), 1, + ACTIONS(1565), 1, anon_sym_PIPE, - ACTIONS(1535), 1, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1537), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(181), 2, - anon_sym_DASH_GT, - anon_sym_QMARK, - STATE(444), 8, + ACTIONS(1571), 1, + sym_null_literal, + STATE(466), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -35816,18 +36286,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(177), 10, + ACTIONS(187), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(179), 19, + ACTIONS(189), 18, anon_sym_var, anon_sym_val, anon_sym_return, @@ -35845,20 +36317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_true, anon_sym_false, - sym_null_literal, sym_underscore, - [29258] = 8, + [29834] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1533), 1, + ACTIONS(1565), 1, anon_sym_PIPE, - ACTIONS(1535), 1, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1537), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - STATE(444), 8, + ACTIONS(1571), 1, + sym_null_literal, + ACTIONS(180), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + STATE(466), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -35867,20 +36343,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(167), 12, + ACTIONS(172), 10, anon_sym_SEMI, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(169), 19, + ACTIONS(174), 18, anon_sym_var, anon_sym_val, anon_sym_return, @@ -35898,16 +36372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_true, anon_sym_false, - sym_null_literal, sym_underscore, - [29319] = 5, + [29899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 1, + ACTIONS(1573), 1, anon_sym_LT, - STATE(443), 1, + STATE(464), 1, sym_instantiationT_list, - ACTIONS(204), 15, + ACTIONS(211), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -35923,7 +36396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(297), 20, + ACTIONS(304), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -35944,10 +36417,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29368] = 3, + [29948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 15, + ACTIONS(390), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -35963,7 +36436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(302), 20, + ACTIONS(408), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -35984,28 +36457,27 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29411] = 5, + [29991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, - anon_sym_PIPE, - ACTIONS(1543), 1, - anon_sym_QMARK, - ACTIONS(387), 13, + ACTIONS(1577), 16, anon_sym_SEMI, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(385), 20, + ACTIONS(1575), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36018,7 +36490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, - anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36026,10 +36497,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29458] = 3, + [30034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 16, + ACTIONS(1581), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36046,7 +36517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1545), 19, + ACTIONS(1579), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36066,10 +36537,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29501] = 3, + [30077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 16, + ACTIONS(1585), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36086,7 +36557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1549), 19, + ACTIONS(1583), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36106,26 +36577,27 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29544] = 3, + [30120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 15, + ACTIONS(1589), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(361), 20, + ACTIONS(1587), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36138,7 +36610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, - anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36146,10 +36617,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29587] = 3, + [30163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 16, + ACTIONS(1593), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36166,7 +36637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1553), 19, + ACTIONS(1591), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36186,10 +36657,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29630] = 3, + [30206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 15, + ACTIONS(353), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36205,7 +36676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(369), 20, + ACTIONS(351), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36226,27 +36697,26 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29673] = 3, + [30249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 16, + ACTIONS(341), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1557), 19, + ACTIONS(339), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36259,6 +36729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, + anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36266,10 +36737,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29716] = 3, + [30292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(327), 15, + ACTIONS(345), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36285,7 +36756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(355), 20, + ACTIONS(343), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36306,10 +36777,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29759] = 3, + [30335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(375), 15, + ACTIONS(349), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36325,7 +36796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(373), 20, + ACTIONS(347), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36346,27 +36817,29 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29802] = 3, + [30378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 16, + ACTIONS(377), 1, + anon_sym_DASH_GT, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1597), 1, + anon_sym_QMARK, + ACTIONS(373), 12, anon_sym_SEMI, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1561), 19, + ACTIONS(371), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36379,6 +36852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, + anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36386,29 +36860,26 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29845] = 6, + [30427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - anon_sym_QMARK, - ACTIONS(1565), 1, - anon_sym_PIPE, - ACTIONS(1567), 1, - anon_sym_DASH_GT, - ACTIONS(393), 12, + ACTIONS(321), 15, anon_sym_SEMI, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(391), 20, + ACTIONS(319), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36429,10 +36900,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29894] = 3, + [30470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 16, + ACTIONS(1601), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36449,7 +36920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1569), 19, + ACTIONS(1599), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36469,26 +36940,27 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29937] = 3, + [30513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 15, + ACTIONS(1605), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(377), 20, + ACTIONS(1603), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36501,7 +36973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, - anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36509,26 +36980,27 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [29980] = 3, + [30556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 15, + ACTIONS(1609), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(365), 20, + ACTIONS(1607), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36541,7 +37013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, - anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36549,10 +37020,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30023] = 3, + [30599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(359), 15, + ACTIONS(329), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36568,7 +37039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(357), 20, + ACTIONS(327), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36589,10 +37060,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30066] = 3, + [30642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(383), 15, + ACTIONS(325), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36608,7 +37079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(381), 20, + ACTIONS(323), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36629,26 +37100,29 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30109] = 3, + [30685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(335), 15, + ACTIONS(1597), 1, + anon_sym_QMARK, + ACTIONS(1611), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_DASH_GT, + ACTIONS(365), 12, anon_sym_SEMI, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(333), 20, + ACTIONS(363), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36669,27 +37143,28 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30152] = 3, + [30734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 16, + ACTIONS(1597), 1, + anon_sym_QMARK, + ACTIONS(1615), 1, + anon_sym_PIPE, + ACTIONS(357), 13, anon_sym_SEMI, anon_sym_EQ, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1573), 19, + ACTIONS(355), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36702,6 +37177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, + anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36709,29 +37185,26 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30195] = 6, + [30781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, - anon_sym_DASH_GT, - ACTIONS(1543), 1, - anon_sym_QMARK, - ACTIONS(1577), 1, - anon_sym_PIPE, - ACTIONS(308), 12, + ACTIONS(337), 15, anon_sym_SEMI, anon_sym_EQ, + anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(306), 20, + ACTIONS(335), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36752,27 +37225,26 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30244] = 3, + [30824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 16, + ACTIONS(333), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_BANG, anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1579), 19, + ACTIONS(331), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36785,6 +37257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, + anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36792,10 +37265,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30287] = 3, + [30867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 16, + ACTIONS(1619), 16, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36812,48 +37285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1583), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - [30330] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - anon_sym_QMARK, - ACTIONS(1565), 1, - anon_sym_PIPE, - ACTIONS(1567), 1, - anon_sym_DASH_GT, - ACTIONS(1589), 11, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1587), 20, + ACTIONS(1617), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36866,7 +37298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, - anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36874,14 +37305,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30378] = 5, + [30910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1623), 1, anon_sym_COLON, - ACTIONS(1597), 1, + ACTIONS(1627), 1, anon_sym_redef, - ACTIONS(1595), 13, + ACTIONS(1625), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_PIPE, @@ -36895,7 +37326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1591), 19, + ACTIONS(1621), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36915,28 +37346,28 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30424] = 6, + [30956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(1605), 1, - anon_sym_else, - STATE(472), 1, - sym_block_statement, - ACTIONS(1601), 11, - anon_sym_SEMI, + ACTIONS(1597), 1, + anon_sym_QMARK, + ACTIONS(1611), 1, anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_DASH_GT, + ACTIONS(1631), 11, + anon_sym_SEMI, + anon_sym_EQ, 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, - ACTIONS(1599), 19, + ACTIONS(1629), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36949,6 +37380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_assert, anon_sym_try, + anon_sym_DASH, anon_sym_lazy, anon_sym_match, anon_sym_true, @@ -36956,10 +37388,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30471] = 3, + [31004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 13, + ACTIONS(1635), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -36973,7 +37405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1607), 20, + ACTIONS(1633), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -36994,10 +37426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30512] = 3, + [31045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1613), 13, + ACTIONS(1639), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -37011,7 +37443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1611), 20, + ACTIONS(1637), 20, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37032,53 +37464,19 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30553] = 3, + [31086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(1645), 1, 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, - ACTIONS(1615), 20, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, + ACTIONS(1647), 1, anon_sym_else, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - [30593] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1623), 1, - anon_sym_EQ, - ACTIONS(1621), 12, + STATE(475), 1, + sym_block_statement, + ACTIONS(1643), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, @@ -37087,7 +37485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1619), 19, + ACTIONS(1641), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37107,12 +37505,12 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30635] = 4, + [31133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1653), 1, anon_sym_else, - ACTIONS(1627), 12, + ACTIONS(1651), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -37125,7 +37523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1625), 19, + ACTIONS(1649), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37145,10 +37543,10 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30677] = 3, + [31175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 12, + ACTIONS(1657), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -37161,12 +37559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1631), 19, + ACTIONS(1655), 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, @@ -37181,12 +37580,13 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30716] = 4, + [31215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 1, + ACTIONS(1663), 1, + anon_sym_EQ, + ACTIONS(1661), 12, anon_sym_SEMI, - ACTIONS(1639), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -37198,7 +37598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1635), 19, + ACTIONS(1659), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37218,82 +37618,106 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30757] = 3, + [31257] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 12, - anon_sym_SEMI, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1641), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1683), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [30796] = 3, + STATE(730), 1, + sym__function_body, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + ACTIONS(1665), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(549), 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(1669), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31320] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 12, - anon_sym_SEMI, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1645), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1689), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [30835] = 3, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(781), 1, + sym__function_body, + ACTIONS(1685), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(572), 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(1687), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 12, + ACTIONS(1693), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LPAREN, @@ -37306,7 +37730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1649), 19, + ACTIONS(1691), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37326,87 +37750,113 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30874] = 3, + [31422] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1655), 12, - anon_sym_SEMI, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1653), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1699), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [30913] = 3, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(837), 1, + sym__function_body, + ACTIONS(1695), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(550), 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(1697), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31485] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 12, - anon_sym_SEMI, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1657), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1705), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [30952] = 3, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(784), 1, + sym__function_body, + ACTIONS(1701), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(573), 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(1703), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1663), 12, + ACTIONS(156), 1, + anon_sym_RBRACE, + ACTIONS(1709), 1, anon_sym_SEMI, + ACTIONS(1711), 10, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, anon_sym_PLUS, @@ -37414,7 +37864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1661), 19, + ACTIONS(1707), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37434,11 +37884,12 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [30991] = 3, + [31591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 12, + ACTIONS(1709), 1, anon_sym_SEMI, + ACTIONS(1711), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -37450,7 +37901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1665), 19, + ACTIONS(1707), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37470,89 +37921,113 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [31030] = 3, + [31632] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 12, - anon_sym_SEMI, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1669), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1717), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [31069] = 5, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(798), 1, + sym__function_body, + ACTIONS(1713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(575), 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(1715), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31695] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - anon_sym_RBRACE, - ACTIONS(1637), 1, - anon_sym_SEMI, - ACTIONS(1639), 10, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1635), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1723), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [31112] = 3, + STATE(745), 1, + sym__function_body, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + ACTIONS(1719), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(571), 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(1721), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 12, + ACTIONS(166), 1, + anon_sym_RBRACE, + ACTIONS(1709), 1, anon_sym_SEMI, + ACTIONS(1711), 10, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, anon_sym_PLUS, @@ -37560,7 +38035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1673), 19, + ACTIONS(1707), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37580,51 +38055,65 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [31151] = 3, + [31801] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 12, - anon_sym_SEMI, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1677), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1729), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [31190] = 3, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(841), 1, + sym__function_body, + ACTIONS(1725), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(563), 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(1727), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1683), 12, + ACTIONS(1709), 1, anon_sym_SEMI, + ACTIONS(1731), 1, + anon_sym_RBRACE, + ACTIONS(1711), 10, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, anon_sym_PLUS, @@ -37632,7 +38121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1681), 19, + ACTIONS(1707), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37652,55 +38141,63 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [31229] = 5, + [31907] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 1, - anon_sym_SEMI, - ACTIONS(1685), 1, - anon_sym_RBRACE, - ACTIONS(1639), 10, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_LBRACE, + ACTIONS(1677), 1, + anon_sym_asm, + ACTIONS(1679), 1, + sym_builtin_specifier, + ACTIONS(1681), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - ACTIONS(1635), 19, - anon_sym_var, - anon_sym_val, - anon_sym_return, - anon_sym_repeat, - anon_sym_if, - anon_sym_do, - anon_sym_while, - sym_break_statement, - sym_continue_statement, - anon_sym_throw, - anon_sym_assert, - anon_sym_try, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1737), 1, sym_null_literal, - sym_underscore, - sym_identifier, - [31272] = 5, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(774), 1, + sym__function_body, + ACTIONS(1733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AT, + STATE(561), 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(1735), 9, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + [31970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, - anon_sym_RBRACE, - ACTIONS(1637), 1, + ACTIONS(1741), 12, anon_sym_SEMI, - ACTIONS(1639), 10, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, anon_sym_PLUS, @@ -37708,7 +38205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1635), 19, + ACTIONS(1739), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37728,17 +38225,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [31315] = 5, + [32009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 1, + ACTIONS(1745), 12, anon_sym_SEMI, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1639), 10, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DASH, anon_sym_PLUS, @@ -37746,7 +38241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - ACTIONS(1635), 19, + ACTIONS(1743), 19, anon_sym_var, anon_sym_val, anon_sym_return, @@ -37766,34 +38261,36 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - [31358] = 14, + [32048] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(684), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1751), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1689), 3, + STATE(794), 1, + sym__function_body, + ACTIONS(1747), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(542), 8, + STATE(567), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37802,7 +38299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1693), 9, + ACTIONS(1749), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -37812,34 +38309,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31418] = 14, + [32111] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(688), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1757), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1707), 3, + STATE(777), 1, + sym__function_body, + ACTIONS(1753), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(546), 8, + STATE(568), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37848,7 +38347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1709), 9, + ACTIONS(1755), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -37858,34 +38357,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31478] = 14, + [32174] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(737), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1763), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1711), 3, + STATE(778), 1, + sym__function_body, + ACTIONS(1759), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(549), 8, + STATE(569), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37894,7 +38395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1713), 9, + ACTIONS(1761), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -37904,34 +38405,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31538] = 14, + [32237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 12, + anon_sym_SEMI, + 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, + ACTIONS(1765), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [32276] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(739), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1773), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1715), 3, + STATE(790), 1, + sym__function_body, + ACTIONS(1769), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(550), 8, + STATE(558), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37940,7 +38479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1717), 9, + ACTIONS(1771), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -37950,34 +38489,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31598] = 14, + [32339] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(668), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1779), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1719), 3, + STATE(824), 1, + sym__function_body, + ACTIONS(1775), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(551), 8, + STATE(560), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -37986,7 +38527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1721), 9, + ACTIONS(1777), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -37996,34 +38537,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31658] = 14, + [32402] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(749), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1785), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1723), 3, + STATE(836), 1, + sym__function_body, + ACTIONS(1781), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(552), 8, + STATE(562), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38032,7 +38575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1725), 9, + ACTIONS(1783), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38042,34 +38585,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31718] = 14, + [32465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1789), 12, + anon_sym_SEMI, + 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, + ACTIONS(1787), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, sym_identifier, - ACTIONS(1695), 1, + [32504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1709), 1, + anon_sym_SEMI, + ACTIONS(1791), 1, + anon_sym_RBRACE, + ACTIONS(1711), 10, anon_sym_PIPE, - ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + sym_number_literal, + sym_string_literal, + ACTIONS(1707), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [32547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 12, + anon_sym_SEMI, + 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, + ACTIONS(1793), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [32586] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(758), 1, + ACTIONS(1801), 1, + sym_null_literal, + STATE(749), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(770), 1, - sym__function_body, - ACTIONS(1727), 3, + ACTIONS(1797), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(559), 8, + STATE(554), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38078,7 +38733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1729), 9, + ACTIONS(1799), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38088,34 +38743,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31778] = 14, + [32649] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(758), 1, + ACTIONS(1807), 1, + sym_null_literal, + STATE(752), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(780), 1, - sym__function_body, - ACTIONS(1731), 3, + ACTIONS(1803), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(561), 8, + STATE(555), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38124,7 +38781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1733), 9, + ACTIONS(1805), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38134,34 +38791,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31838] = 14, + [32712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 12, + anon_sym_SEMI, + 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, + ACTIONS(1809), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [32751] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(757), 1, + ACTIONS(1817), 1, + sym_null_literal, + STATE(754), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1735), 3, + ACTIONS(1813), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(544), 8, + STATE(564), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38170,7 +38865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1737), 9, + ACTIONS(1815), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38180,34 +38875,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31898] = 14, + [32814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 12, + anon_sym_SEMI, + 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, + ACTIONS(1819), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [32853] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(758), 1, + ACTIONS(1827), 1, + sym_null_literal, + STATE(756), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(806), 1, - sym__function_body, - ACTIONS(1739), 3, + ACTIONS(1823), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(564), 8, + STATE(566), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38216,7 +38949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1741), 9, + ACTIONS(1825), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38226,34 +38959,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [31958] = 14, + [32916] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(758), 1, + ACTIONS(1833), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, STATE(812), 1, sym__function_body, - ACTIONS(1743), 3, + ACTIONS(1829), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(565), 8, + STATE(546), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38262,7 +38997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1745), 9, + ACTIONS(1831), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38272,34 +39007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32018] = 14, + [32979] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(758), 1, + ACTIONS(1839), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(822), 1, + STATE(815), 1, sym__function_body, - ACTIONS(1747), 3, + ACTIONS(1835), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(566), 8, + STATE(547), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38308,7 +39045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1749), 9, + ACTIONS(1837), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38318,34 +39055,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32078] = 14, + [33042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1843), 12, + anon_sym_SEMI, + 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, + ACTIONS(1841), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [33081] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(758), 1, + ACTIONS(1849), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(827), 1, + STATE(817), 1, sym__function_body, - ACTIONS(1751), 3, + ACTIONS(1845), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(568), 8, + STATE(552), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38354,7 +39129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1753), 9, + ACTIONS(1847), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38364,34 +39139,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32138] = 14, + [33144] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(731), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1855), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1755), 3, + STATE(819), 1, + sym__function_body, + ACTIONS(1851), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(557), 8, + STATE(556), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38400,7 +39177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1757), 9, + ACTIONS(1853), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38410,34 +39187,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32198] = 14, + [33207] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(677), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1861), 1, + sym_null_literal, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1759), 3, + STATE(765), 1, + sym__function_body, + ACTIONS(1857), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(567), 8, + STATE(574), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38446,7 +39225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1761), 9, + ACTIONS(1859), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38456,34 +39235,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32258] = 14, + [33270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 12, + anon_sym_SEMI, + 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, + ACTIONS(1863), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [33309] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1677), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1679), 1, sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(673), 1, + ACTIONS(1871), 1, + sym_null_literal, + STATE(741), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1763), 3, + ACTIONS(1867), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_AT, - STATE(563), 8, + STATE(565), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38492,7 +39309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1765), 9, + ACTIONS(1869), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38502,34 +39319,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32318] = 14, + [33372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1875), 12, + anon_sym_SEMI, + 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, + ACTIONS(1873), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, sym_identifier, - ACTIONS(1695), 1, + [33411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 12, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_asm, - ACTIONS(1703), 1, - sym_builtin_specifier, - ACTIONS(1705), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - STATE(783), 1, - sym__function_body, - ACTIONS(1767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + sym_number_literal, + sym_string_literal, + ACTIONS(1877), 19, + anon_sym_var, + anon_sym_val, + anon_sym_return, + anon_sym_repeat, + anon_sym_if, + anon_sym_do, + anon_sym_while, + sym_break_statement, + sym_continue_statement, + anon_sym_throw, + anon_sym_assert, + anon_sym_try, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + [33450] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + sym_null_literal, + ACTIONS(180), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + ACTIONS(172), 4, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_AT, - STATE(547), 8, + STATE(609), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38538,7 +39421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1769), 9, + ACTIONS(174), 11, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38548,34 +39431,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32378] = 14, + anon_sym_asm, + sym_builtin_specifier, + [33502] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_asm, - ACTIONS(1703), 1, - sym_builtin_specifier, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - STATE(691), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(1771), 3, + ACTIONS(1881), 1, + sym_null_literal, + ACTIONS(187), 6, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_AT, - STATE(540), 8, + anon_sym_DASH_GT, + anon_sym_QMARK, + STATE(609), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -38584,7 +39462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - ACTIONS(1773), 9, + ACTIONS(189), 11, anon_sym_tolk, anon_sym_import, anon_sym_global, @@ -38594,394 +39472,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [32438] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, anon_sym_asm, - ACTIONS(1703), 1, sym_builtin_specifier, - ACTIONS(1705), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(1775), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AT, - STATE(553), 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(1777), 9, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - [32498] = 14, + [33552] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_asm, - ACTIONS(1703), 1, - sym_builtin_specifier, - ACTIONS(1705), 1, - anon_sym_LBRACK, - STATE(743), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(1779), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AT, - STATE(558), 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(1781), 9, + ACTIONS(7), 1, anon_sym_tolk, + ACTIONS(9), 1, anon_sym_import, + ACTIONS(11), 1, anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - [32558] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_asm, - ACTIONS(1703), 1, - sym_builtin_specifier, - ACTIONS(1705), 1, - anon_sym_LBRACK, - STATE(704), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(1783), 3, - ts_builtin_sym_end, + ACTIONS(13), 1, anon_sym_SEMI, - anon_sym_AT, - STATE(562), 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(1785), 9, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + ACTIONS(15), 1, anon_sym_const, + ACTIONS(17), 1, anon_sym_type, + ACTIONS(19), 1, anon_sym_struct, + ACTIONS(21), 1, anon_sym_enum, + ACTIONS(23), 1, anon_sym_fun, + ACTIONS(25), 1, anon_sym_get, - [32618] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_asm, - ACTIONS(1703), 1, - sym_builtin_specifier, - ACTIONS(1705), 1, - anon_sym_LBRACK, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - STATE(802), 1, - sym__function_body, - ACTIONS(1787), 3, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(27), 1, anon_sym_AT, - STATE(556), 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(1789), 9, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - [32678] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_asm, - ACTIONS(1703), 1, - sym_builtin_specifier, - ACTIONS(1705), 1, - anon_sym_LBRACK, - STATE(734), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(1791), 3, + ACTIONS(1883), 1, ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AT, - STATE(548), 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(1793), 9, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - [32738] = 14, + STATE(877), 1, + sym_annotation_list, + STATE(858), 2, + sym_annotation, + aux_sym_annotation_list_repeat1, + STATE(524), 13, + sym__top_level_declaration, + sym_tolk_required_version, + sym_import_directive, + sym_global_var_declaration, + sym_constant_declaration, + sym_type_alias_declaration, + sym_struct_declaration, + sym_enum_declaration, + sym_function_declaration, + sym_method_declaration, + sym_get_method_declaration, + sym_empty_statement, + aux_sym_source_file_repeat1, + [33614] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, + ACTIONS(1887), 1, + anon_sym_COLON, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LT, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1703), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1705), 1, - anon_sym_LBRACK, - STATE(758), 1, + STATE(536), 1, + sym_instantiationT_list, + STATE(570), 1, + sym_type_parameters, + STATE(597), 1, + sym_parameter_list, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(807), 1, + STATE(793), 1, sym__function_body, - ACTIONS(1795), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AT, - STATE(541), 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(1797), 9, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - [32798] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, + ACTIONS(211), 4, anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(181), 2, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_QMARK, - ACTIONS(177), 4, + ACTIONS(1885), 12, ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_AT, - STATE(607), 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(179), 11, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_asm, - sym_builtin_specifier, - [32847] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(167), 6, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_QMARK, - STATE(607), 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(169), 11, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_enum, anon_sym_fun, anon_sym_get, - anon_sym_asm, - sym_builtin_specifier, - [32894] = 15, + anon_sym_AT, + [33674] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1801), 1, - anon_sym_COLON, - ACTIONS(1803), 1, + ACTIONS(1889), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + ACTIONS(1891), 1, anon_sym_LT, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - STATE(531), 1, + ACTIONS(1899), 1, + anon_sym_COLON, + STATE(536), 1, sym_instantiationT_list, - STATE(555), 1, + STATE(557), 1, sym_type_parameters, - STATE(581), 1, + STATE(586), 1, sym_parameter_list, - STATE(756), 1, + STATE(759), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(204), 4, + ACTIONS(211), 4, anon_sym_PIPE, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_QMARK, - ACTIONS(1799), 12, + ACTIONS(1897), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -38994,39 +39610,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [32954] = 16, + [33734] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1901), 1, ts_builtin_sym_end, - ACTIONS(1813), 1, + ACTIONS(1903), 1, anon_sym_tolk, - ACTIONS(1816), 1, + ACTIONS(1906), 1, anon_sym_import, - ACTIONS(1819), 1, + ACTIONS(1909), 1, anon_sym_global, - ACTIONS(1822), 1, + ACTIONS(1912), 1, anon_sym_SEMI, - ACTIONS(1825), 1, + ACTIONS(1915), 1, anon_sym_const, - ACTIONS(1828), 1, + ACTIONS(1918), 1, anon_sym_type, - ACTIONS(1831), 1, + ACTIONS(1921), 1, anon_sym_struct, - ACTIONS(1834), 1, + ACTIONS(1924), 1, anon_sym_enum, - ACTIONS(1837), 1, + ACTIONS(1927), 1, anon_sym_fun, - ACTIONS(1840), 1, + ACTIONS(1930), 1, anon_sym_get, - ACTIONS(1843), 1, + ACTIONS(1933), 1, anon_sym_AT, - STATE(869), 1, + STATE(877), 1, sym_annotation_list, - STATE(854), 2, + STATE(858), 2, sym_annotation, aux_sym_annotation_list_repeat1, - STATE(517), 13, + STATE(524), 13, sym__top_level_declaration, sym_tolk_required_version, sym_import_directive, @@ -39040,107 +39656,54 @@ static const uint16_t ts_small_parse_table[] = { sym_get_method_declaration, sym_empty_statement, aux_sym_source_file_repeat1, - [33016] = 16, + [33796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, - anon_sym_tolk, - ACTIONS(9), 1, - anon_sym_import, - ACTIONS(11), 1, - anon_sym_global, - ACTIONS(13), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + sym_null_literal, + ACTIONS(180), 5, + ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(15), 1, - anon_sym_const, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_struct, - ACTIONS(21), 1, - anon_sym_enum, - ACTIONS(23), 1, - anon_sym_fun, - ACTIONS(25), 1, - anon_sym_get, - ACTIONS(27), 1, anon_sym_AT, - ACTIONS(1846), 1, - ts_builtin_sym_end, - STATE(869), 1, - sym_annotation_list, - STATE(854), 2, - sym_annotation, - aux_sym_annotation_list_repeat1, - STATE(517), 13, - sym__top_level_declaration, - sym_tolk_required_version, - sym_import_directive, - sym_global_var_declaration, - sym_constant_declaration, - sym_type_alias_declaration, - sym_struct_declaration, - sym_enum_declaration, - sym_function_declaration, - sym_method_declaration, - sym_get_method_declaration, - sym_empty_statement, - aux_sym_source_file_repeat1, - [33078] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_LT, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(1850), 1, - anon_sym_COLON, - STATE(531), 1, - sym_instantiationT_list, - STATE(543), 1, - sym_type_parameters, - STATE(587), 1, - sym_parameter_list, - STATE(703), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(204), 4, - anon_sym_PIPE, - anon_sym_DOT, anon_sym_DASH_GT, anon_sym_QMARK, - ACTIONS(1848), 12, - ts_builtin_sym_end, + STATE(609), 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(1936), 9, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_SEMI, anon_sym_const, anon_sym_type, anon_sym_struct, anon_sym_enum, anon_sym_fun, anon_sym_get, - anon_sym_AT, - [33138] = 5, + [33843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(304), 1, anon_sym_EQ, - ACTIONS(1852), 1, + ACTIONS(1939), 1, anon_sym_LT, - STATE(531), 1, + STATE(536), 1, sym_instantiationT_list, - ACTIONS(204), 24, + ACTIONS(211), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39165,48 +39728,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33177] = 8, + [33882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(181), 5, + ACTIONS(319), 1, + anon_sym_EQ, + ACTIONS(321), 24, ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_QMARK, - STATE(607), 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(1854), 9, 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_enum, anon_sym_fun, + anon_sym_DOT, anon_sym_get, - [33221] = 3, + 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, + [33915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(331), 1, anon_sym_EQ, - ACTIONS(383), 24, + ACTIONS(333), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39231,47 +39788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33254] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_PIPE, - ACTIONS(1863), 1, - anon_sym_LPAREN, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1871), 6, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - ACTIONS(1866), 7, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_TILDE, - sym_number_literal, - sym_string_literal, - STATE(878), 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, - [33297] = 3, + [33948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(365), 1, + ACTIONS(347), 1, anon_sym_EQ, - ACTIONS(367), 24, + ACTIONS(349), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39296,25 +39818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33330] = 8, + [33981] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1944), 1, anon_sym_PIPE, - ACTIONS(1863), 1, + ACTIONS(1947), 1, anon_sym_LPAREN, - ACTIONS(1868), 1, + ACTIONS(1952), 1, anon_sym_LBRACK, - ACTIONS(1871), 6, + ACTIONS(1957), 1, + sym_null_literal, + ACTIONS(1955), 5, anon_sym_lazy, anon_sym_match, anon_sym_true, anon_sym_false, - sym_null_literal, sym_underscore, - ACTIONS(1866), 7, + ACTIONS(1950), 7, anon_sym_LBRACE, anon_sym_DASH, anon_sym_PLUS, @@ -39322,7 +39845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - STATE(884), 8, + STATE(902), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -39331,12 +39854,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33373] = 3, + [34026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(369), 1, + ACTIONS(408), 1, anon_sym_EQ, - ACTIONS(371), 24, + ACTIONS(390), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39361,12 +39884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33406] = 3, + [34059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(339), 1, anon_sym_EQ, - ACTIONS(375), 24, + ACTIONS(341), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39391,12 +39914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33439] = 3, + [34092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(343), 1, anon_sym_EQ, - ACTIONS(379), 24, + ACTIONS(345), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39421,12 +39944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33472] = 3, + [34125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(355), 1, + ACTIONS(351), 1, anon_sym_EQ, - ACTIONS(327), 24, + ACTIONS(353), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39451,42 +39974,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33505] = 3, + [34158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, - anon_sym_EQ, - ACTIONS(335), 24, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_SEMI, - anon_sym_const, - anon_sym_type, + ACTIONS(1941), 1, + sym_identifier, + ACTIONS(1944), 1, anon_sym_PIPE, - anon_sym_struct, - anon_sym_RPAREN, + ACTIONS(1947), 1, + anon_sym_LPAREN, + ACTIONS(1952), 1, + anon_sym_LBRACK, + ACTIONS(1960), 1, + sym_null_literal, + ACTIONS(1955), 5, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_underscore, + ACTIONS(1950), 7, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_enum, - 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, - [33538] = 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + sym_number_literal, + sym_string_literal, + STATE(894), 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, + [34203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(302), 1, + ACTIONS(323), 1, anon_sym_EQ, - ACTIONS(304), 24, + ACTIONS(325), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39511,12 +40040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33571] = 3, + [34236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(327), 1, anon_sym_EQ, - ACTIONS(359), 24, + ACTIONS(329), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39541,25 +40070,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33604] = 8, + [34269] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1944), 1, anon_sym_PIPE, - ACTIONS(1863), 1, + ACTIONS(1947), 1, anon_sym_LPAREN, - ACTIONS(1868), 1, + ACTIONS(1952), 1, anon_sym_LBRACK, - ACTIONS(1871), 6, + ACTIONS(1963), 1, + sym_null_literal, + ACTIONS(1955), 5, anon_sym_lazy, anon_sym_match, anon_sym_true, anon_sym_false, - sym_null_literal, sym_underscore, - ACTIONS(1866), 7, + ACTIONS(1950), 7, anon_sym_LBRACE, anon_sym_DASH, anon_sym_PLUS, @@ -39567,7 +40097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - STATE(889), 8, + STATE(903), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -39576,12 +40106,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [33647] = 3, + [34314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(335), 1, anon_sym_EQ, - ACTIONS(363), 24, + ACTIONS(337), 24, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39606,32 +40136,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_EQ_GT, - [33680] = 13, + [34347] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, + ACTIONS(1889), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1875), 1, + ACTIONS(1968), 1, anon_sym_COLON, - ACTIONS(1877), 1, + ACTIONS(1970), 1, anon_sym_LT, - STATE(560), 1, + STATE(551), 1, sym_type_parameters, - STATE(586), 1, + STATE(594), 1, sym_parameter_list, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(775), 1, + STATE(849), 1, sym__function_body, - ACTIONS(1873), 12, + ACTIONS(1966), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39644,32 +40174,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [33731] = 13, + [34398] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(174), 1, + anon_sym_EQ, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, + sym_null_literal, + ACTIONS(180), 2, + anon_sym_DASH_GT, + anon_sym_QMARK, + ACTIONS(172), 7, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(1803), 1, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_GT, + anon_sym_RBRACK, + anon_sym_EQ_GT, + STATE(855), 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, + [34443] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(189), 1, + anon_sym_EQ, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, + sym_null_literal, + STATE(855), 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(187), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + [34486] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1877), 1, + ACTIONS(1970), 1, anon_sym_LT, - ACTIONS(1881), 1, + ACTIONS(1976), 1, anon_sym_COLON, - STATE(554), 1, + STATE(553), 1, sym_type_parameters, STATE(595), 1, sym_parameter_list, - STATE(672), 1, + STATE(734), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1879), 12, + ACTIONS(1974), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39682,93 +40281,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [33782] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(179), 1, - anon_sym_EQ, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(181), 2, - anon_sym_DASH_GT, - anon_sym_QMARK, - ACTIONS(177), 7, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_GT, - anon_sym_RBRACK, - anon_sym_EQ_GT, - STATE(849), 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, - [33824] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(169), 1, - anon_sym_EQ, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(849), 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), 9, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_GT, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - [33864] = 11, + [34537] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, + ACTIONS(1889), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1887), 1, + ACTIONS(1980), 1, anon_sym_COLON, - STATE(599), 1, + STATE(602), 1, sym_parameter_list, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(764), 1, + STATE(775), 1, sym__function_body, - ACTIONS(1885), 12, + ACTIONS(1978), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39781,28 +40315,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [33909] = 11, + [34582] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(1891), 1, - anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_LPAREN, ACTIONS(1893), 1, - anon_sym_DASH_GT, + anon_sym_asm, ACTIONS(1895), 1, - anon_sym_QMARK, - STATE(687), 1, + sym_builtin_specifier, + ACTIONS(1984), 1, + anon_sym_COLON, + STATE(598), 1, + sym_parameter_list, + STATE(729), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1889), 12, + ACTIONS(1982), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39815,28 +40349,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [33954] = 11, + [34627] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(738), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1897), 12, + STATE(834), 1, + sym__function_body, + ACTIONS(1986), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39849,28 +40383,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [33999] = 11, + [34672] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(753), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1899), 12, + STATE(835), 1, + sym__function_body, + ACTIONS(1994), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39883,28 +40417,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34044] = 11, + [34717] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, + ACTIONS(1889), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1903), 1, + ACTIONS(1998), 1, anon_sym_COLON, - STATE(603), 1, + STATE(596), 1, sym_parameter_list, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(772), 1, + STATE(802), 1, sym__function_body, - ACTIONS(1901), 12, + ACTIONS(1996), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39917,28 +40451,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34089] = 11, + [34762] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(776), 1, + STATE(783), 1, sym__function_body, - ACTIONS(1905), 12, + ACTIONS(2000), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39951,28 +40485,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34134] = 11, + [34807] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1909), 1, - anon_sym_COLON, - STATE(588), 1, - sym_parameter_list, - STATE(758), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(778), 1, + STATE(847), 1, sym__function_body, - ACTIONS(1907), 12, + ACTIONS(2002), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -39985,28 +40519,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34179] = 11, + [34852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(1891), 1, - anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_LPAREN, ACTIONS(1893), 1, - anon_sym_DASH_GT, + anon_sym_asm, ACTIONS(1895), 1, - anon_sym_QMARK, - STATE(754), 1, - sym__function_body, - STATE(758), 1, + sym_builtin_specifier, + ACTIONS(2006), 1, + anon_sym_COLON, + STATE(587), 1, + sym_parameter_list, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1911), 12, + STATE(779), 1, + sym__function_body, + ACTIONS(2004), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40019,28 +40553,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34224] = 11, + [34897] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(686), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1913), 12, + STATE(838), 1, + sym__function_body, + ACTIONS(2008), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40053,28 +40587,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34269] = 11, + [34942] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(1891), 1, - anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_LPAREN, ACTIONS(1893), 1, - anon_sym_DASH_GT, + anon_sym_asm, ACTIONS(1895), 1, - anon_sym_QMARK, - STATE(758), 1, + sym_builtin_specifier, + ACTIONS(2012), 1, + anon_sym_COLON, + STATE(601), 1, + sym_parameter_list, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(805), 1, + STATE(851), 1, sym__function_body, - ACTIONS(1915), 12, + ACTIONS(2010), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40087,28 +40621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34314] = 11, + [34987] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(810), 1, + STATE(796), 1, sym__function_body, - ACTIONS(1917), 12, + ACTIONS(2014), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40121,28 +40655,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34359] = 11, + [35032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(811), 1, + STATE(797), 1, sym__function_body, - ACTIONS(1919), 12, + ACTIONS(2016), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40155,28 +40689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34404] = 11, + [35077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(825), 1, + STATE(840), 1, sym__function_body, - ACTIONS(1921), 12, + ACTIONS(2018), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40189,28 +40723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34449] = 11, + [35122] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(1891), 1, - anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_LPAREN, ACTIONS(1893), 1, - anon_sym_DASH_GT, + anon_sym_asm, ACTIONS(1895), 1, - anon_sym_QMARK, - STATE(758), 1, + sym_builtin_specifier, + ACTIONS(2022), 1, + anon_sym_COLON, + STATE(593), 1, + sym_parameter_list, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(833), 1, + STATE(792), 1, sym__function_body, - ACTIONS(1923), 12, + ACTIONS(2020), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40223,28 +40757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34494] = 11, + [35167] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(748), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(760), 1, - sym__function_body, - ACTIONS(1925), 12, + ACTIONS(2024), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40257,28 +40791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34539] = 11, + [35212] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, + ACTIONS(1889), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1929), 1, + ACTIONS(2028), 1, anon_sym_COLON, - STATE(590), 1, + STATE(604), 1, sym_parameter_list, - STATE(742), 1, + STATE(744), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1927), 12, + ACTIONS(2026), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40291,28 +40825,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34584] = 11, + [35257] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1933), 1, - anon_sym_COLON, - STATE(600), 1, - sym_parameter_list, - STATE(758), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + STATE(750), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(761), 1, - sym__function_body, - ACTIONS(1931), 12, + ACTIONS(2030), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40325,28 +40859,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34629] = 11, + [35302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(706), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1935), 12, + STATE(811), 1, + sym__function_body, + ACTIONS(2032), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40359,28 +40893,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34674] = 11, + [35347] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(725), 1, + STATE(751), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1937), 12, + ACTIONS(2034), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40393,28 +40927,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34719] = 11, + [35392] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(702), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1939), 12, + STATE(773), 1, + sym__function_body, + ACTIONS(2036), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40427,28 +40961,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34764] = 11, + [35437] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(784), 1, + STATE(800), 1, sym__function_body, - ACTIONS(1941), 12, + ACTIONS(2038), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40461,28 +40995,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34809] = 11, + [35482] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1945), 1, - anon_sym_COLON, - STATE(594), 1, - sym_parameter_list, - STATE(758), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + STATE(755), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(808), 1, - sym__function_body, - ACTIONS(1943), 12, + ACTIONS(2040), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40495,28 +41029,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34854] = 11, + [35527] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(797), 1, + STATE(801), 1, sym__function_body, - ACTIONS(1947), 12, + ACTIONS(2042), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40529,28 +41063,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34899] = 11, + [35572] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(847), 1, + STATE(829), 1, sym__function_body, - ACTIONS(1949), 12, + ACTIONS(2044), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40563,28 +41097,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34944] = 11, + [35617] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(683), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1951), 12, + STATE(813), 1, + sym__function_body, + ACTIONS(2046), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40597,28 +41131,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [34989] = 11, + [35662] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(803), 1, + STATE(814), 1, sym__function_body, - ACTIONS(1953), 12, + ACTIONS(2048), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40631,28 +41165,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35034] = 11, + [35707] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(1891), 1, - anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_LPAREN, ACTIONS(1893), 1, - anon_sym_DASH_GT, + anon_sym_asm, ACTIONS(1895), 1, - anon_sym_QMARK, - STATE(758), 1, + sym_builtin_specifier, + ACTIONS(2052), 1, + anon_sym_COLON, + STATE(590), 1, + sym_parameter_list, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(804), 1, + STATE(843), 1, sym__function_body, - ACTIONS(1955), 12, + ACTIONS(2050), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40665,28 +41199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35079] = 11, + [35752] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(809), 1, + STATE(764), 1, sym__function_body, - ACTIONS(1957), 12, + ACTIONS(2054), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40699,28 +41233,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35124] = 11, + [35797] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(748), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1959), 12, + STATE(818), 1, + sym__function_body, + ACTIONS(2056), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40733,28 +41267,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35169] = 11, + [35842] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(817), 1, + STATE(820), 1, sym__function_body, - ACTIONS(1961), 12, + ACTIONS(2058), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40767,28 +41301,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35214] = 11, + [35887] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1965), 1, - anon_sym_COLON, - STATE(592), 1, - sym_parameter_list, - STATE(708), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + STATE(757), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1963), 12, + ACTIONS(2060), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40801,28 +41335,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35259] = 11, + [35932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(1969), 1, - anon_sym_COLON, - STATE(597), 1, - sym_parameter_list, - STATE(675), 1, - sym__function_body, - STATE(758), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(1967), 12, + STATE(828), 1, + sym__function_body, + ACTIONS(2062), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -40835,12 +41369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35304] = 4, + [35977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 1, + ACTIONS(2068), 1, anon_sym_COMMA, - ACTIONS(1971), 8, + ACTIONS(2064), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -40849,7 +41383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1973), 11, + ACTIONS(2066), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -40861,12 +41395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35334] = 4, + [36007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, + ACTIONS(2074), 1, anon_sym_COMMA, - ACTIONS(1977), 8, + ACTIONS(2070), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -40875,7 +41409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1979), 11, + ACTIONS(2072), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -40887,12 +41421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35364] = 4, + [36037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(2080), 1, anon_sym_COMMA, - ACTIONS(1983), 8, + ACTIONS(2076), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -40901,7 +41435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1985), 11, + ACTIONS(2078), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -40913,12 +41447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35394] = 4, + [36067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1993), 1, + ACTIONS(2086), 1, anon_sym_COMMA, - ACTIONS(1989), 8, + ACTIONS(2082), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -40927,7 +41461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1991), 11, + ACTIONS(2084), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -40939,12 +41473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35424] = 4, + [36097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 1, + ACTIONS(2092), 1, anon_sym_COMMA, - ACTIONS(1995), 8, + ACTIONS(2088), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -40953,7 +41487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(1997), 11, + ACTIONS(2090), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -40965,12 +41499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35454] = 4, + [36127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2005), 1, + ACTIONS(2098), 1, anon_sym_COMMA, - ACTIONS(2001), 8, + ACTIONS(2094), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -40979,7 +41513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2003), 11, + ACTIONS(2096), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -40991,12 +41525,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35484] = 4, + [36157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(2007), 8, + ACTIONS(2100), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41005,7 +41539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2009), 11, + ACTIONS(2102), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41017,12 +41551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35514] = 4, + [36187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, + ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2013), 8, + ACTIONS(2106), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41031,7 +41565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2015), 11, + ACTIONS(2108), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41043,12 +41577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35544] = 4, + [36217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2116), 1, anon_sym_COMMA, - ACTIONS(2019), 8, + ACTIONS(2112), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41057,7 +41591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2021), 11, + ACTIONS(2114), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41069,10 +41603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35574] = 3, + [36247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 8, + ACTIONS(2118), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41081,7 +41615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2027), 11, + ACTIONS(2120), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41093,24 +41627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35601] = 9, + [36274] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2031), 1, + ACTIONS(2124), 1, anon_sym_COLON, - STATE(671), 1, + STATE(731), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(2029), 12, + ACTIONS(2122), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41123,10 +41657,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35640] = 3, + [36313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 8, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1893), 1, + anon_sym_asm, + ACTIONS(1895), 1, + sym_builtin_specifier, + ACTIONS(2128), 1, + anon_sym_COLON, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(816), 1, + sym__function_body, + ACTIONS(2126), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [36352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41135,7 +41699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2035), 11, + ACTIONS(2132), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41147,10 +41711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35667] = 3, + [36379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 8, + ACTIONS(2134), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41159,7 +41723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2039), 11, + ACTIONS(2136), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41171,10 +41735,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35694] = 3, + [36406] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 8, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1893), 1, + anon_sym_asm, + ACTIONS(1895), 1, + sym_builtin_specifier, + ACTIONS(2140), 1, + anon_sym_COLON, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(776), 1, + sym__function_body, + ACTIONS(2138), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [36445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41183,7 +41777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2043), 11, + ACTIONS(2144), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41195,10 +41789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35721] = 3, + [36472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 8, + ACTIONS(2146), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41207,7 +41801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2047), 11, + ACTIONS(2148), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41219,24 +41813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35748] = 9, + [36499] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2051), 1, + ACTIONS(2152), 1, anon_sym_COLON, - STATE(735), 1, - sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(2049), 12, + STATE(822), 1, + sym__function_body, + ACTIONS(2150), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41249,24 +41843,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35787] = 9, + [36538] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2055), 1, + ACTIONS(2156), 1, anon_sym_COLON, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(774), 1, + STATE(780), 1, sym__function_body, - ACTIONS(2053), 12, + ACTIONS(2154), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41279,24 +41873,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35826] = 9, + [36577] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2059), 1, + ACTIONS(2160), 1, anon_sym_COLON, - STATE(758), 1, + STATE(740), 1, + sym__function_body, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(796), 1, + ACTIONS(2158), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [36616] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1893), 1, + anon_sym_asm, + ACTIONS(1895), 1, + sym_builtin_specifier, + ACTIONS(2164), 1, + anon_sym_COLON, + STATE(733), 1, sym__function_body, - ACTIONS(2057), 12, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + ACTIONS(2162), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41309,48 +41933,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35865] = 3, + [36655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 8, - anon_sym_else, - anon_sym_lazy, - anon_sym_match, - anon_sym_true, - anon_sym_false, - sym_null_literal, - sym_underscore, - sym_identifier, - ACTIONS(2063), 11, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(1675), 1, 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, - [35892] = 9, + ACTIONS(1893), 1, + anon_sym_asm, + ACTIONS(1895), 1, + sym_builtin_specifier, + ACTIONS(2168), 1, + anon_sym_COLON, + STATE(761), 1, + sym_asm_body, + STATE(762), 1, + sym_block_statement, + STATE(846), 1, + sym__function_body, + ACTIONS(2166), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [36694] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2067), 1, + ACTIONS(2172), 1, anon_sym_COLON, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - STATE(821), 1, + STATE(782), 1, sym__function_body, - ACTIONS(2065), 12, + ACTIONS(2170), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41363,10 +41993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [35931] = 3, + [36733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 8, + ACTIONS(2174), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41375,7 +42005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2071), 11, + ACTIONS(2176), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41387,40 +42017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [35958] = 9, + [36760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(2075), 1, - anon_sym_COLON, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - STATE(785), 1, - sym__function_body, - ACTIONS(2073), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [35997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2077), 8, + ACTIONS(2178), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41429,7 +42029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2079), 11, + ACTIONS(2180), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41441,24 +42041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [36024] = 9, + [36787] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2083), 1, + ACTIONS(2184), 1, anon_sym_COLON, - STATE(694), 1, + STATE(753), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(2081), 12, + ACTIONS(2182), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41471,24 +42071,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36063] = 9, + [36826] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2087), 1, + ACTIONS(2188), 1, anon_sym_COLON, - STATE(745), 1, + STATE(746), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(2085), 12, + ACTIONS(2186), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41501,10 +42101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36102] = 3, + [36865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 8, + ACTIONS(2190), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41513,7 +42113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2091), 11, + ACTIONS(2192), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41525,24 +42125,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [36129] = 9, + [36892] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1893), 1, anon_sym_asm, - ACTIONS(1809), 1, + ACTIONS(1895), 1, sym_builtin_specifier, - ACTIONS(2095), 1, + ACTIONS(2196), 1, anon_sym_COLON, STATE(747), 1, sym__function_body, - STATE(758), 1, + STATE(761), 1, sym_asm_body, - STATE(759), 1, + STATE(762), 1, sym_block_statement, - ACTIONS(2093), 12, + ACTIONS(2194), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41555,10 +42155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36168] = 3, + [36931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 8, + ACTIONS(2198), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41567,7 +42167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2099), 11, + ACTIONS(2200), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41579,70 +42179,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [36195] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(2103), 1, - anon_sym_COLON, - STATE(679), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(2101), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [36234] = 9, + [36958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(2202), 8, + anon_sym_else, + anon_sym_lazy, + anon_sym_match, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym_underscore, + sym_identifier, + ACTIONS(2204), 11, + anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(2107), 1, - anon_sym_COLON, - STATE(736), 1, - sym__function_body, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - ACTIONS(2105), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [36273] = 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, + sym_number_literal, + sym_string_literal, + [36985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 8, + ACTIONS(2206), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41651,7 +42215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2111), 11, + ACTIONS(2208), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41663,10 +42227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [36300] = 3, + [37012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 8, + ACTIONS(2210), 8, anon_sym_else, anon_sym_lazy, anon_sym_match, @@ -41675,7 +42239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_literal, sym_underscore, sym_identifier, - ACTIONS(2115), 11, + ACTIONS(2212), 11, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_LBRACE, @@ -41687,24 +42251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_number_literal, sym_string_literal, - [36327] = 9, + [37039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1807), 1, - anon_sym_asm, - ACTIONS(1809), 1, - sym_builtin_specifier, - ACTIONS(2119), 1, - anon_sym_COLON, - STATE(758), 1, - sym_asm_body, - STATE(759), 1, - sym_block_statement, - STATE(768), 1, - sym__function_body, - ACTIONS(2117), 12, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(357), 16, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41713,28 +42267,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_type, anon_sym_struct, + anon_sym_LBRACE, anon_sym_enum, anon_sym_fun, anon_sym_get, anon_sym_AT, - [36366] = 5, + anon_sym_asm, + anon_sym_DASH_GT, + sym_builtin_specifier, + [37067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, - anon_sym_DASH_GT, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(393), 15, + ACTIONS(2216), 18, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, + anon_sym_COLON, anon_sym_SEMI, anon_sym_const, + anon_sym_EQ, anon_sym_type, anon_sym_struct, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_enum, anon_sym_fun, @@ -41742,21 +42297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36396] = 2, + [37091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 18, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(365), 15, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, anon_sym_global, - anon_sym_COLON, anon_sym_SEMI, anon_sym_const, - anon_sym_EQ, anon_sym_type, anon_sym_struct, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_enum, anon_sym_fun, @@ -41764,10 +42322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36420] = 2, + [37121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 18, + ACTIONS(2218), 18, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41786,40 +42344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36444] = 4, + [37145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2125), 1, - anon_sym_PIPE, - ACTIONS(387), 16, - 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_LBRACE, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - anon_sym_asm, - anon_sym_DASH_GT, - sym_builtin_specifier, - [36472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(312), 1, + ACTIONS(377), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2127), 1, + ACTIONS(2220), 1, anon_sym_PIPE, - ACTIONS(308), 15, + ACTIONS(373), 15, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41835,10 +42369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36502] = 2, + [37175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 18, + ACTIONS(2222), 18, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41857,10 +42391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36526] = 2, + [37199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 18, + ACTIONS(2224), 18, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41879,20 +42413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36550] = 7, + [37223] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2135), 1, + ACTIONS(2228), 1, anon_sym_LBRACE, - STATE(746), 1, + STATE(772), 1, sym_enum_body, - ACTIONS(2133), 12, + ACTIONS(2226), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41905,20 +42439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36583] = 7, + [37256] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2135), 1, + ACTIONS(2228), 1, anon_sym_LBRACE, - STATE(723), 1, + STATE(825), 1, sym_enum_body, - ACTIONS(2137), 12, + ACTIONS(2230), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41931,58 +42465,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36616] = 6, + [37289] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_LT, - ACTIONS(2141), 1, - anon_sym_LBRACE, - STATE(641), 1, - sym_type_parameters, - STATE(680), 1, - sym_struct_body, - ACTIONS(2139), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [36646] = 6, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(2234), 1, + anon_sym_COMMA, + ACTIONS(2236), 1, + anon_sym_GT, + ACTIONS(2238), 1, + sym_null_literal, + STATE(1011), 1, + sym_type_parameter, + STATE(897), 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, + [37327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_LT, - ACTIONS(2141), 1, - anon_sym_LBRACE, - STATE(646), 1, - sym_type_parameters, - STATE(699), 1, - sym_struct_body, - ACTIONS(2143), 12, + ACTIONS(2240), 16, 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_LBRACE, anon_sym_enum, anon_sym_fun, anon_sym_get, anon_sym_AT, - [36676] = 2, + anon_sym_asm, + sym_builtin_specifier, + [37349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 16, + ACTIONS(2242), 16, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -41999,18 +42533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36698] = 6, + [37371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(1970), 1, anon_sym_LT, - ACTIONS(2141), 1, + ACTIONS(2246), 1, anon_sym_LBRACE, - STATE(638), 1, + STATE(649), 1, sym_type_parameters, - STATE(728), 1, + STATE(842), 1, sym_struct_body, - ACTIONS(2147), 12, + ACTIONS(2244), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42023,18 +42557,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36728] = 6, + [37401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(1970), 1, anon_sym_LT, - ACTIONS(2141), 1, + ACTIONS(2246), 1, anon_sym_LBRACE, - STATE(640), 1, + STATE(656), 1, sym_type_parameters, - STATE(792), 1, + STATE(791), 1, sym_struct_body, - ACTIONS(2149), 12, + ACTIONS(2248), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42047,10 +42581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36758] = 2, + [37431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2151), 16, + ACTIONS(2250), 16, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42067,81 +42601,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_asm, sym_builtin_specifier, - [36780] = 2, + [37453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 16, + ACTIONS(1970), 1, + anon_sym_LT, + ACTIONS(2246), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_type_parameters, + STATE(739), 1, + sym_struct_body, + ACTIONS(2252), 12, 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_LBRACE, anon_sym_enum, anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_asm, - sym_builtin_specifier, - [36802] = 2, + [37483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 16, + ACTIONS(1970), 1, + anon_sym_LT, + ACTIONS(2246), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_type_parameters, + STATE(810), 1, + sym_struct_body, + ACTIONS(2254), 12, 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_LBRACE, anon_sym_enum, anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_asm, - sym_builtin_specifier, - [36824] = 6, + [37513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, - anon_sym_DASH_GT, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2159), 1, - anon_sym_SEMI, - ACTIONS(2157), 11, + ACTIONS(2256), 16, 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_LBRACE, anon_sym_enum, anon_sym_fun, anon_sym_get, anon_sym_AT, - [36853] = 6, + anon_sym_asm, + sym_builtin_specifier, + [37535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(2260), 1, anon_sym_SEMI, - ACTIONS(2161), 11, + ACTIONS(2258), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42153,18 +42692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36882] = 6, + [37564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2167), 1, + ACTIONS(2264), 1, anon_sym_SEMI, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2165), 11, + ACTIONS(2262), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42176,18 +42715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36911] = 6, + [37593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2173), 1, + ACTIONS(2268), 1, anon_sym_SEMI, - ACTIONS(2171), 11, + ACTIONS(2266), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42199,19 +42738,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36940] = 4, + [37622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2175), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(312), 13, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2272), 1, + anon_sym_SEMI, + ACTIONS(2270), 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, @@ -42219,22 +42761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_DASH_GT, - [36965] = 5, + [37651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_LBRACE, - ACTIONS(2179), 1, - anon_sym_COLON, - STATE(730), 1, - sym_enum_body, - ACTIONS(2177), 12, + ACTIONS(1988), 1, + anon_sym_PIPE, + ACTIONS(1990), 1, + anon_sym_DASH_GT, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2276), 1, + anon_sym_SEMI, + ACTIONS(2274), 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, @@ -42242,18 +42784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [36992] = 6, + [37680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2183), 1, + ACTIONS(2280), 1, anon_sym_SEMI, - ACTIONS(2181), 11, + ACTIONS(2282), 1, + anon_sym_PIPE, + ACTIONS(2278), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42265,18 +42807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37021] = 6, + [37709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2169), 1, + ACTIONS(2282), 1, anon_sym_PIPE, - ACTIONS(2187), 1, + ACTIONS(2286), 1, anon_sym_SEMI, - ACTIONS(2185), 11, + ACTIONS(2284), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42288,18 +42830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37050] = 6, + [37738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2191), 1, + ACTIONS(2290), 1, anon_sym_SEMI, - ACTIONS(2189), 11, + ACTIONS(2288), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42311,16 +42853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37079] = 5, + [37767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(2228), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(701), 1, + STATE(732), 1, sym_enum_body, - ACTIONS(2193), 12, + ACTIONS(2292), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42333,22 +42875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37106] = 6, + [37794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, - anon_sym_DASH_GT, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2199), 1, - anon_sym_SEMI, - ACTIONS(2197), 11, + ACTIONS(2228), 1, + anon_sym_LBRACE, + ACTIONS(2298), 1, + anon_sym_COLON, + STATE(852), 1, + sym_enum_body, + ACTIONS(2296), 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, @@ -42356,44 +42897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37135] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(2201), 1, - sym_identifier, - ACTIONS(2203), 1, - anon_sym_COMMA, - ACTIONS(2205), 1, - anon_sym_GT, - STATE(936), 1, - sym_type_parameter, - STATE(897), 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, - [37170] = 6, + [37821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2209), 1, + ACTIONS(2282), 1, + anon_sym_PIPE, + ACTIONS(2302), 1, anon_sym_SEMI, - ACTIONS(2207), 11, + ACTIONS(2300), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42405,18 +42920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37199] = 6, + [37850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1990), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2169), 1, + ACTIONS(2282), 1, anon_sym_PIPE, - ACTIONS(2213), 1, + ACTIONS(2306), 1, anon_sym_SEMI, - ACTIONS(2211), 11, + ACTIONS(2304), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42428,10 +42943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37228] = 2, + [37879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1613), 14, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2308), 1, + anon_sym_PIPE, + ACTIONS(377), 13, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42444,21 +42963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_while, - anon_sym_catch, - [37248] = 4, + anon_sym_DASH_GT, + [37904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2312), 1, + anon_sym_SEMI, + ACTIONS(2314), 1, sym_string_literal, - STATE(636), 1, + STATE(641), 1, aux_sym_asm_body_repeat3, - ACTIONS(2215), 12, + ACTIONS(2310), 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, @@ -42466,20 +42985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37272] = 5, + [37930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, - anon_sym_SEMI, - ACTIONS(2224), 1, + ACTIONS(2318), 1, sym_string_literal, - STATE(636), 1, + STATE(641), 1, aux_sym_asm_body_repeat3, - ACTIONS(2220), 11, + ACTIONS(2316), 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, @@ -42487,14 +43005,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37298] = 4, + [37954] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_struct_body, - ACTIONS(2226), 12, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2321), 1, + anon_sym_PIPE, + ACTIONS(2323), 1, + sym_builtin_specifier, + ACTIONS(2325), 1, + sym_null_literal, + STATE(630), 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, + [37986] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2329), 1, + sym_null_literal, + STATE(1078), 1, + sym_method_receiver, + STATE(928), 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, + [38018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1657), 14, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42507,16 +43069,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37322] = 5, + anon_sym_while, + anon_sym_catch, + [38038] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2331), 1, + anon_sym_PIPE, + ACTIONS(2333), 1, + sym_builtin_specifier, + ACTIONS(2335), 1, + sym_null_literal, + STATE(628), 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, + [38070] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2337), 1, + sym_builtin_specifier, + ACTIONS(2339), 1, + sym_null_literal, + STATE(637), 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, + [38102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + sym_builtin_specifier, + ACTIONS(2345), 1, + sym_null_literal, + STATE(634), 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, + [38134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 1, sym_string_literal, - ACTIONS(2230), 1, + ACTIONS(2349), 1, anon_sym_SEMI, - STATE(636), 1, + STATE(641), 1, aux_sym_asm_body_repeat3, - ACTIONS(2228), 11, + ACTIONS(2347), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42528,14 +43164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37348] = 4, + [38160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(2246), 1, anon_sym_LBRACE, - STATE(685), 1, + STATE(736), 1, sym_struct_body, - ACTIONS(2232), 12, + ACTIONS(2351), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42548,14 +43184,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37372] = 4, + [38184] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + sym_null_literal, + ACTIONS(2353), 1, + sym_identifier, + STATE(1060), 1, + sym_method_receiver, + STATE(928), 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, + [38216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(2246), 1, anon_sym_LBRACE, - STATE(752), 1, + STATE(787), 1, sym_struct_body, - ACTIONS(2234), 12, + ACTIONS(2355), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42568,31 +43228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_string_literal, - ACTIONS(2238), 1, - anon_sym_SEMI, - STATE(636), 1, - aux_sym_asm_body_repeat3, - ACTIONS(2236), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [37422] = 2, + [38240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 14, + ACTIONS(1639), 14, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42607,16 +43246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_while, anon_sym_catch, - [37442] = 5, + [38260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, + ACTIONS(2314), 1, sym_string_literal, - ACTIONS(2242), 1, + ACTIONS(2359), 1, anon_sym_SEMI, - STATE(636), 1, + STATE(641), 1, aux_sym_asm_body_repeat3, - ACTIONS(2240), 11, + ACTIONS(2357), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42628,51 +43267,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [37468] = 5, + [38286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, - sym_string_literal, - ACTIONS(2246), 1, - anon_sym_SEMI, - STATE(636), 1, - aux_sym_asm_body_repeat3, - ACTIONS(2244), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [37494] = 4, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_builtin_specifier, + ACTIONS(2363), 1, + sym_null_literal, + STATE(633), 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, + [38318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_struct_body, - ACTIONS(2248), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [37518] = 2, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2365), 1, + anon_sym_PIPE, + ACTIONS(2367), 1, + sym_builtin_specifier, + ACTIONS(2369), 1, + sym_null_literal, + STATE(631), 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, + [38350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 14, + ACTIONS(2246), 1, + anon_sym_LBRACE, + STATE(839), 1, + sym_struct_body, + ACTIONS(2371), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -42685,22 +43335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - anon_sym_while, - anon_sym_catch, - [37538] = 7, + [38374] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2250), 1, + ACTIONS(2373), 1, anon_sym_RPAREN, - STATE(886), 8, + ACTIONS(2375), 1, + sym_null_literal, + STATE(891), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42709,20 +43359,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37567] = 7, + [38406] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2252), 1, + ACTIONS(2377), 1, anon_sym_RPAREN, - STATE(891), 8, + ACTIONS(2379), 1, + sym_null_literal, + STATE(883), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42731,20 +43383,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37596] = 7, + [38438] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2381), 1, anon_sym_RBRACK, - STATE(892), 8, + ACTIONS(2383), 1, + sym_null_literal, + STATE(884), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42753,20 +43407,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37625] = 7, + [38470] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2256), 1, - anon_sym_RPAREN, - STATE(895), 8, + ACTIONS(2385), 1, + anon_sym_RBRACK, + ACTIONS(2387), 1, + sym_null_literal, + STATE(899), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42775,20 +43431,63 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37654] = 7, + [38502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2314), 1, + sym_string_literal, + ACTIONS(2391), 1, + anon_sym_SEMI, + STATE(641), 1, + aux_sym_asm_body_repeat3, + ACTIONS(2389), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [38528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym_struct_body, + ACTIONS(2393), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [38552] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2258), 1, - anon_sym_RBRACK, - STATE(896), 8, + ACTIONS(2395), 1, + sym_builtin_specifier, + ACTIONS(2397), 1, + sym_null_literal, + STATE(638), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42797,20 +43496,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37683] = 7, + [38584] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2260), 1, - sym_identifier, - STATE(1084), 1, - sym_method_receiver, - STATE(922), 8, + ACTIONS(2399), 1, + anon_sym_RPAREN, + ACTIONS(2401), 1, + sym_null_literal, + STATE(901), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42819,20 +43520,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37712] = 7, + [38616] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2262), 1, - anon_sym_PIPE, - ACTIONS(2264), 1, - sym_builtin_specifier, - STATE(633), 8, + ACTIONS(2403), 1, + anon_sym_RBRACK, + ACTIONS(2405), 1, + sym_null_literal, + STATE(900), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42841,20 +43544,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37741] = 7, + [38648] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2407), 1, anon_sym_RPAREN, - STATE(885), 8, + ACTIONS(2409), 1, + sym_null_literal, + STATE(889), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42863,21 +43568,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37770] = 7, + [38680] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, - anon_sym_PIPE, - ACTIONS(2270), 1, - sym_builtin_specifier, - STATE(622), 8, - sym__type_hint, + ACTIONS(2411), 1, + anon_sym_RBRACK, + ACTIONS(2413), 1, + sym_null_literal, + STATE(890), 8, + sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, sym_tuple_type, @@ -42885,20 +43592,43 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37799] = 7, + [38712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 1, + sym_string_literal, + ACTIONS(2417), 1, + anon_sym_SEMI, + STATE(641), 1, + aux_sym_asm_body_repeat3, + ACTIONS(2415), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [38738] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2272), 1, + ACTIONS(2419), 1, anon_sym_RPAREN, - STATE(877), 8, + ACTIONS(2421), 1, + sym_null_literal, + STATE(887), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42907,20 +43637,1054 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37828] = 7, + [38770] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_RBRACK, + ACTIONS(2425), 1, + sym_null_literal, + STATE(892), 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, + [38802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1635), 14, + 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + anon_sym_while, + anon_sym_catch, + [38822] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1671), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + sym_builtin_specifier, + ACTIONS(2429), 1, + sym_null_literal, + STATE(632), 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, + [38854] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + sym_null_literal, + STATE(885), 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, + [38883] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, + anon_sym_PIPE, + ACTIONS(2435), 1, + sym_null_literal, + STATE(264), 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, + [38912] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, + anon_sym_PIPE, + ACTIONS(2437), 1, + sym_null_literal, + STATE(265), 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, + [38941] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, + anon_sym_PIPE, + ACTIONS(2439), 1, + sym_null_literal, + STATE(266), 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, + [38970] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + sym_null_literal, + STATE(629), 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, + [38999] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2443), 1, + sym_null_literal, + STATE(935), 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, + [39028] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2445), 1, + sym_null_literal, + STATE(1002), 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, + [39057] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + sym_null_literal, + STATE(897), 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, + [39086] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + sym_null_literal, + STATE(874), 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, + [39115] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + sym_null_literal, + STATE(616), 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, + [39144] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + sym_null_literal, + STATE(856), 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, + [39173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2453), 1, + sym_null_literal, + STATE(876), 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, + [39202] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2455), 1, + sym_null_literal, + STATE(617), 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, + [39231] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + sym_null_literal, + STATE(627), 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, + [39260] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + sym_null_literal, + STATE(639), 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, + [39289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 1, + sym_identifier, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + sym_null_literal, + STATE(466), 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, + [39318] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(170), 1, + sym_identifier, + ACTIONS(178), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_PIPE, + ACTIONS(2463), 1, + sym_null_literal, + STATE(46), 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, + [39347] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(170), 1, + sym_identifier, + ACTIONS(178), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_PIPE, + ACTIONS(2465), 1, + sym_null_literal, + STATE(47), 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, + [39376] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_LBRACK, + ACTIONS(532), 1, + sym_null_literal, + ACTIONS(2467), 1, + anon_sym_PIPE, + STATE(153), 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, + [39405] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_PIPE, + ACTIONS(2469), 1, + sym_null_literal, + STATE(154), 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, + [39434] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_PIPE, + ACTIONS(2471), 1, + sym_null_literal, + STATE(155), 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, + [39463] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 1, + sym_identifier, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_null_literal, + STATE(465), 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, + [39492] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2475), 1, + sym_null_literal, + STATE(910), 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, + [39521] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2477), 1, + sym_null_literal, + STATE(933), 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, + [39550] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2479), 1, + sym_null_literal, + STATE(853), 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, + [39579] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2481), 1, + sym_null_literal, + STATE(882), 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, + [39608] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 1, + sym_identifier, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, + sym_null_literal, + STATE(862), 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, + [39637] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_PIPE, + ACTIONS(2485), 1, + sym_null_literal, + STATE(146), 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, + [39666] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(528), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_PIPE, + ACTIONS(2487), 1, + sym_null_literal, + STATE(145), 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, + [39695] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 1, + sym_identifier, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(2489), 1, + sym_null_literal, + STATE(471), 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, + [39724] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, + anon_sym_PIPE, + ACTIONS(2491), 1, + sym_null_literal, + STATE(263), 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, + [39753] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(577), 1, + sym_null_literal, + ACTIONS(2433), 1, + anon_sym_PIPE, + STATE(262), 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, + [39782] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(170), 1, + sym_identifier, + ACTIONS(178), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + sym_null_literal, + ACTIONS(2461), 1, + anon_sym_PIPE, + STATE(42), 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, + [39811] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(170), 1, + sym_identifier, + ACTIONS(178), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_PIPE, + ACTIONS(2493), 1, + sym_null_literal, + STATE(43), 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, + [39840] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_null_literal, + STATE(961), 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, + [39869] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + sym_null_literal, + STATE(609), 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, + [39898] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2497), 1, + sym_null_literal, + STATE(902), 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, + [39927] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + sym_null_literal, + STATE(613), 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, + [39956] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(542), 1, + sym_null_literal, + ACTIONS(2501), 1, + anon_sym_PIPE, + STATE(208), 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, + [39985] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, + anon_sym_LPAREN, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + sym_null_literal, + STATE(209), 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, + [40014] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2505), 1, + sym_null_literal, + STATE(1000), 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, + [40043] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, + sym_null_literal, + STATE(855), 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, + [40072] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2507), 1, + sym_null_literal, + STATE(958), 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, + [40101] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_LBRACK, + ACTIONS(2509), 1, + sym_null_literal, + STATE(903), 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, + [40130] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2274), 1, - sym_builtin_specifier, - STATE(634), 8, + ACTIONS(2511), 1, + sym_null_literal, + STATE(979), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42929,20 +44693,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37857] = 7, + [40159] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_RBRACK, - STATE(879), 8, + ACTIONS(2513), 1, + sym_null_literal, + STATE(894), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42951,20 +44715,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37886] = 7, + [40188] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2278), 1, - anon_sym_RBRACK, - STATE(880), 8, + ACTIONS(2515), 1, + sym_null_literal, + STATE(989), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42973,20 +44737,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37915] = 7, + [40217] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1671), 1, + anon_sym_PIPE, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2280), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - sym_builtin_specifier, - STATE(627), 8, + ACTIONS(2517), 1, + sym_null_literal, + STATE(611), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -42995,20 +44759,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37944] = 7, + [40246] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(540), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, - sym_identifier, - STATE(1066), 1, - sym_method_receiver, - STATE(922), 8, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2519), 1, + sym_null_literal, + STATE(211), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43017,20 +44781,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [37973] = 7, + [40275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(534), 1, + sym_identifier, + ACTIONS(538), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(540), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(2286), 1, - anon_sym_RBRACK, - STATE(887), 8, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2521), 1, + sym_null_literal, + STATE(212), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43039,20 +44803,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [38002] = 7, + [40304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(1667), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_PIPE, - ACTIONS(2290), 1, - sym_builtin_specifier, - STATE(629), 8, + ACTIONS(2523), 1, + sym_null_literal, + STATE(895), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43061,20 +44825,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [38031] = 7, + [40333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(534), 1, sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(538), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(540), 1, anon_sym_LBRACK, - ACTIONS(2292), 1, - sym_builtin_specifier, - STATE(628), 8, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2525), 1, + sym_null_literal, + STATE(210), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43083,20 +44847,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [38060] = 7, + [40362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1695), 1, + ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1673), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_LBRACK, - ACTIONS(2294), 1, - sym_builtin_specifier, - STATE(624), 8, + ACTIONS(2527), 1, + sym_null_literal, + STATE(1004), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43105,20 +44869,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [38089] = 7, + [40391] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(170), 1, sym_identifier, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(178), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(183), 1, anon_sym_LBRACK, - ACTIONS(2296), 1, - sym_builtin_specifier, - STATE(623), 8, + ACTIONS(2461), 1, + anon_sym_PIPE, + ACTIONS(2529), 1, + sym_null_literal, + STATE(44), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43127,34 +44891,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [38118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2298), 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_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [38136] = 6, + [40420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(2302), 1, + ACTIONS(1565), 1, anon_sym_PIPE, - STATE(264), 8, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(2531), 1, + sym_null_literal, + STATE(458), 8, sym__type_hint, sym_type_instantiatedTs, sym_tensor_type, @@ -43163,10 +44913,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fun_callable_type, sym_nullable_type, sym_union_type, - [38162] = 2, + [40449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 12, + ACTIONS(2533), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43179,10 +44929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38180] = 2, + [40467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 12, + ACTIONS(2535), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43195,10 +44945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38198] = 2, + [40485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 12, + ACTIONS(2537), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43211,10 +44961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38216] = 2, + [40503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 12, + ACTIONS(2539), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43227,10 +44977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38234] = 2, + [40521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 12, + ACTIONS(2541), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43243,10 +44993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38252] = 2, + [40539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 12, + ACTIONS(2543), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43259,27 +45009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - anon_sym_SEMI, - ACTIONS(2171), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [38290] = 2, + [40557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2316), 12, + ACTIONS(2545), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43292,10 +45025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38308] = 2, + [40575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 12, + ACTIONS(2547), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43308,10 +45041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38326] = 2, + [40593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 12, + ACTIONS(2549), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43324,31 +45057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38344] = 2, + [40611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 12, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + ACTIONS(2306), 1, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [38362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 12, + ACTIONS(2304), 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, @@ -43356,30 +45074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(948), 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, - [38406] = 2, + [40631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 12, + ACTIONS(2551), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43392,10 +45090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38424] = 2, + [40649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 12, + ACTIONS(2553), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43408,10 +45106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38442] = 2, + [40667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 12, + ACTIONS(2555), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43424,10 +45122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38460] = 2, + [40685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 12, + ACTIONS(2557), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43440,10 +45138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38478] = 2, + [40703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 12, + ACTIONS(2559), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43456,10 +45154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38496] = 2, + [40721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 12, + ACTIONS(2561), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43472,50 +45170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2302), 1, - anon_sym_PIPE, - STATE(249), 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, - [38540] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2302), 1, - anon_sym_PIPE, - STATE(250), 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, - [38566] = 2, + [40739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 12, + ACTIONS(2563), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43528,30 +45186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(876), 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, - [38610] = 2, + [40757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2340), 12, + ACTIONS(2565), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43564,10 +45202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38628] = 2, + [40775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 12, + ACTIONS(2567), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43580,70 +45218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38646] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(631), 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, - [38672] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(921), 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, - [38698] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(621), 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, - [38724] = 2, + [40793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 12, + ACTIONS(2569), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43656,10 +45234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38742] = 2, + [40811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 12, + ACTIONS(2571), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43672,30 +45250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(611), 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, - [38786] = 2, + [40829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 12, + ACTIONS(2573), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43708,10 +45266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38804] = 2, + [40847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 12, + ACTIONS(2575), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43724,10 +45282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38822] = 2, + [40865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 12, + ACTIONS(2577), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43740,10 +45298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38840] = 2, + [40883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 12, + ACTIONS(2579), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43756,10 +45314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38858] = 2, + [40901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 12, + ACTIONS(2581), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43772,10 +45330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38876] = 2, + [40919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2358), 12, + ACTIONS(2583), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43788,10 +45346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38894] = 2, + [40937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 12, + ACTIONS(2585), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43804,10 +45362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38912] = 2, + [40955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 12, + ACTIONS(2587), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43820,50 +45378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [38930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 1, - anon_sym_PIPE, - ACTIONS(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - sym_identifier, - STATE(444), 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, - [38956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 1, - anon_sym_PIPE, - ACTIONS(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - sym_identifier, - STATE(454), 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, - [38982] = 2, + [40973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 12, + ACTIONS(2589), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43876,30 +45394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(924), 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, - [39026] = 2, + [40991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 12, + ACTIONS(2591), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43912,67 +45410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_SEMI, - ACTIONS(2185), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [39064] = 6, + [41009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(897), 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, - [39090] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 1, - anon_sym_PIPE, - ACTIONS(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - sym_identifier, - STATE(462), 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, - [39116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 12, + ACTIONS(2593), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -43985,67 +45426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(903), 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, - [39160] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(851), 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, - [39186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 1, - anon_sym_SEMI, - ACTIONS(2181), 11, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [39206] = 2, + [41027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 12, + ACTIONS(2595), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44058,30 +45442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39224] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 1, - anon_sym_PIPE, - ACTIONS(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - sym_identifier, - STATE(867), 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, - [39250] = 2, + [41045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 12, + ACTIONS(2597), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44094,10 +45458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39268] = 2, + [41063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 12, + ACTIONS(2599), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44110,10 +45474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39286] = 2, + [41081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 12, + ACTIONS(2601), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44126,50 +45490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39304] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(871), 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, - [39330] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(881), 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, - [39356] = 2, + [41099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2380), 12, + ACTIONS(2603), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44182,30 +45506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(612), 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, - [39400] = 2, + [41117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 12, + ACTIONS(2605), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44218,10 +45522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39418] = 2, + [41135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 12, + ACTIONS(2607), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44234,10 +45538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39436] = 2, + [41153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 12, + ACTIONS(2609), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44250,31 +45554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39454] = 2, + [41171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 12, - ts_builtin_sym_end, - anon_sym_tolk, - anon_sym_import, - anon_sym_global, + ACTIONS(2302), 1, anon_sym_SEMI, - anon_sym_const, - anon_sym_type, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_get, - anon_sym_AT, - [39472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2388), 12, + ACTIONS(2300), 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, @@ -44282,10 +45571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39490] = 2, + [41191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 12, + ACTIONS(2611), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44298,10 +45587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39508] = 2, + [41209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 12, + ACTIONS(2613), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44314,15 +45603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39526] = 2, + [41227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 12, + ACTIONS(2290), 1, + anon_sym_SEMI, + ACTIONS(2288), 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, @@ -44330,10 +45620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39544] = 2, + [41247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 12, + ACTIONS(2615), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44346,10 +45636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39562] = 2, + [41265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 12, + ACTIONS(2617), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44362,50 +45652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39580] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_LPAREN, - ACTIONS(175), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - sym_identifier, - ACTIONS(2402), 1, - anon_sym_PIPE, - STATE(47), 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, - [39606] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_LPAREN, - ACTIONS(175), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - sym_identifier, - ACTIONS(2402), 1, - anon_sym_PIPE, - STATE(48), 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, - [39632] = 2, + [41283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2404), 12, + ACTIONS(2619), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44418,10 +45668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39650] = 2, + [41301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 12, + ACTIONS(2621), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44434,30 +45684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39668] = 6, + [41319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_LPAREN, - ACTIONS(175), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - sym_identifier, - ACTIONS(2402), 1, - anon_sym_PIPE, - STATE(32), 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, - [39694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2408), 12, + ACTIONS(2623), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44470,10 +45700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39712] = 2, + [41337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 12, + ACTIONS(2625), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44486,10 +45716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39730] = 2, + [41355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 12, + ACTIONS(2627), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44502,10 +45732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39748] = 2, + [41373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 12, + ACTIONS(2629), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44518,10 +45748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39766] = 2, + [41391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 12, + ACTIONS(2631), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44534,10 +45764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39784] = 2, + [41409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 12, + ACTIONS(2633), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44550,10 +45780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39802] = 2, + [41427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 12, + ACTIONS(2635), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44566,10 +45796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39820] = 2, + [41445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 12, + ACTIONS(2637), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44582,10 +45812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39838] = 2, + [41463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 12, + ACTIONS(2639), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44598,10 +45828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39856] = 2, + [41481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 12, + ACTIONS(2641), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44614,10 +45844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39874] = 2, + [41499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 12, + ACTIONS(2643), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44630,10 +45860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39892] = 2, + [41517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 12, + ACTIONS(2645), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44646,10 +45876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39910] = 2, + [41535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 12, + ACTIONS(2647), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44662,10 +45892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39928] = 2, + [41553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 12, + ACTIONS(2649), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44678,10 +45908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39946] = 2, + [41571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 12, + ACTIONS(2651), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44694,10 +45924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39964] = 2, + [41589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 12, + ACTIONS(2653), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44710,10 +45940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [39982] = 2, + [41607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 12, + ACTIONS(2655), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44726,50 +45956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40000] = 6, + [41625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(849), 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, - [40026] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(848), 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, - [40052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2442), 12, + ACTIONS(2657), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44782,16 +45972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40070] = 3, + [41643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_SEMI, - ACTIONS(2207), 11, + ACTIONS(2659), 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, @@ -44799,10 +45988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40090] = 2, + [41661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 12, + ACTIONS(2389), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44815,16 +46004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40108] = 3, + [41679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, - anon_sym_SEMI, - ACTIONS(2161), 11, + ACTIONS(2661), 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, @@ -44832,10 +46020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40128] = 2, + [41697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 12, + ACTIONS(2663), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44848,10 +46036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40146] = 2, + [41715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 12, + ACTIONS(2665), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44864,10 +46052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40164] = 2, + [41733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 12, + ACTIONS(1843), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44880,10 +46068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40182] = 2, + [41751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 12, + ACTIONS(2667), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44896,10 +46084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40200] = 2, + [41769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 12, + ACTIONS(2669), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44912,30 +46100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40218] = 6, + [41787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(625), 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, - [40244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 12, + ACTIONS(2671), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44948,10 +46116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40262] = 2, + [41805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 12, + ACTIONS(2673), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44964,10 +46132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40280] = 2, + [41823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 12, + ACTIONS(2675), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -44980,15 +46148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40298] = 2, + [41841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 12, + ACTIONS(2280), 1, + anon_sym_SEMI, + ACTIONS(2278), 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, @@ -44996,10 +46165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40316] = 2, + [41861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 12, + ACTIONS(2677), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45012,15 +46181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40334] = 2, + [41879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 12, + ACTIONS(2286), 1, + anon_sym_SEMI, + ACTIONS(2284), 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, @@ -45028,10 +46198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40352] = 2, + [41899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 12, + ACTIONS(2679), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45044,50 +46214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40370] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_LPAREN, - ACTIONS(175), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - sym_identifier, - ACTIONS(2402), 1, - anon_sym_PIPE, - STATE(35), 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, - [40396] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_LPAREN, - ACTIONS(175), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - sym_identifier, - ACTIONS(2402), 1, - anon_sym_PIPE, - STATE(36), 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, - [40422] = 2, + [41917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 12, + ACTIONS(2681), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45100,10 +46230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40440] = 2, + [41935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 12, + ACTIONS(2683), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45116,10 +46246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40458] = 2, + [41953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 12, + ACTIONS(2685), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45132,10 +46262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40476] = 2, + [41971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 12, + ACTIONS(2687), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45148,16 +46278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40494] = 3, + [41989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 1, - anon_sym_SEMI, - ACTIONS(2165), 11, + ACTIONS(2689), 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, @@ -45165,10 +46294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40514] = 2, + [42007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 12, + ACTIONS(2691), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45181,70 +46310,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40532] = 6, + [42025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_LPAREN, - ACTIONS(515), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - sym_identifier, - ACTIONS(2478), 1, - anon_sym_PIPE, - STATE(152), 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, - [40558] = 6, + ACTIONS(2693), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [42043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_LPAREN, - ACTIONS(515), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - sym_identifier, - ACTIONS(2478), 1, - anon_sym_PIPE, - STATE(153), 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, - [40584] = 6, + ACTIONS(2695), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [42061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_LPAREN, - ACTIONS(515), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - sym_identifier, - ACTIONS(2478), 1, - anon_sym_PIPE, - STATE(154), 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, - [40610] = 2, + ACTIONS(2697), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [42079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 12, + ACTIONS(2699), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45257,10 +46374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40628] = 2, + [42097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 12, + ACTIONS(2701), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45273,10 +46390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40646] = 2, + [42115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 12, + ACTIONS(2703), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45289,30 +46406,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40664] = 6, + [42133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(883), 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, - [40690] = 2, + ACTIONS(2272), 1, + anon_sym_SEMI, + ACTIONS(2270), 11, + ts_builtin_sym_end, + anon_sym_tolk, + anon_sym_import, + anon_sym_global, + anon_sym_const, + anon_sym_type, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [42153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 12, + ACTIONS(2705), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45325,10 +46439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40708] = 2, + [42171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 12, + ACTIONS(2707), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45341,10 +46455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40726] = 2, + [42189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 12, + ACTIONS(2709), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45357,70 +46471,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 1, - anon_sym_PIPE, - ACTIONS(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - sym_identifier, - STATE(465), 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, - [40770] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_LPAREN, - ACTIONS(515), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - sym_identifier, - ACTIONS(2478), 1, - anon_sym_PIPE, - STATE(159), 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, - [40796] = 6, + [42207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_LPAREN, - ACTIONS(515), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - sym_identifier, - ACTIONS(2478), 1, - anon_sym_PIPE, - STATE(160), 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, - [40822] = 2, + ACTIONS(2711), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [42225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 12, + ACTIONS(2713), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45433,10 +46503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40840] = 2, + [42243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 12, + ACTIONS(2415), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45449,10 +46519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40858] = 2, + [42261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 12, + ACTIONS(2715), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45465,10 +46535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40876] = 2, + [42279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 12, + ACTIONS(2717), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45481,10 +46551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40894] = 2, + [42297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 12, + ACTIONS(2719), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45497,10 +46567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40912] = 2, + [42315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 12, + ACTIONS(2721), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45513,15 +46583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40930] = 2, + [42333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 12, + ACTIONS(2276), 1, + anon_sym_SEMI, + ACTIONS(2274), 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, @@ -45529,10 +46600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40948] = 2, + [42353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 12, + ACTIONS(2723), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45545,10 +46616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40966] = 2, + [42371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 12, + ACTIONS(2725), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45561,10 +46632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [40984] = 2, + [42389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 12, + ACTIONS(2727), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45577,10 +46648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41002] = 2, + [42407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 12, + ACTIONS(2729), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45593,90 +46664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(981), 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, - [41046] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(607), 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, - [41072] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(884), 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, - [41098] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(608), 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, - [41124] = 2, + [42425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 12, + ACTIONS(2731), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45689,10 +46680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41142] = 2, + [42443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 12, + ACTIONS(2733), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45705,50 +46696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41160] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2516), 1, - anon_sym_PIPE, - STATE(208), 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, - [41186] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2516), 1, - anon_sym_PIPE, - STATE(206), 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, - [41212] = 2, + [42461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 12, + ACTIONS(2735), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45761,10 +46712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41230] = 2, + [42479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 12, + ACTIONS(2737), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45777,50 +46728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(989), 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, - [41274] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(893), 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, - [41300] = 2, + [42497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 12, + ACTIONS(2739), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45833,10 +46744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41318] = 2, + [42515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 12, + ACTIONS(2741), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45849,10 +46760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41336] = 2, + [42533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 12, + ACTIONS(2743), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45865,50 +46776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(949), 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, - [41380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(889), 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, - [41406] = 2, + [42551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 12, + ACTIONS(2745), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45921,50 +46792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(1008), 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, - [41450] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(878), 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, - [41476] = 2, + [42569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 12, + ACTIONS(2310), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -45977,130 +46808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(979), 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, - [41520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(604), 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, - [41546] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2516), 1, - anon_sym_PIPE, - STATE(207), 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, - [41572] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2516), 1, - anon_sym_PIPE, - STATE(209), 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, - [41598] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2516), 1, - anon_sym_PIPE, - STATE(205), 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, - [41624] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - sym_identifier, - STATE(993), 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, - [41650] = 2, + [42587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 12, + ACTIONS(2747), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -46113,30 +46824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41668] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2302), 1, - anon_sym_PIPE, - STATE(260), 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, - [41694] = 2, + [42605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 12, + ACTIONS(2749), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -46149,16 +46840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41712] = 3, + [42623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_SEMI, - ACTIONS(2211), 11, + ACTIONS(2751), 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, @@ -46166,30 +46856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41732] = 6, + [42641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(521), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2302), 1, - anon_sym_PIPE, - STATE(261), 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, - [41758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 12, + ACTIONS(2753), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -46202,12 +46872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41776] = 3, + [42659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, + ACTIONS(2264), 1, anon_sym_SEMI, - ACTIONS(2189), 11, + ACTIONS(2262), 11, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -46219,10 +46889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41796] = 2, + [42679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 12, + ACTIONS(2755), 12, ts_builtin_sym_end, anon_sym_tolk, anon_sym_import, @@ -46235,55 +46905,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [41814] = 6, + [42697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, - anon_sym_EQ, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2540), 1, - anon_sym_PIPE, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(393), 7, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_GT, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [41839] = 5, + ACTIONS(2757), 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_enum, + anon_sym_fun, + anon_sym_get, + anon_sym_AT, + [42715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 1, + ACTIONS(363), 1, anon_sym_EQ, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2544), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(387), 8, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(365), 7, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_DOT, anon_sym_GT, - anon_sym_DASH_GT, anon_sym_RBRACK, anon_sym_EQ_GT, - [41862] = 6, + [42740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2763), 1, sym_identifier, - ACTIONS(2550), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - ACTIONS(2552), 1, + ACTIONS(2769), 1, anon_sym_AT, - STATE(859), 1, + STATE(873), 1, sym_annotation_arguments, - ACTIONS(2548), 7, + ACTIONS(2765), 7, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46291,18 +46959,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [41887] = 6, + [42765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(355), 1, + anon_sym_EQ, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2771), 1, + anon_sym_PIPE, + ACTIONS(357), 8, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [42788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(371), 1, anon_sym_EQ, - ACTIONS(312), 1, + ACTIONS(377), 1, anon_sym_DASH_GT, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2554), 1, + ACTIONS(2773), 1, anon_sym_PIPE, - ACTIONS(308), 7, + ACTIONS(373), 7, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, @@ -46310,14 +46996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_RBRACK, anon_sym_EQ_GT, - [41912] = 4, + [42813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LPAREN, - STATE(861), 1, - sym_annotation_arguments, - ACTIONS(2556), 8, + ACTIONS(2777), 1, + anon_sym_AT, + STATE(857), 2, + sym_annotation, + aux_sym_annotation_list_repeat1, + ACTIONS(2775), 7, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46325,16 +47012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - anon_sym_AT, - [41932] = 4, + [42833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(27), 1, anon_sym_AT, - STATE(853), 2, + STATE(857), 2, sym_annotation, aux_sym_annotation_list_repeat1, - ACTIONS(2558), 7, + ACTIONS(2780), 7, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46342,15 +47028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [41952] = 4, + [42853] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_AT, - STATE(853), 2, - sym_annotation, - aux_sym_annotation_list_repeat1, - ACTIONS(2563), 7, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(864), 1, + sym_annotation_arguments, + ACTIONS(2782), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46358,77 +47043,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fun, anon_sym_get, - [41972] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - sym_identifier, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_RBRACK, - STATE(1004), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [41994] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - sym_identifier, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2573), 1, - anon_sym_RPAREN, - STATE(1004), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [42016] = 9, + anon_sym_AT, + [42873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2784), 1, + anon_sym_RPAREN, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(97), 1, + STATE(107), 1, sym_object_literal_body, - STATE(947), 1, + STATE(948), 1, aux_sym_instantiationT_list_repeat1, - [42044] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - sym_identifier, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2579), 1, - anon_sym_RBRACK, - STATE(1004), 4, - sym_tuple_vars_declaration, - sym_tensor_vars_declaration, - sym_var_declaration, - sym__var_declaration_lhs, - [42066] = 2, + [42901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 8, + ACTIONS(2788), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46437,10 +47075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [42080] = 2, + [42915] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1597), 1, + anon_sym_QMARK, + ACTIONS(1611), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_DASH_GT, + ACTIONS(2792), 1, + anon_sym_EQ, + ACTIONS(2790), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [42937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 8, + ACTIONS(2794), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46449,10 +47103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [42094] = 2, + [42951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 8, + ACTIONS(2796), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46461,45 +47115,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [42108] = 9, + [42965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 1, + ACTIONS(744), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2587), 1, - anon_sym_RPAREN, - STATE(97), 1, + ACTIONS(2798), 1, + anon_sym_RBRACK, + STATE(107), 1, sym_object_literal_body, - STATE(943), 1, + STATE(960), 1, aux_sym_instantiationT_list_repeat1, - [42136] = 6, + [42993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LT, - ACTIONS(2589), 1, - anon_sym_EQ, - STATE(531), 1, - sym_instantiationT_list, - ACTIONS(2591), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(204), 3, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_QMARK, - [42158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 8, + ACTIONS(2800), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46508,26 +47146,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [42172] = 6, + [43007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2567), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2806), 1, anon_sym_RPAREN, - STATE(1004), 4, + ACTIONS(2808), 1, + anon_sym_LBRACK, + STATE(962), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [42194] = 2, + [43029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 8, + ACTIONS(2810), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46536,26 +47174,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [42208] = 6, + [43043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - anon_sym_QMARK, - ACTIONS(1565), 1, - anon_sym_PIPE, - ACTIONS(1567), 1, - anon_sym_DASH_GT, - ACTIONS(2602), 1, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_LBRACK, + ACTIONS(2812), 1, + anon_sym_RPAREN, + STATE(962), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [43065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_LBRACK, + ACTIONS(2814), 1, + anon_sym_RBRACK, + STATE(962), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [43087] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_LBRACK, + ACTIONS(2816), 1, + anon_sym_RBRACK, + STATE(962), 4, + sym_tuple_vars_declaration, + sym_tensor_vars_declaration, + sym_var_declaration, + sym__var_declaration_lhs, + [43109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + anon_sym_LT, + ACTIONS(2818), 1, anon_sym_EQ, - ACTIONS(2600), 4, - anon_sym_SEMI, + STATE(536), 1, + sym_instantiationT_list, + ACTIONS(2820), 2, anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [42230] = 2, + anon_sym_GT, + ACTIONS(211), 3, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QMARK, + [43131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 8, + ACTIONS(2823), 8, anon_sym_global, anon_sym_const, anon_sym_type, @@ -46564,3005 +47250,3009 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fun, anon_sym_get, anon_sym_AT, - [42244] = 8, + [43145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, - anon_sym_global, - ACTIONS(2608), 1, - anon_sym_const, - ACTIONS(2610), 1, - anon_sym_type, - ACTIONS(2612), 1, - anon_sym_struct, - ACTIONS(2614), 1, - anon_sym_enum, - ACTIONS(2616), 1, - anon_sym_fun, - ACTIONS(2618), 1, - anon_sym_get, - [42269] = 5, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2759), 1, + anon_sym_PIPE, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(1631), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [43164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - ACTIONS(2569), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2825), 1, sym_identifier, - STATE(471), 4, + STATE(477), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [42288] = 5, + [43183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2622), 4, + ACTIONS(2827), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACK, - [42307] = 5, + [43202] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 1, + anon_sym_global, + ACTIONS(2831), 1, + anon_sym_const, + ACTIONS(2833), 1, + anon_sym_type, + ACTIONS(2835), 1, + anon_sym_struct, + ACTIONS(2837), 1, + anon_sym_enum, + ACTIONS(2839), 1, + anon_sym_fun, + ACTIONS(2841), 1, + anon_sym_get, + [43227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2567), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - ACTIONS(2569), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - STATE(1025), 4, + STATE(962), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [42326] = 5, + [43246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2567), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - ACTIONS(2569), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - STATE(1004), 4, + STATE(1031), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [42345] = 5, + [43265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2567), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - ACTIONS(2569), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - STATE(953), 4, + STATE(998), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [42364] = 5, + [43284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2567), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - ACTIONS(2569), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - STATE(954), 4, + STATE(1001), 4, sym_tuple_vars_declaration, sym_tensor_vars_declaration, sym_var_declaration, sym__var_declaration_lhs, - [42383] = 5, + [43303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(1589), 4, + ACTIONS(2843), 1, anon_sym_EQ, + ACTIONS(2845), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [42402] = 7, + [43323] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2624), 1, + ACTIONS(2847), 1, anon_sym_RPAREN, - STATE(986), 1, + STATE(977), 1, aux_sym_instantiationT_list_repeat1, - [42424] = 7, + [43345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2626), 1, - anon_sym_GT, - STATE(984), 1, + ACTIONS(2849), 1, + anon_sym_RBRACK, + STATE(978), 1, aux_sym_instantiationT_list_repeat1, - [42446] = 7, + [43367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2628), 1, - anon_sym_RBRACK, - STATE(957), 1, + ACTIONS(2851), 1, + anon_sym_GT, + STATE(1013), 1, aux_sym_instantiationT_list_repeat1, - [42468] = 7, + [43389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2540), 1, - anon_sym_PIPE, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2853), 1, + sym_identifier, + ACTIONS(2857), 1, + anon_sym_RBRACE, + ACTIONS(2855), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2630), 1, - anon_sym_RBRACK, - STATE(987), 1, - aux_sym_instantiationT_list_repeat1, - [42490] = 6, + STATE(888), 2, + sym_struct_field_declaration, + aux_sym_struct_body_repeat1, + [43407] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2632), 1, - anon_sym_EQ, - ACTIONS(2634), 2, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2859), 1, anon_sym_RPAREN, + STATE(992), 1, + aux_sym_instantiationT_list_repeat1, + [43429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2861), 1, + sym_identifier, + ACTIONS(2867), 1, + anon_sym_RBRACE, + ACTIONS(2864), 2, + anon_sym_SEMI, anon_sym_COMMA, - [42510] = 7, + STATE(888), 2, + sym_struct_field_declaration, + aux_sym_struct_body_repeat1, + [43447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 1, - anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2636), 1, - anon_sym_EQ_GT, - STATE(97), 1, - sym_object_literal_body, - [42532] = 6, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2869), 1, + anon_sym_RPAREN, + STATE(983), 1, + aux_sym_instantiationT_list_repeat1, + [43469] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2638), 1, - anon_sym_EQ, - ACTIONS(2640), 2, - anon_sym_RPAREN, + ACTIONS(2786), 1, anon_sym_COMMA, - [42552] = 7, + ACTIONS(2871), 1, + anon_sym_RBRACK, + STATE(984), 1, + aux_sym_instantiationT_list_repeat1, + [43491] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2784), 1, + anon_sym_RPAREN, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2642), 1, - anon_sym_GT, - STATE(999), 1, + STATE(948), 1, aux_sym_instantiationT_list_repeat1, - [42574] = 7, + [43513] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2587), 1, - anon_sym_RPAREN, - STATE(943), 1, + ACTIONS(2873), 1, + anon_sym_RBRACK, + STATE(993), 1, aux_sym_instantiationT_list_repeat1, - [42596] = 7, + [43535] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, - anon_sym_COMMA, - ACTIONS(2644), 1, - anon_sym_RPAREN, - STATE(956), 1, - aux_sym_instantiationT_list_repeat1, - [42618] = 7, + ACTIONS(2875), 1, + anon_sym_EQ_GT, + STATE(107), 1, + sym_object_literal_body, + [43557] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(947), 1, + ACTIONS(2877), 1, + anon_sym_GT, + STATE(994), 1, aux_sym_instantiationT_list_repeat1, - [42640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, - sym_identifier, - ACTIONS(2650), 1, - anon_sym_RBRACE, - ACTIONS(2648), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(898), 2, - sym_struct_field_declaration, - aux_sym_struct_body_repeat1, - [42658] = 7, + [43579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2879), 1, + anon_sym_EQ, + ACTIONS(2881), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2652), 1, - anon_sym_GT, - STATE(961), 1, - aux_sym_instantiationT_list_repeat1, - [42680] = 4, + [43599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2883), 1, anon_sym_COLON, - ACTIONS(2656), 1, + ACTIONS(2885), 1, anon_sym_redef, - ACTIONS(1595), 4, + ACTIONS(1625), 4, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - [42696] = 7, + [43615] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2658), 1, - anon_sym_RPAREN, - STATE(976), 1, + ACTIONS(2887), 1, + anon_sym_GT, + STATE(973), 1, aux_sym_instantiationT_list_repeat1, - [42718] = 7, + [43637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(2853), 1, + sym_identifier, + ACTIONS(2891), 1, + anon_sym_RBRACE, + ACTIONS(2889), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(886), 2, + sym_struct_field_declaration, + aux_sym_struct_body_repeat1, + [43655] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2660), 1, + ACTIONS(2798), 1, anon_sym_RBRACK, - STATE(977), 1, + STATE(960), 1, aux_sym_instantiationT_list_repeat1, - [42740] = 7, + [43677] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2662), 1, - anon_sym_GT, - STATE(978), 1, + ACTIONS(2893), 1, + anon_sym_RBRACK, + STATE(964), 1, aux_sym_instantiationT_list_repeat1, - [42762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, - sym_identifier, - ACTIONS(2666), 1, - anon_sym_RBRACE, - ACTIONS(2664), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(888), 2, - sym_struct_field_declaration, - aux_sym_struct_body_repeat1, - [42780] = 7, + [43699] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2668), 1, + ACTIONS(2895), 1, anon_sym_RPAREN, - STATE(982), 1, + STATE(963), 1, aux_sym_instantiationT_list_repeat1, - [42802] = 7, + [43721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2670), 1, - anon_sym_RBRACK, - STATE(983), 1, + ACTIONS(2897), 1, + anon_sym_GT, + STATE(1003), 1, aux_sym_instantiationT_list_repeat1, - [42824] = 7, + [43743] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2672), 1, + ACTIONS(2899), 1, anon_sym_GT, - STATE(955), 1, + STATE(967), 1, aux_sym_instantiationT_list_repeat1, - [42846] = 5, + [43765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2759), 1, + anon_sym_PIPE, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + STATE(107), 1, + sym_object_literal_body, + [43784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2680), 1, + ACTIONS(2904), 1, + anon_sym_COMMA, + ACTIONS(2907), 1, anon_sym_RBRACE, - ACTIONS(2677), 2, - anon_sym_SEMI, + STATE(905), 2, + sym_enum_member_declaration, + aux_sym_enum_body_repeat1, + [43801] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 1, + sym_identifier, + ACTIONS(2911), 1, anon_sym_COMMA, - STATE(898), 2, - sym_struct_field_declaration, - aux_sym_struct_body_repeat1, - [42864] = 6, + ACTIONS(2913), 1, + anon_sym_RBRACE, + STATE(905), 2, + sym_enum_member_declaration, + aux_sym_enum_body_repeat1, + [43818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - STATE(70), 1, + STATE(58), 1, sym_object_literal_body, - [42883] = 5, + [43837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2853), 1, + sym_identifier, + ACTIONS(2917), 1, + anon_sym_RBRACE, + STATE(898), 1, + sym_struct_field_declaration, + ACTIONS(2915), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [43854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2909), 1, sym_identifier, - ACTIONS(2685), 1, + ACTIONS(2919), 1, anon_sym_COMMA, - ACTIONS(2688), 1, + ACTIONS(2921), 1, anon_sym_RBRACE, - STATE(900), 2, + STATE(906), 2, sym_enum_member_declaration, aux_sym_enum_body_repeat1, - [42900] = 5, + [43871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - sym_identifier, - ACTIONS(2692), 1, - anon_sym_RBRACE, - STATE(894), 1, - sym_struct_field_declaration, - ACTIONS(2690), 2, - anon_sym_SEMI, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2759), 1, + anon_sym_PIPE, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(2923), 2, anon_sym_COMMA, - [42917] = 4, + anon_sym_GT, + [43888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2925), 1, anon_sym_COMMA, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - ACTIONS(2622), 3, + ACTIONS(2827), 3, anon_sym_RPAREN, anon_sym_GT, anon_sym_RBRACK, - [42932] = 5, + [43903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_COMMA, - anon_sym_GT, - [42949] = 6, + STATE(163), 1, + sym_object_literal_body, + [43922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2928), 1, sym_identifier, - ACTIONS(2701), 1, + ACTIONS(2930), 1, anon_sym_RPAREN, - ACTIONS(2703), 1, + ACTIONS(2932), 1, anon_sym_COMMA, - ACTIONS(2705), 1, + ACTIONS(2934), 1, anon_sym_mutate, - STATE(950), 1, + STATE(951), 1, sym_parameter_declaration, - [42968] = 6, + [43941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 1, + ACTIONS(1645), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2540), 1, - anon_sym_PIPE, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - STATE(97), 1, - sym_object_literal_body, - [42987] = 6, + ACTIONS(2936), 1, + anon_sym_if, + STATE(491), 2, + sym_block_statement, + sym_if_statement, + [43955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2540), 1, - anon_sym_PIPE, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - STATE(170), 1, - sym_object_literal_body, - [43006] = 5, + ACTIONS(2867), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [43965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 1, + ACTIONS(2940), 1, + anon_sym_EQ, + ACTIONS(2938), 3, anon_sym_COMMA, - ACTIONS(2711), 1, anon_sym_RBRACE, - STATE(900), 2, - sym_enum_member_declaration, - aux_sym_enum_body_repeat1, - [43023] = 5, + sym_identifier, + [43977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 1, + sym_identifier, + ACTIONS(2934), 1, + anon_sym_mutate, + ACTIONS(2942), 1, + anon_sym_RPAREN, + STATE(1027), 1, + sym_parameter_declaration, + [43993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2713), 1, + ACTIONS(2946), 1, anon_sym_COMMA, - ACTIONS(2715), 1, + ACTIONS(2948), 1, anon_sym_RBRACE, - STATE(907), 2, - sym_enum_member_declaration, - aux_sym_enum_body_repeat1, - [43040] = 4, + STATE(988), 1, + sym_instance_argument, + [44009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - anon_sym_COMMA, - STATE(909), 1, - aux_sym_tuple_vars_declaration_repeat1, - ACTIONS(2717), 2, + ACTIONS(2950), 1, + sym_identifier, + ACTIONS(2952), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [43054] = 5, + ACTIONS(2954), 1, + anon_sym_DASH_GT, + STATE(921), 1, + aux_sym_asm_body_repeat1, + [44025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 1, + ACTIONS(2234), 1, anon_sym_COMMA, - ACTIONS(2205), 1, + ACTIONS(2236), 1, anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(2956), 1, sym_identifier, - STATE(936), 1, + STATE(1011), 1, sym_type_parameter, - [43070] = 5, + [44041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(2958), 1, sym_identifier, - ACTIONS(2726), 1, + STATE(921), 1, + aux_sym_asm_body_repeat1, + ACTIONS(2961), 2, anon_sym_RPAREN, - ACTIONS(2728), 1, anon_sym_DASH_GT, - STATE(920), 1, - aux_sym_asm_body_repeat1, - [43086] = 5, + [44055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(2730), 1, - anon_sym_LPAREN, - STATE(475), 1, - sym_block_statement, - STATE(476), 1, - sym_catch_clause, - [43102] = 5, + ACTIONS(2963), 1, + anon_sym_COLON, + ACTIONS(2965), 1, + anon_sym_EQ, + ACTIONS(2967), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [44069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, - sym_identifier, - ACTIONS(2705), 1, - anon_sym_mutate, - ACTIONS(2732), 1, + ACTIONS(2969), 1, + anon_sym_COLON, + ACTIONS(2971), 1, + anon_sym_EQ, + ACTIONS(2973), 2, anon_sym_RPAREN, - STATE(1018), 1, - sym_parameter_declaration, - [43118] = 4, + anon_sym_COMMA, + [44083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_COMMA, + STATE(924), 1, + aux_sym_tuple_vars_declaration_repeat1, + ACTIONS(2975), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - STATE(914), 1, + STATE(925), 1, aux_sym_annotation_arguments_repeat1, - ACTIONS(1005), 2, + ACTIONS(1011), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [43132] = 4, + [44111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, - anon_sym_COLON, - ACTIONS(2739), 1, - anon_sym_EQ, - ACTIONS(2741), 2, + ACTIONS(2983), 1, + sym_identifier, + ACTIONS(2985), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [43146] = 5, + ACTIONS(2987), 1, + anon_sym_DASH_GT, + STATE(919), 1, + aux_sym_asm_body_repeat1, + [44127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(39), 1, anon_sym_COMMA, - ACTIONS(2743), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2745), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, - STATE(959), 1, + STATE(990), 1, sym_instance_argument, - [43162] = 5, + [44143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2759), 1, + anon_sym_PIPE, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(2991), 1, + anon_sym_DOT, + [44159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2928), 1, sym_identifier, - ACTIONS(2705), 1, + ACTIONS(2934), 1, anon_sym_mutate, - ACTIONS(2747), 1, + ACTIONS(2993), 1, anon_sym_RPAREN, - STATE(1018), 1, + STATE(1027), 1, sym_parameter_declaration, - [43178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 1, - anon_sym_EQ, - ACTIONS(2749), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [43190] = 4, + [44175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, + ACTIONS(1645), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2936), 1, anon_sym_if, - STATE(479), 2, + STATE(502), 2, sym_block_statement, sym_if_statement, - [43204] = 4, + [44189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2909), 1, sym_identifier, - STATE(920), 1, - aux_sym_asm_body_repeat1, - ACTIONS(2758), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [43218] = 5, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(2997), 1, + anon_sym_RBRACE, + STATE(909), 1, + sym_enum_member_declaration, + [44205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2540), 1, - anon_sym_PIPE, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2760), 1, - anon_sym_EQ, - [43234] = 5, + ACTIONS(1645), 1, + anon_sym_LBRACE, + ACTIONS(2999), 1, + anon_sym_LPAREN, + STATE(480), 1, + sym_catch_clause, + STATE(517), 1, + sym_block_statement, + [44221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2762), 1, - anon_sym_DOT, - [43250] = 5, + ACTIONS(3001), 1, + anon_sym_EQ, + [44237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2764), 1, + ACTIONS(79), 1, anon_sym_COMMA, - ACTIONS(2766), 1, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(3003), 1, anon_sym_RBRACE, - STATE(908), 1, - sym_enum_member_declaration, - [43266] = 5, + STATE(965), 1, + sym_instance_argument, + [44253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2759), 1, anon_sym_PIPE, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2768), 1, + ACTIONS(3005), 1, anon_sym_EQ, - [43282] = 5, + [44269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_COMMA, - ACTIONS(2743), 1, - sym_identifier, - ACTIONS(2770), 1, - anon_sym_RBRACE, - STATE(991), 1, - sym_instance_argument, - [43298] = 5, + ACTIONS(3007), 1, + anon_sym_RPAREN, + ACTIONS(3009), 1, + sym_number_literal, + STATE(982), 1, + aux_sym_asm_body_repeat2, + [44282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2772), 1, - anon_sym_COMMA, - ACTIONS(2774), 1, + ACTIONS(3011), 1, anon_sym_RBRACE, - STATE(990), 1, + STATE(1017), 1, sym_instance_argument, - [43314] = 4, + [44295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2776), 1, - anon_sym_COLON, - ACTIONS(2778), 1, - anon_sym_EQ, - ACTIONS(2780), 2, + ACTIONS(3013), 1, anon_sym_RPAREN, + ACTIONS(3015), 1, anon_sym_COMMA, - [43328] = 2, + STATE(924), 1, + aux_sym_tuple_vars_declaration_repeat1, + [44308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 4, - anon_sym_SEMI, + ACTIONS(3017), 1, + anon_sym_RPAREN, + ACTIONS(3019), 1, anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [43338] = 4, + STATE(939), 1, + aux_sym_argument_list_repeat1, + [44321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_if, - STATE(473), 2, - sym_block_statement, - sym_if_statement, - [43352] = 5, + ACTIONS(887), 1, + anon_sym_RPAREN, + ACTIONS(3022), 1, + anon_sym_COMMA, + STATE(939), 1, + aux_sym_argument_list_repeat1, + [44334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 1, - sym_identifier, - ACTIONS(2784), 1, - anon_sym_RPAREN, - ACTIONS(2786), 1, - anon_sym_DASH_GT, - STATE(911), 1, - aux_sym_asm_body_repeat1, - [43368] = 4, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + sym_string_literal, + STATE(648), 1, + aux_sym_asm_body_repeat3, + [44347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - ACTIONS(2790), 1, - anon_sym_RBRACE, - STATE(997), 1, - aux_sym_object_literal_body_repeat1, - [43381] = 4, + ACTIONS(3031), 1, + anon_sym_GT, + STATE(942), 1, + aux_sym_type_parameters_repeat1, + [44360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(3033), 1, anon_sym_RPAREN, - ACTIONS(2792), 1, + ACTIONS(3035), 1, anon_sym_COMMA, - STATE(941), 1, + STATE(956), 1, aux_sym_argument_list_repeat1, - [43394] = 4, + [44373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, + ACTIONS(2907), 3, + anon_sym_COMMA, + anon_sym_RBRACE, sym_identifier, - ACTIONS(2794), 1, - anon_sym_GT, - STATE(1034), 1, - sym_type_parameter, - [43407] = 4, + [44382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_GT, - STATE(934), 1, - aux_sym_type_parameters_repeat1, - [43420] = 4, + ACTIONS(3039), 1, + anon_sym_RBRACK, + STATE(924), 1, + aux_sym_tuple_vars_declaration_repeat1, + [44395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_GT, - STATE(1034), 1, - sym_type_parameter, - [43433] = 4, + ACTIONS(3041), 1, + anon_sym_RBRACE, + STATE(1017), 1, + sym_instance_argument, + [44408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(2805), 1, - anon_sym_GT, - STATE(938), 1, - aux_sym_type_parameters_repeat1, - [43446] = 4, + ACTIONS(3046), 1, + anon_sym_RBRACE, + STATE(947), 1, + aux_sym_object_literal_body_repeat1, + [44421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(2807), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - STATE(914), 1, - aux_sym_annotation_arguments_repeat1, - [43459] = 4, + ACTIONS(3048), 1, + anon_sym_RPAREN, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [44434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_GT, - ACTIONS(2809), 1, + ACTIONS(1001), 1, + anon_sym_RBRACK, + ACTIONS(3050), 1, anon_sym_COMMA, - STATE(934), 1, - aux_sym_type_parameters_repeat1, - [43472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LPAREN, - ACTIONS(2813), 1, - sym_string_literal, - STATE(642), 1, - aux_sym_asm_body_repeat3, - [43485] = 4, + STATE(925), 1, + aux_sym_annotation_arguments_repeat1, + [44447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2909), 1, sym_identifier, - ACTIONS(2815), 1, + ACTIONS(3052), 1, anon_sym_RBRACE, - STATE(928), 1, - sym_struct_field_declaration, - [43498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2817), 1, - anon_sym_RPAREN, - ACTIONS(2819), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_argument_list_repeat1, - [43511] = 4, + STATE(944), 1, + sym_enum_member_declaration, + [44460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3054), 1, anon_sym_RPAREN, - ACTIONS(2824), 1, + ACTIONS(3056), 1, anon_sym_COMMA, - STATE(1001), 1, - aux_sym_argument_list_repeat1, - [43524] = 4, + STATE(1009), 1, + aux_sym_parameter_list_repeat1, + [44473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, - anon_sym_COMMA, - ACTIONS(2826), 1, - anon_sym_RPAREN, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [43537] = 2, + ACTIONS(2956), 1, + sym_identifier, + ACTIONS(3058), 1, + anon_sym_GT, + STATE(1019), 1, + sym_type_parameter, + [44486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 3, + ACTIONS(2818), 1, + anon_sym_EQ, + ACTIONS(3060), 2, anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [43546] = 4, + anon_sym_GT, + [44497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2828), 1, - anon_sym_RBRACE, - STATE(944), 1, - sym_enum_member_declaration, - [43559] = 4, + ACTIONS(2952), 1, + anon_sym_RPAREN, + ACTIONS(3062), 1, + sym_number_literal, + STATE(957), 1, + aux_sym_asm_body_repeat2, + [44510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_LT, - ACTIONS(2830), 1, - anon_sym_EQ, - STATE(1062), 1, - sym_type_parameters, - [43572] = 4, + ACTIONS(3058), 1, + anon_sym_GT, + ACTIONS(3064), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_type_parameters_repeat1, + [44523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(891), 1, + anon_sym_RPAREN, + ACTIONS(3066), 1, anon_sym_COMMA, - ACTIONS(2832), 1, - anon_sym_RBRACK, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [43585] = 4, + STATE(939), 1, + aux_sym_argument_list_repeat1, + [44536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2834), 1, - anon_sym_PIPE, - [43598] = 4, + ACTIONS(3007), 1, + anon_sym_RPAREN, + ACTIONS(3068), 1, + sym_number_literal, + STATE(981), 1, + aux_sym_asm_body_repeat2, + [44549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2836), 1, + ACTIONS(3070), 1, anon_sym_PIPE, - [43611] = 4, + [44562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, - anon_sym_RPAREN, - ACTIONS(2840), 1, - anon_sym_COMMA, - STATE(992), 1, - aux_sym_parameter_list_repeat1, - [43624] = 4, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(3072), 1, + anon_sym_RBRACE, + STATE(1017), 1, + sym_instance_argument, + [44575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - anon_sym_RPAREN, - ACTIONS(2844), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - STATE(951), 1, - aux_sym_parameter_list_repeat1, - [43637] = 4, + ACTIONS(3074), 1, + anon_sym_RBRACK, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [44588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_RPAREN, - ACTIONS(2849), 1, - anon_sym_COMMA, - STATE(909), 1, - aux_sym_tuple_vars_declaration_repeat1, - [43650] = 4, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(3076), 1, + anon_sym_PIPE, + [44601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(2975), 3, anon_sym_RPAREN, - ACTIONS(2853), 1, - anon_sym_COMMA, - STATE(952), 1, - aux_sym_tuple_vars_declaration_repeat1, - [43663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, anon_sym_COMMA, - ACTIONS(2857), 1, anon_sym_RBRACK, - STATE(972), 1, - aux_sym_tuple_vars_declaration_repeat1, - [43676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2575), 1, - anon_sym_COMMA, - ACTIONS(2859), 1, - anon_sym_GT, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [43689] = 4, + [44610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2861), 1, + ACTIONS(3078), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [43702] = 4, + [44623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2863), 1, + ACTIONS(3080), 1, anon_sym_RBRACK, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [43715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2726), 1, - anon_sym_RPAREN, - ACTIONS(2865), 1, - sym_number_literal, - STATE(973), 1, - aux_sym_asm_body_repeat2, - [43728] = 4, + [44636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, + ACTIONS(3082), 1, anon_sym_COMMA, - ACTIONS(2869), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(970), 1, aux_sym_object_literal_body_repeat1, - [43741] = 4, + [44649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2853), 1, sym_identifier, - ACTIONS(2650), 1, + ACTIONS(2857), 1, anon_sym_RBRACE, - STATE(928), 1, + STATE(915), 1, sym_struct_field_declaration, - [43754] = 4, + [44662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2871), 1, + ACTIONS(3086), 1, anon_sym_GT, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [43767] = 4, + [44675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(3088), 1, anon_sym_RPAREN, - ACTIONS(2875), 1, + ACTIONS(3090), 1, anon_sym_COMMA, - STATE(914), 1, + STATE(925), 1, aux_sym_annotation_arguments_repeat1, - [43780] = 4, + [44688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2877), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - STATE(1009), 1, + STATE(1017), 1, sym_instance_argument, - [43793] = 4, + [44701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - ACTIONS(2879), 1, + ACTIONS(3094), 1, anon_sym_COMMA, - STATE(997), 1, + STATE(947), 1, aux_sym_object_literal_body_repeat1, - [43806] = 4, + [44714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 1, + ACTIONS(1057), 1, anon_sym_RBRACK, - ACTIONS(2881), 1, + ACTIONS(3096), 1, anon_sym_COMMA, - STATE(914), 1, + STATE(925), 1, aux_sym_annotation_arguments_repeat1, - [43819] = 4, + [44727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, + ACTIONS(3098), 1, anon_sym_RPAREN, - ACTIONS(2885), 1, + ACTIONS(3100), 1, anon_sym_COMMA, - STATE(968), 1, + STATE(976), 1, aux_sym_argument_list_repeat1, - [43832] = 4, + [44740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(3102), 1, + anon_sym_GT, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [44753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2887), 1, + ACTIONS(3104), 1, anon_sym_RBRACE, - STATE(1009), 1, + STATE(1017), 1, sym_instance_argument, - [43845] = 4, + [44766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 1, + sym_identifier, + ACTIONS(2913), 1, + anon_sym_RBRACE, + STATE(944), 1, + sym_enum_member_declaration, + [44779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(867), 1, + ACTIONS(893), 1, anon_sym_RPAREN, - ACTIONS(2889), 1, + ACTIONS(3106), 1, anon_sym_COMMA, - STATE(941), 1, + STATE(939), 1, aux_sym_argument_list_repeat1, - [43858] = 4, + [44792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(3108), 1, anon_sym_RPAREN, - ACTIONS(2893), 1, - sym_number_literal, - STATE(969), 1, - aux_sym_asm_body_repeat2, - [43871] = 4, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [44805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_RPAREN, - ACTIONS(2898), 1, - sym_number_literal, - STATE(969), 1, - aux_sym_asm_body_repeat2, - [43884] = 4, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(3110), 1, + anon_sym_RBRACK, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [44818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, - sym_identifier, - ACTIONS(2900), 1, - anon_sym_RBRACE, - STATE(1009), 1, - sym_instance_argument, - [43897] = 4, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(3112), 1, + anon_sym_PIPE, + [44831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, - anon_sym_COMMA, - ACTIONS(2904), 1, - anon_sym_RBRACK, - STATE(909), 1, - aux_sym_tuple_vars_declaration_repeat1, - [43910] = 4, + ACTIONS(2956), 1, + sym_identifier, + ACTIONS(3114), 1, + anon_sym_GT, + STATE(1019), 1, + sym_type_parameter, + [44844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, - sym_number_literal, - ACTIONS(2906), 1, + ACTIONS(3116), 1, anon_sym_RPAREN, - STATE(969), 1, + ACTIONS(3118), 1, + sym_number_literal, + STATE(981), 1, aux_sym_asm_body_repeat2, - [43923] = 4, + [44857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, - anon_sym_RPAREN, - ACTIONS(2908), 1, + ACTIONS(3068), 1, sym_number_literal, - STATE(970), 1, + ACTIONS(3121), 1, + anon_sym_RPAREN, + STATE(981), 1, aux_sym_asm_body_repeat2, - [43936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2711), 1, - anon_sym_RBRACE, - STATE(944), 1, - sym_enum_member_declaration, - [43949] = 4, + [44870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2910), 1, + ACTIONS(3123), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [43962] = 4, + [44883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2912), 1, + ACTIONS(3125), 1, anon_sym_RBRACK, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [43975] = 4, + [44896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(3072), 1, + anon_sym_RBRACE, + ACTIONS(3127), 1, anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_GT, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [43988] = 4, + STATE(947), 1, + aux_sym_object_literal_body_repeat1, + [44909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2916), 1, - anon_sym_PIPE, - [44001] = 4, + ACTIONS(1009), 1, + anon_sym_RPAREN, + ACTIONS(3129), 1, + anon_sym_COMMA, + STATE(925), 1, + aux_sym_annotation_arguments_repeat1, + [44922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, - sym_identifier, - ACTIONS(2705), 1, - anon_sym_mutate, - STATE(1018), 1, - sym_parameter_declaration, - [44014] = 4, + ACTIONS(193), 1, + anon_sym_COLON, + ACTIONS(203), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(3131), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_RBRACE, + STATE(985), 1, + aux_sym_object_literal_body_repeat1, + [44946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2918), 1, + ACTIONS(3135), 1, anon_sym_PIPE, - [44027] = 4, + [44959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3137), 1, + anon_sym_COMMA, + ACTIONS(3139), 1, + anon_sym_RBRACE, + STATE(1007), 1, + aux_sym_object_literal_body_repeat1, + [44972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(1970), 1, + anon_sym_LT, + ACTIONS(3141), 1, + anon_sym_EQ, + STATE(1083), 1, + sym_type_parameters, + [44985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2920), 1, + ACTIONS(3143), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [44040] = 4, + [44998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2922), 1, + ACTIONS(3145), 1, anon_sym_RBRACK, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [44053] = 4, + [45011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2924), 1, + ACTIONS(3147), 1, anon_sym_GT, - STATE(902), 1, + STATE(911), 1, aux_sym_instantiationT_list_repeat1, - [44066] = 3, + [45024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(186), 1, - anon_sym_COLON, - ACTIONS(196), 2, - anon_sym_COMMA, + ACTIONS(2853), 1, + sym_identifier, + ACTIONS(3149), 1, anon_sym_RBRACE, - [44077] = 4, + STATE(915), 1, + sym_struct_field_declaration, + [45037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, - anon_sym_COMMA, - ACTIONS(2926), 1, - anon_sym_RPAREN, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [44090] = 4, + ACTIONS(2928), 1, + sym_identifier, + ACTIONS(2934), 1, + anon_sym_mutate, + STATE(1027), 1, + sym_parameter_declaration, + [45050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(3151), 1, + anon_sym_RPAREN, + ACTIONS(3153), 1, anon_sym_COMMA, - ACTIONS(2928), 1, - anon_sym_RBRACK, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [44103] = 4, + STATE(997), 1, + aux_sym_parameter_list_repeat1, + [45063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, + ACTIONS(3156), 1, anon_sym_RPAREN, - ACTIONS(2930), 1, + ACTIONS(3158), 1, anon_sym_COMMA, - STATE(914), 1, - aux_sym_annotation_arguments_repeat1, - [44116] = 4, + STATE(938), 1, + aux_sym_tuple_vars_declaration_repeat1, + [45076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1970), 1, + anon_sym_LT, + ACTIONS(3160), 1, + anon_sym_EQ, + STATE(1090), 1, + sym_type_parameters, + [45089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2932), 1, + ACTIONS(3162), 1, anon_sym_PIPE, - [44129] = 4, + [45102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(3164), 1, anon_sym_COMMA, - ACTIONS(2936), 1, - anon_sym_RBRACE, - STATE(1007), 1, - aux_sym_object_literal_body_repeat1, - [44142] = 4, + ACTIONS(3166), 1, + anon_sym_RBRACK, + STATE(945), 1, + aux_sym_tuple_vars_declaration_repeat1, + [45115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 1, - anon_sym_COMMA, - ACTIONS(2940), 1, - anon_sym_RBRACE, - STATE(931), 1, - aux_sym_object_literal_body_repeat1, - [44155] = 4, + ACTIONS(1992), 1, + anon_sym_QMARK, + ACTIONS(2761), 1, + anon_sym_DASH_GT, + ACTIONS(3168), 1, + anon_sym_PIPE, + [45128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_RPAREN, - ACTIONS(2942), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - STATE(951), 1, - aux_sym_parameter_list_repeat1, - [44168] = 4, + ACTIONS(3170), 1, + anon_sym_GT, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [45141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1992), 1, anon_sym_QMARK, - ACTIONS(2542), 1, + ACTIONS(2761), 1, anon_sym_DASH_GT, - ACTIONS(2944), 1, + ACTIONS(3172), 1, anon_sym_PIPE, - [44181] = 4, + [45154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(3174), 1, anon_sym_RPAREN, - ACTIONS(2948), 1, + ACTIONS(3176), 1, anon_sym_COMMA, - STATE(914), 1, + STATE(925), 1, aux_sym_annotation_arguments_repeat1, - [44194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2589), 1, - anon_sym_EQ, - ACTIONS(2950), 2, - anon_sym_COMMA, - anon_sym_GT, - [44205] = 4, + [45167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(3178), 1, anon_sym_RBRACE, - STATE(1009), 1, + STATE(1017), 1, sym_instance_argument, - [44218] = 4, + [45180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_COMMA, - ACTIONS(2957), 1, + ACTIONS(3178), 1, anon_sym_RBRACE, - STATE(997), 1, + ACTIONS(3180), 1, + anon_sym_COMMA, + STATE(947), 1, aux_sym_object_literal_body_repeat1, - [44231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 1, - anon_sym_LT, - ACTIONS(2959), 1, - anon_sym_EQ, - STATE(1065), 1, - sym_type_parameters, - [44244] = 4, + [45193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(1023), 1, + anon_sym_RBRACK, + ACTIONS(3182), 1, anon_sym_COMMA, - ACTIONS(2961), 1, - anon_sym_GT, - STATE(902), 1, - aux_sym_instantiationT_list_repeat1, - [44257] = 4, + STATE(925), 1, + aux_sym_annotation_arguments_repeat1, + [45206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, + ACTIONS(2993), 1, anon_sym_RPAREN, - ACTIONS(2965), 1, + ACTIONS(3184), 1, anon_sym_COMMA, - STATE(914), 1, - aux_sym_annotation_arguments_repeat1, - [44270] = 4, + STATE(997), 1, + aux_sym_parameter_list_repeat1, + [45219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(857), 1, + ACTIONS(3186), 1, anon_sym_RPAREN, - ACTIONS(2967), 1, + ACTIONS(3188), 1, anon_sym_COMMA, - STATE(941), 1, - aux_sym_argument_list_repeat1, - [44283] = 4, + STATE(925), 1, + aux_sym_annotation_arguments_repeat1, + [45232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, - sym_identifier, - ACTIONS(2790), 1, - anon_sym_RBRACE, - STATE(1009), 1, - sym_instance_argument, - [44296] = 4, + ACTIONS(3190), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_GT, + STATE(955), 1, + aux_sym_type_parameters_repeat1, + [45245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_RBRACK, - ACTIONS(2969), 1, + ACTIONS(3194), 1, + anon_sym_RPAREN, + ACTIONS(3196), 1, anon_sym_COMMA, - STATE(914), 1, - aux_sym_annotation_arguments_repeat1, - [44309] = 2, + STATE(940), 1, + aux_sym_argument_list_repeat1, + [45258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 3, - anon_sym_RPAREN, + ACTIONS(2786), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [44318] = 4, + ACTIONS(3198), 1, + anon_sym_GT, + STATE(911), 1, + aux_sym_instantiationT_list_repeat1, + [45271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(3017), 2, anon_sym_RPAREN, - ACTIONS(2973), 1, anon_sym_COMMA, - STATE(932), 1, - aux_sym_argument_list_repeat1, - [44331] = 4, + [45279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(3200), 2, sym_identifier, - ACTIONS(2975), 1, - anon_sym_RBRACE, - STATE(1009), 1, - sym_instance_argument, - [44344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_RBRACE, - ACTIONS(2977), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_object_literal_body_repeat1, - [44357] = 4, + sym_numeric_index, + [45287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2979), 1, - anon_sym_PIPE, - [44370] = 2, + ACTIONS(3202), 1, + sym_string_literal, + STATE(668), 1, + aux_sym_asm_body_repeat3, + [45297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, + ACTIONS(3046), 2, anon_sym_COMMA, anon_sym_RBRACE, - [44378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1699), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_block_statement, - [44388] = 3, + [45305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, + ACTIONS(3204), 1, sym_string_literal, - STATE(644), 1, + STATE(640), 1, aux_sym_asm_body_repeat3, - [44398] = 3, + [45315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_block_statement, - [44408] = 3, + ACTIONS(3031), 2, + anon_sym_COMMA, + anon_sym_GT, + [45323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(3206), 2, sym_identifier, - ACTIONS(2985), 1, - anon_sym_LPAREN, - [44418] = 2, + sym_numeric_index, + [45331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 2, - sym_identifier, - sym_numeric_index, - [44426] = 3, + ACTIONS(1645), 1, + anon_sym_LBRACE, + STATE(515), 1, + sym_block_statement, + [45341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(2909), 1, sym_identifier, STATE(944), 1, sym_enum_member_declaration, - [44436] = 3, + [45351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, + ACTIONS(3208), 1, sym_identifier, - STATE(1034), 1, - sym_type_parameter, - [44446] = 3, + ACTIONS(3210), 1, + anon_sym_LPAREN, + [45361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(2991), 1, + ACTIONS(3214), 1, anon_sym_fun, - [44456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [44464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2743), 1, - sym_identifier, - STATE(1009), 1, - sym_instance_argument, - [44474] = 3, + [45371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - STATE(1091), 1, + STATE(1099), 1, sym_block_statement, - [44484] = 3, + [45381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, + ACTIONS(1645), 1, anon_sym_LBRACE, - STATE(477), 1, + STATE(496), 1, sym_block_statement, - [44494] = 2, + [45391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 2, + ACTIONS(3151), 2, anon_sym_RPAREN, anon_sym_COMMA, - [44502] = 2, + [45399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 2, + ACTIONS(3216), 2, sym_identifier, sym_numeric_index, - [44510] = 2, + [45407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 2, - sym_identifier, - sym_numeric_index, - [44518] = 3, + ACTIONS(3218), 1, + anon_sym_COLON, + ACTIONS(3220), 1, + anon_sym_EQ, + [45417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_RPAREN, - ACTIONS(2997), 1, - anon_sym_EQ, - [44528] = 3, + ACTIONS(1645), 1, + anon_sym_LBRACE, + STATE(507), 1, + sym_block_statement, + [45427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(1661), 1, anon_sym_RPAREN, - ACTIONS(3001), 1, - anon_sym_COMMA, - [44538] = 3, + ACTIONS(3222), 1, + anon_sym_EQ, + [45437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, + ACTIONS(2956), 1, sym_identifier, - ACTIONS(3005), 1, - anon_sym_fun, - [44548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_COLON, - ACTIONS(3009), 1, - anon_sym_EQ, - [44558] = 3, + STATE(1019), 1, + sym_type_parameter, + [45447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, + ACTIONS(3224), 1, sym_identifier, - ACTIONS(3013), 1, - anon_sym_LPAREN, - [44568] = 3, + ACTIONS(3226), 1, + anon_sym_fun, + [45457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - anon_sym_LBRACE, - STATE(478), 1, - sym_block_statement, - [44578] = 3, + ACTIONS(2944), 1, + sym_identifier, + STATE(1017), 1, + sym_instance_argument, + [45467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3228), 1, anon_sym_COLON, - ACTIONS(3017), 1, + ACTIONS(3230), 1, anon_sym_EQ, - [44588] = 3, + [45477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - anon_sym_LBRACE, - STATE(484), 1, - sym_block_statement, - [44598] = 3, + ACTIONS(3232), 1, + sym_string_literal, + STATE(653), 1, + aux_sym_asm_body_repeat3, + [45487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(3234), 1, sym_string_literal, - STATE(639), 1, + STATE(661), 1, aux_sym_asm_body_repeat3, - [44608] = 2, + [45497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 2, - anon_sym_COMMA, - anon_sym_GT, - [44616] = 3, + ACTIONS(1645), 1, + anon_sym_LBRACE, + STATE(505), 1, + sym_block_statement, + [45507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2853), 1, sym_identifier, - STATE(928), 1, + STATE(915), 1, sym_struct_field_declaration, - [44626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 1, - sym_string_literal, - STATE(637), 1, - aux_sym_asm_body_repeat3, - [44636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3023), 1, - sym_string_literal, - STATE(645), 1, - aux_sym_asm_body_repeat3, - [44646] = 2, + [45517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 1, + ACTIONS(3236), 1, anon_sym_RPAREN, - [44653] = 2, + ACTIONS(3238), 1, + anon_sym_COMMA, + [45527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - sym_number_literal, - [44660] = 2, + ACTIONS(1675), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym_block_statement, + [45537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, + ACTIONS(3240), 1, sym_identifier, - [44667] = 2, + ACTIONS(3242), 1, + anon_sym_LPAREN, + [45547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(3244), 1, sym_identifier, - [44674] = 2, + [45554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_RBRACE, - [44681] = 2, + ACTIONS(3246), 1, + sym_number_literal, + [45561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - sym_identifier, - [44688] = 2, + ACTIONS(3248), 1, + anon_sym_COLON, + [45568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3033), 1, - sym_string_literal, - [44695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, anon_sym_RPAREN, - [44702] = 2, + [45575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, - anon_sym_LPAREN, - [44709] = 2, + ACTIONS(3250), 1, + sym_identifier, + [45582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, - anon_sym_RBRACE, - [44716] = 2, + ACTIONS(3252), 1, + anon_sym_LPAREN, + [45589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(3254), 1, anon_sym_RPAREN, - [44723] = 2, + [45596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3256), 1, sym_identifier, - [44730] = 2, + [45603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, - sym_identifier, - [44737] = 2, + ACTIONS(3139), 1, + anon_sym_RBRACE, + [45610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 1, - sym_identifier, - [44744] = 2, + ACTIONS(1557), 1, + anon_sym_RPAREN, + [45617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, - anon_sym_RBRACE, - [44751] = 2, + ACTIONS(3258), 1, + anon_sym_LPAREN, + [45624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, - anon_sym_RBRACE, - [44758] = 2, + ACTIONS(3098), 1, + anon_sym_RPAREN, + [45631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, - anon_sym_LPAREN, - [44765] = 2, + ACTIONS(3260), 1, + sym_identifier, + [45638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 1, - anon_sym_RBRACK, - [44772] = 2, + ACTIONS(2921), 1, + anon_sym_RBRACE, + [45645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, + ACTIONS(3054), 1, anon_sym_RPAREN, - [44779] = 2, + [45652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, - sym_identifier, - [44786] = 2, + ACTIONS(3262), 1, + sym_version_value, + [45659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, - sym_identifier, - [44793] = 2, + ACTIONS(3264), 1, + sym_number_literal, + [45666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3266), 1, sym_identifier, - [44800] = 2, + [45673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - anon_sym_RBRACK, - [44807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 1, + ACTIONS(3268), 1, anon_sym_RPAREN, - [44814] = 2, + [45680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_EQ, - [44821] = 2, + ACTIONS(3270), 1, + anon_sym_EQ_GT, + [45687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(3272), 1, anon_sym_LPAREN, - [44828] = 2, + [45694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, + ACTIONS(1019), 1, anon_sym_RBRACK, - [44835] = 2, + [45701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - [44842] = 2, + ACTIONS(1029), 1, + anon_sym_RPAREN, + [45708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3274), 1, sym_identifier, - [44849] = 2, + [45715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, - ts_builtin_sym_end, - [44856] = 2, + ACTIONS(3276), 1, + sym_string_literal, + [45722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, - anon_sym_catch, - [44863] = 2, + ACTIONS(3278), 1, + anon_sym_LPAREN, + [45729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, - anon_sym_RPAREN, - [44870] = 2, + ACTIONS(3280), 1, + anon_sym_COLON, + [45736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, - anon_sym_COLON, - [44877] = 2, + ACTIONS(3282), 1, + anon_sym_LPAREN, + [45743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - sym_version_value, - [44884] = 2, + ACTIONS(3284), 1, + anon_sym_throw, + [45750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_EQ_GT, - [44891] = 2, + ACTIONS(3286), 1, + sym_identifier, + [45757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_RBRACE, - [44898] = 2, + ACTIONS(3288), 1, + sym_identifier, + [45764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_GT, - [44905] = 2, + ACTIONS(3133), 1, + anon_sym_RBRACE, + [45771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_LPAREN, - [44912] = 2, + ACTIONS(1553), 1, + anon_sym_RPAREN, + [45778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, - sym_number_literal, - [44919] = 2, + ACTIONS(1511), 1, + anon_sym_RPAREN, + [45785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_COLON, - [44926] = 2, + ACTIONS(3290), 1, + sym_identifier, + [45792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, - anon_sym_throw, - [44933] = 2, + ACTIONS(3292), 1, + sym_identifier, + [45799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 1, - anon_sym_LPAREN, - [44940] = 2, + ACTIONS(1053), 1, + anon_sym_RBRACK, + [45806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 1, - anon_sym_RPAREN, - [44947] = 2, + ACTIONS(3294), 1, + sym_identifier, + [45813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3296), 1, sym_identifier, - [44954] = 2, + [45820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3298), 1, sym_identifier, - [44961] = 2, + [45827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 1, - anon_sym_RPAREN, - [44968] = 2, + ACTIONS(3300), 1, + anon_sym_EQ, + [45834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - sym_identifier, - [44975] = 2, + ACTIONS(3302), 1, + anon_sym_LPAREN, + [45841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3304), 1, + anon_sym_COLON, + [45848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3194), 1, anon_sym_RPAREN, - [44982] = 2, + [45855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3306), 1, sym_identifier, - [44989] = 2, + [45862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_RPAREN, - [44996] = 2, + ACTIONS(3308), 1, + sym_identifier, + [45869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_LPAREN, - [45003] = 2, + ACTIONS(3310), 1, + sym_identifier, + [45876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - sym_identifier, - [45010] = 2, + ACTIONS(3312), 1, + anon_sym_EQ, + [45883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_LPAREN, - [45017] = 2, + ACTIONS(3314), 1, + ts_builtin_sym_end, + [45890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 1, + anon_sym_RBRACE, + [45897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3316), 1, anon_sym_while, - [45024] = 2, + [45904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(3318), 1, anon_sym_RPAREN, - [45031] = 2, + [45911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(3320), 1, + sym_identifier, + [45918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_RBRACK, + [45925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3322), 1, anon_sym_LPAREN, - [45038] = 2, + [45932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(3324), 1, sym_identifier, - [45045] = 2, + [45939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - sym_identifier, - [45052] = 2, + ACTIONS(3326), 1, + anon_sym_catch, + [45946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - [45059] = 2, + ACTIONS(3192), 1, + anon_sym_GT, + [45953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, - sym_identifier, + ACTIONS(3328), 1, + anon_sym_LPAREN, + [45960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(81)] = 0, - [SMALL_STATE(82)] = 80, - [SMALL_STATE(83)] = 155, - [SMALL_STATE(84)] = 228, - [SMALL_STATE(85)] = 301, - [SMALL_STATE(86)] = 374, - [SMALL_STATE(87)] = 442, - [SMALL_STATE(88)] = 510, - [SMALL_STATE(89)] = 578, - [SMALL_STATE(90)] = 646, - [SMALL_STATE(91)] = 714, - [SMALL_STATE(92)] = 782, - [SMALL_STATE(93)] = 850, - [SMALL_STATE(94)] = 918, - [SMALL_STATE(95)] = 1016, - [SMALL_STATE(96)] = 1084, - [SMALL_STATE(97)] = 1152, - [SMALL_STATE(98)] = 1219, - [SMALL_STATE(99)] = 1286, - [SMALL_STATE(100)] = 1353, - [SMALL_STATE(101)] = 1420, - [SMALL_STATE(102)] = 1535, - [SMALL_STATE(103)] = 1650, - [SMALL_STATE(104)] = 1765, - [SMALL_STATE(105)] = 1832, - [SMALL_STATE(106)] = 1899, - [SMALL_STATE(107)] = 1966, - [SMALL_STATE(108)] = 2033, - [SMALL_STATE(109)] = 2100, - [SMALL_STATE(110)] = 2167, - [SMALL_STATE(111)] = 2234, - [SMALL_STATE(112)] = 2301, - [SMALL_STATE(113)] = 2368, - [SMALL_STATE(114)] = 2435, - [SMALL_STATE(115)] = 2502, - [SMALL_STATE(116)] = 2569, - [SMALL_STATE(117)] = 2636, - [SMALL_STATE(118)] = 2703, - [SMALL_STATE(119)] = 2770, - [SMALL_STATE(120)] = 2837, - [SMALL_STATE(121)] = 2904, - [SMALL_STATE(122)] = 2971, - [SMALL_STATE(123)] = 3038, - [SMALL_STATE(124)] = 3109, - [SMALL_STATE(125)] = 3176, - [SMALL_STATE(126)] = 3243, - [SMALL_STATE(127)] = 3356, - [SMALL_STATE(128)] = 3469, - [SMALL_STATE(129)] = 3582, - [SMALL_STATE(130)] = 3685, - [SMALL_STATE(131)] = 3798, - [SMALL_STATE(132)] = 3903, - [SMALL_STATE(133)] = 3998, - [SMALL_STATE(134)] = 4089, - [SMALL_STATE(135)] = 4178, - [SMALL_STATE(136)] = 4263, - [SMALL_STATE(137)] = 4358, - [SMALL_STATE(138)] = 4471, - [SMALL_STATE(139)] = 4550, - [SMALL_STATE(140)] = 4663, - [SMALL_STATE(141)] = 4730, - [SMALL_STATE(142)] = 4796, - [SMALL_STATE(143)] = 4866, - [SMALL_STATE(144)] = 4942, - [SMALL_STATE(145)] = 5012, - [SMALL_STATE(146)] = 5090, - [SMALL_STATE(147)] = 5156, - [SMALL_STATE(148)] = 5222, - [SMALL_STATE(149)] = 5288, - [SMALL_STATE(150)] = 5354, - [SMALL_STATE(151)] = 5420, - [SMALL_STATE(152)] = 5486, - [SMALL_STATE(153)] = 5556, - [SMALL_STATE(154)] = 5628, - [SMALL_STATE(155)] = 5700, - [SMALL_STATE(156)] = 5766, - [SMALL_STATE(157)] = 5832, - [SMALL_STATE(158)] = 5898, - [SMALL_STATE(159)] = 5974, - [SMALL_STATE(160)] = 6046, - [SMALL_STATE(161)] = 6118, - [SMALL_STATE(162)] = 6183, - [SMALL_STATE(163)] = 6248, - [SMALL_STATE(164)] = 6313, - [SMALL_STATE(165)] = 6378, - [SMALL_STATE(166)] = 6443, - [SMALL_STATE(167)] = 6508, - [SMALL_STATE(168)] = 6579, - [SMALL_STATE(169)] = 6644, - [SMALL_STATE(170)] = 6709, - [SMALL_STATE(171)] = 6774, - [SMALL_STATE(172)] = 6839, - [SMALL_STATE(173)] = 6904, - [SMALL_STATE(174)] = 6969, - [SMALL_STATE(175)] = 7034, - [SMALL_STATE(176)] = 7099, - [SMALL_STATE(177)] = 7164, - [SMALL_STATE(178)] = 7229, - [SMALL_STATE(179)] = 7294, - [SMALL_STATE(180)] = 7359, - [SMALL_STATE(181)] = 7424, - [SMALL_STATE(182)] = 7489, - [SMALL_STATE(183)] = 7554, - [SMALL_STATE(184)] = 7619, - [SMALL_STATE(185)] = 7684, - [SMALL_STATE(186)] = 7749, - [SMALL_STATE(187)] = 7814, - [SMALL_STATE(188)] = 7879, - [SMALL_STATE(189)] = 7979, - [SMALL_STATE(190)] = 8087, - [SMALL_STATE(191)] = 8195, - [SMALL_STATE(192)] = 8263, - [SMALL_STATE(193)] = 8371, - [SMALL_STATE(194)] = 8479, - [SMALL_STATE(195)] = 8585, - [SMALL_STATE(196)] = 8683, - [SMALL_STATE(197)] = 8789, - [SMALL_STATE(198)] = 8865, - [SMALL_STATE(199)] = 8955, - [SMALL_STATE(200)] = 9041, - [SMALL_STATE(201)] = 9125, - [SMALL_STATE(202)] = 9205, - [SMALL_STATE(203)] = 9295, - [SMALL_STATE(204)] = 9401, - [SMALL_STATE(205)] = 9507, - [SMALL_STATE(206)] = 9575, - [SMALL_STATE(207)] = 9643, - [SMALL_STATE(208)] = 9711, - [SMALL_STATE(209)] = 9777, - [SMALL_STATE(210)] = 9845, - [SMALL_STATE(211)] = 9940, - [SMALL_STATE(212)] = 10035, - [SMALL_STATE(213)] = 10130, - [SMALL_STATE(214)] = 10220, - [SMALL_STATE(215)] = 10312, - [SMALL_STATE(216)] = 10402, - [SMALL_STATE(217)] = 10494, - [SMALL_STATE(218)] = 10586, - [SMALL_STATE(219)] = 10676, - [SMALL_STATE(220)] = 10766, - [SMALL_STATE(221)] = 10856, - [SMALL_STATE(222)] = 10946, - [SMALL_STATE(223)] = 11036, - [SMALL_STATE(224)] = 11113, - [SMALL_STATE(225)] = 11202, - [SMALL_STATE(226)] = 11291, - [SMALL_STATE(227)] = 11380, - [SMALL_STATE(228)] = 11467, - [SMALL_STATE(229)] = 11566, - [SMALL_STATE(230)] = 11665, - [SMALL_STATE(231)] = 11758, - [SMALL_STATE(232)] = 11845, - [SMALL_STATE(233)] = 11936, - [SMALL_STATE(234)] = 12019, - [SMALL_STATE(235)] = 12098, - [SMALL_STATE(236)] = 12187, - [SMALL_STATE(237)] = 12274, - [SMALL_STATE(238)] = 12373, - [SMALL_STATE(239)] = 12446, - [SMALL_STATE(240)] = 12529, - [SMALL_STATE(241)] = 12598, - [SMALL_STATE(242)] = 12697, - [SMALL_STATE(243)] = 12786, - [SMALL_STATE(244)] = 12875, - [SMALL_STATE(245)] = 12962, - [SMALL_STATE(246)] = 13048, - [SMALL_STATE(247)] = 13114, - [SMALL_STATE(248)] = 13182, - [SMALL_STATE(249)] = 13284, - [SMALL_STATE(250)] = 13346, - [SMALL_STATE(251)] = 13408, - [SMALL_STATE(252)] = 13510, - [SMALL_STATE(253)] = 13602, - [SMALL_STATE(254)] = 13704, - [SMALL_STATE(255)] = 13798, - [SMALL_STATE(256)] = 13882, - [SMALL_STATE(257)] = 13962, - [SMALL_STATE(258)] = 14040, - [SMALL_STATE(259)] = 14114, - [SMALL_STATE(260)] = 14198, - [SMALL_STATE(261)] = 14258, - [SMALL_STATE(262)] = 14320, - [SMALL_STATE(263)] = 14422, - [SMALL_STATE(264)] = 14506, - [SMALL_STATE(265)] = 14568, - [SMALL_STATE(266)] = 14634, - [SMALL_STATE(267)] = 14720, - [SMALL_STATE(268)] = 14806, - [SMALL_STATE(269)] = 14908, - [SMALL_STATE(270)] = 14994, - [SMALL_STATE(271)] = 15080, - [SMALL_STATE(272)] = 15166, - [SMALL_STATE(273)] = 15267, - [SMALL_STATE(274)] = 15326, - [SMALL_STATE(275)] = 15387, - [SMALL_STATE(276)] = 15470, - [SMALL_STATE(277)] = 15571, - [SMALL_STATE(278)] = 15654, - [SMALL_STATE(279)] = 15737, - [SMALL_STATE(280)] = 15838, - [SMALL_STATE(281)] = 15939, - [SMALL_STATE(282)] = 16022, - [SMALL_STATE(283)] = 16105, - [SMALL_STATE(284)] = 16188, - [SMALL_STATE(285)] = 16271, - [SMALL_STATE(286)] = 16372, - [SMALL_STATE(287)] = 16455, - [SMALL_STATE(288)] = 16556, - [SMALL_STATE(289)] = 16653, - [SMALL_STATE(290)] = 16736, - [SMALL_STATE(291)] = 16819, - [SMALL_STATE(292)] = 16902, - [SMALL_STATE(293)] = 17003, - [SMALL_STATE(294)] = 17104, - [SMALL_STATE(295)] = 17187, - [SMALL_STATE(296)] = 17270, - [SMALL_STATE(297)] = 17353, - [SMALL_STATE(298)] = 17436, - [SMALL_STATE(299)] = 17519, - [SMALL_STATE(300)] = 17602, - [SMALL_STATE(301)] = 17685, - [SMALL_STATE(302)] = 17746, - [SMALL_STATE(303)] = 17829, - [SMALL_STATE(304)] = 17909, - [SMALL_STATE(305)] = 17989, - [SMALL_STATE(306)] = 18069, - [SMALL_STATE(307)] = 18149, - [SMALL_STATE(308)] = 18229, - [SMALL_STATE(309)] = 18309, - [SMALL_STATE(310)] = 18389, - [SMALL_STATE(311)] = 18469, - [SMALL_STATE(312)] = 18549, - [SMALL_STATE(313)] = 18629, - [SMALL_STATE(314)] = 18709, - [SMALL_STATE(315)] = 18789, - [SMALL_STATE(316)] = 18869, - [SMALL_STATE(317)] = 18949, - [SMALL_STATE(318)] = 19029, - [SMALL_STATE(319)] = 19109, - [SMALL_STATE(320)] = 19189, + [SMALL_STATE(82)] = 0, + [SMALL_STATE(83)] = 80, + [SMALL_STATE(84)] = 155, + [SMALL_STATE(85)] = 228, + [SMALL_STATE(86)] = 301, + [SMALL_STATE(87)] = 376, + [SMALL_STATE(88)] = 449, + [SMALL_STATE(89)] = 517, + [SMALL_STATE(90)] = 585, + [SMALL_STATE(91)] = 653, + [SMALL_STATE(92)] = 721, + [SMALL_STATE(93)] = 789, + [SMALL_STATE(94)] = 857, + [SMALL_STATE(95)] = 957, + [SMALL_STATE(96)] = 1025, + [SMALL_STATE(97)] = 1093, + [SMALL_STATE(98)] = 1161, + [SMALL_STATE(99)] = 1229, + [SMALL_STATE(100)] = 1318, + [SMALL_STATE(101)] = 1385, + [SMALL_STATE(102)] = 1452, + [SMALL_STATE(103)] = 1519, + [SMALL_STATE(104)] = 1586, + [SMALL_STATE(105)] = 1653, + [SMALL_STATE(106)] = 1720, + [SMALL_STATE(107)] = 1787, + [SMALL_STATE(108)] = 1854, + [SMALL_STATE(109)] = 1921, + [SMALL_STATE(110)] = 1988, + [SMALL_STATE(111)] = 2055, + [SMALL_STATE(112)] = 2122, + [SMALL_STATE(113)] = 2189, + [SMALL_STATE(114)] = 2256, + [SMALL_STATE(115)] = 2323, + [SMALL_STATE(116)] = 2402, + [SMALL_STATE(117)] = 2469, + [SMALL_STATE(118)] = 2536, + [SMALL_STATE(119)] = 2603, + [SMALL_STATE(120)] = 2718, + [SMALL_STATE(121)] = 2785, + [SMALL_STATE(122)] = 2866, + [SMALL_STATE(123)] = 2933, + [SMALL_STATE(124)] = 3046, + [SMALL_STATE(125)] = 3161, + [SMALL_STATE(126)] = 3228, + [SMALL_STATE(127)] = 3343, + [SMALL_STATE(128)] = 3410, + [SMALL_STATE(129)] = 3523, + [SMALL_STATE(130)] = 3590, + [SMALL_STATE(131)] = 3657, + [SMALL_STATE(132)] = 3770, + [SMALL_STATE(133)] = 3873, + [SMALL_STATE(134)] = 3986, + [SMALL_STATE(135)] = 4091, + [SMALL_STATE(136)] = 4186, + [SMALL_STATE(137)] = 4277, + [SMALL_STATE(138)] = 4344, + [SMALL_STATE(139)] = 4429, + [SMALL_STATE(140)] = 4524, + [SMALL_STATE(141)] = 4637, + [SMALL_STATE(142)] = 4716, + [SMALL_STATE(143)] = 4829, + [SMALL_STATE(144)] = 4896, + [SMALL_STATE(145)] = 4967, + [SMALL_STATE(146)] = 5039, + [SMALL_STATE(147)] = 5111, + [SMALL_STATE(148)] = 5177, + [SMALL_STATE(149)] = 5243, + [SMALL_STATE(150)] = 5309, + [SMALL_STATE(151)] = 5375, + [SMALL_STATE(152)] = 5441, + [SMALL_STATE(153)] = 5507, + [SMALL_STATE(154)] = 5577, + [SMALL_STATE(155)] = 5649, + [SMALL_STATE(156)] = 5721, + [SMALL_STATE(157)] = 5787, + [SMALL_STATE(158)] = 5853, + [SMALL_STATE(159)] = 5919, + [SMALL_STATE(160)] = 5989, + [SMALL_STATE(161)] = 6055, + [SMALL_STATE(162)] = 6125, + [SMALL_STATE(163)] = 6201, + [SMALL_STATE(164)] = 6266, + [SMALL_STATE(165)] = 6331, + [SMALL_STATE(166)] = 6396, + [SMALL_STATE(167)] = 6461, + [SMALL_STATE(168)] = 6526, + [SMALL_STATE(169)] = 6591, + [SMALL_STATE(170)] = 6656, + [SMALL_STATE(171)] = 6721, + [SMALL_STATE(172)] = 6786, + [SMALL_STATE(173)] = 6851, + [SMALL_STATE(174)] = 6916, + [SMALL_STATE(175)] = 6981, + [SMALL_STATE(176)] = 7046, + [SMALL_STATE(177)] = 7111, + [SMALL_STATE(178)] = 7176, + [SMALL_STATE(179)] = 7241, + [SMALL_STATE(180)] = 7306, + [SMALL_STATE(181)] = 7371, + [SMALL_STATE(182)] = 7436, + [SMALL_STATE(183)] = 7501, + [SMALL_STATE(184)] = 7566, + [SMALL_STATE(185)] = 7631, + [SMALL_STATE(186)] = 7696, + [SMALL_STATE(187)] = 7761, + [SMALL_STATE(188)] = 7826, + [SMALL_STATE(189)] = 7897, + [SMALL_STATE(190)] = 7962, + [SMALL_STATE(191)] = 8033, + [SMALL_STATE(192)] = 8139, + [SMALL_STATE(193)] = 8245, + [SMALL_STATE(194)] = 8321, + [SMALL_STATE(195)] = 8389, + [SMALL_STATE(196)] = 8497, + [SMALL_STATE(197)] = 8605, + [SMALL_STATE(198)] = 8713, + [SMALL_STATE(199)] = 8821, + [SMALL_STATE(200)] = 8919, + [SMALL_STATE(201)] = 9025, + [SMALL_STATE(202)] = 9125, + [SMALL_STATE(203)] = 9215, + [SMALL_STATE(204)] = 9301, + [SMALL_STATE(205)] = 9385, + [SMALL_STATE(206)] = 9465, + [SMALL_STATE(207)] = 9555, + [SMALL_STATE(208)] = 9661, + [SMALL_STATE(209)] = 9727, + [SMALL_STATE(210)] = 9795, + [SMALL_STATE(211)] = 9863, + [SMALL_STATE(212)] = 9931, + [SMALL_STATE(213)] = 9999, + [SMALL_STATE(214)] = 10096, + [SMALL_STATE(215)] = 10193, + [SMALL_STATE(216)] = 10290, + [SMALL_STATE(217)] = 10382, + [SMALL_STATE(218)] = 10474, + [SMALL_STATE(219)] = 10566, + [SMALL_STATE(220)] = 10658, + [SMALL_STATE(221)] = 10750, + [SMALL_STATE(222)] = 10844, + [SMALL_STATE(223)] = 10938, + [SMALL_STATE(224)] = 11030, + [SMALL_STATE(225)] = 11122, + [SMALL_STATE(226)] = 11216, + [SMALL_STATE(227)] = 11305, + [SMALL_STATE(228)] = 11396, + [SMALL_STATE(229)] = 11495, + [SMALL_STATE(230)] = 11564, + [SMALL_STATE(231)] = 11663, + [SMALL_STATE(232)] = 11752, + [SMALL_STATE(233)] = 11851, + [SMALL_STATE(234)] = 11942, + [SMALL_STATE(235)] = 12041, + [SMALL_STATE(236)] = 12134, + [SMALL_STATE(237)] = 12217, + [SMALL_STATE(238)] = 12296, + [SMALL_STATE(239)] = 12373, + [SMALL_STATE(240)] = 12446, + [SMALL_STATE(241)] = 12529, + [SMALL_STATE(242)] = 12618, + [SMALL_STATE(243)] = 12709, + [SMALL_STATE(244)] = 12800, + [SMALL_STATE(245)] = 12891, + [SMALL_STATE(246)] = 12982, + [SMALL_STATE(247)] = 13073, + [SMALL_STATE(248)] = 13162, + [SMALL_STATE(249)] = 13264, + [SMALL_STATE(250)] = 13350, + [SMALL_STATE(251)] = 13452, + [SMALL_STATE(252)] = 13554, + [SMALL_STATE(253)] = 13646, + [SMALL_STATE(254)] = 13748, + [SMALL_STATE(255)] = 13842, + [SMALL_STATE(256)] = 13926, + [SMALL_STATE(257)] = 14006, + [SMALL_STATE(258)] = 14084, + [SMALL_STATE(259)] = 14158, + [SMALL_STATE(260)] = 14246, + [SMALL_STATE(261)] = 14334, + [SMALL_STATE(262)] = 14418, + [SMALL_STATE(263)] = 14478, + [SMALL_STATE(264)] = 14540, + [SMALL_STATE(265)] = 14602, + [SMALL_STATE(266)] = 14664, + [SMALL_STATE(267)] = 14726, + [SMALL_STATE(268)] = 14828, + [SMALL_STATE(269)] = 14894, + [SMALL_STATE(270)] = 14982, + [SMALL_STATE(271)] = 15070, + [SMALL_STATE(272)] = 15136, + [SMALL_STATE(273)] = 15224, + [SMALL_STATE(274)] = 15292, + [SMALL_STATE(275)] = 15380, + [SMALL_STATE(276)] = 15481, + [SMALL_STATE(277)] = 15582, + [SMALL_STATE(278)] = 15667, + [SMALL_STATE(279)] = 15728, + [SMALL_STATE(280)] = 15813, + [SMALL_STATE(281)] = 15874, + [SMALL_STATE(282)] = 15959, + [SMALL_STATE(283)] = 16044, + [SMALL_STATE(284)] = 16141, + [SMALL_STATE(285)] = 16242, + [SMALL_STATE(286)] = 16343, + [SMALL_STATE(287)] = 16428, + [SMALL_STATE(288)] = 16513, + [SMALL_STATE(289)] = 16598, + [SMALL_STATE(290)] = 16683, + [SMALL_STATE(291)] = 16744, + [SMALL_STATE(292)] = 16845, + [SMALL_STATE(293)] = 16930, + [SMALL_STATE(294)] = 17015, + [SMALL_STATE(295)] = 17076, + [SMALL_STATE(296)] = 17161, + [SMALL_STATE(297)] = 17262, + [SMALL_STATE(298)] = 17363, + [SMALL_STATE(299)] = 17464, + [SMALL_STATE(300)] = 17549, + [SMALL_STATE(301)] = 17634, + [SMALL_STATE(302)] = 17719, + [SMALL_STATE(303)] = 17804, + [SMALL_STATE(304)] = 17863, + [SMALL_STATE(305)] = 17948, + [SMALL_STATE(306)] = 18033, + [SMALL_STATE(307)] = 18118, + [SMALL_STATE(308)] = 18203, + [SMALL_STATE(309)] = 18285, + [SMALL_STATE(310)] = 18367, + [SMALL_STATE(311)] = 18449, + [SMALL_STATE(312)] = 18531, + [SMALL_STATE(313)] = 18613, + [SMALL_STATE(314)] = 18695, + [SMALL_STATE(315)] = 18777, + [SMALL_STATE(316)] = 18859, + [SMALL_STATE(317)] = 18941, + [SMALL_STATE(318)] = 19023, + [SMALL_STATE(319)] = 19105, + [SMALL_STATE(320)] = 19187, [SMALL_STATE(321)] = 19269, - [SMALL_STATE(322)] = 19349, - [SMALL_STATE(323)] = 19429, - [SMALL_STATE(324)] = 19509, - [SMALL_STATE(325)] = 19605, - [SMALL_STATE(326)] = 19701, - [SMALL_STATE(327)] = 19781, - [SMALL_STATE(328)] = 19861, - [SMALL_STATE(329)] = 19941, - [SMALL_STATE(330)] = 20021, - [SMALL_STATE(331)] = 20101, - [SMALL_STATE(332)] = 20181, - [SMALL_STATE(333)] = 20261, - [SMALL_STATE(334)] = 20357, - [SMALL_STATE(335)] = 20437, - [SMALL_STATE(336)] = 20517, - [SMALL_STATE(337)] = 20597, - [SMALL_STATE(338)] = 20677, - [SMALL_STATE(339)] = 20757, - [SMALL_STATE(340)] = 20837, - [SMALL_STATE(341)] = 20917, - [SMALL_STATE(342)] = 20997, - [SMALL_STATE(343)] = 21077, - [SMALL_STATE(344)] = 21157, - [SMALL_STATE(345)] = 21237, - [SMALL_STATE(346)] = 21317, - [SMALL_STATE(347)] = 21397, - [SMALL_STATE(348)] = 21477, - [SMALL_STATE(349)] = 21557, - [SMALL_STATE(350)] = 21637, - [SMALL_STATE(351)] = 21717, - [SMALL_STATE(352)] = 21815, - [SMALL_STATE(353)] = 21895, - [SMALL_STATE(354)] = 21975, - [SMALL_STATE(355)] = 22055, - [SMALL_STATE(356)] = 22135, - [SMALL_STATE(357)] = 22215, - [SMALL_STATE(358)] = 22295, - [SMALL_STATE(359)] = 22375, - [SMALL_STATE(360)] = 22455, - [SMALL_STATE(361)] = 22535, - [SMALL_STATE(362)] = 22615, - [SMALL_STATE(363)] = 22695, - [SMALL_STATE(364)] = 22775, - [SMALL_STATE(365)] = 22855, - [SMALL_STATE(366)] = 22935, - [SMALL_STATE(367)] = 23015, - [SMALL_STATE(368)] = 23095, - [SMALL_STATE(369)] = 23191, - [SMALL_STATE(370)] = 23271, - [SMALL_STATE(371)] = 23351, - [SMALL_STATE(372)] = 23431, - [SMALL_STATE(373)] = 23511, - [SMALL_STATE(374)] = 23591, - [SMALL_STATE(375)] = 23671, - [SMALL_STATE(376)] = 23751, - [SMALL_STATE(377)] = 23831, - [SMALL_STATE(378)] = 23927, - [SMALL_STATE(379)] = 24007, - [SMALL_STATE(380)] = 24087, - [SMALL_STATE(381)] = 24167, - [SMALL_STATE(382)] = 24247, - [SMALL_STATE(383)] = 24327, - [SMALL_STATE(384)] = 24423, - [SMALL_STATE(385)] = 24503, - [SMALL_STATE(386)] = 24583, - [SMALL_STATE(387)] = 24663, - [SMALL_STATE(388)] = 24743, - [SMALL_STATE(389)] = 24823, - [SMALL_STATE(390)] = 24903, - [SMALL_STATE(391)] = 24983, - [SMALL_STATE(392)] = 25063, - [SMALL_STATE(393)] = 25143, - [SMALL_STATE(394)] = 25223, - [SMALL_STATE(395)] = 25303, - [SMALL_STATE(396)] = 25383, - [SMALL_STATE(397)] = 25463, - [SMALL_STATE(398)] = 25543, - [SMALL_STATE(399)] = 25639, - [SMALL_STATE(400)] = 25719, - [SMALL_STATE(401)] = 25799, - [SMALL_STATE(402)] = 25879, - [SMALL_STATE(403)] = 25959, - [SMALL_STATE(404)] = 26039, - [SMALL_STATE(405)] = 26119, - [SMALL_STATE(406)] = 26199, - [SMALL_STATE(407)] = 26279, - [SMALL_STATE(408)] = 26359, - [SMALL_STATE(409)] = 26439, - [SMALL_STATE(410)] = 26519, - [SMALL_STATE(411)] = 26599, - [SMALL_STATE(412)] = 26679, - [SMALL_STATE(413)] = 26774, - [SMALL_STATE(414)] = 26869, - [SMALL_STATE(415)] = 26964, - [SMALL_STATE(416)] = 27059, - [SMALL_STATE(417)] = 27154, - [SMALL_STATE(418)] = 27249, - [SMALL_STATE(419)] = 27344, - [SMALL_STATE(420)] = 27439, - [SMALL_STATE(421)] = 27508, - [SMALL_STATE(422)] = 27581, - [SMALL_STATE(423)] = 27676, - [SMALL_STATE(424)] = 27755, - [SMALL_STATE(425)] = 27850, - [SMALL_STATE(426)] = 27945, - [SMALL_STATE(427)] = 28040, - [SMALL_STATE(428)] = 28135, - [SMALL_STATE(429)] = 28230, - [SMALL_STATE(430)] = 28325, - [SMALL_STATE(431)] = 28420, - [SMALL_STATE(432)] = 28515, - [SMALL_STATE(433)] = 28602, - [SMALL_STATE(434)] = 28697, - [SMALL_STATE(435)] = 28786, - [SMALL_STATE(436)] = 28865, - [SMALL_STATE(437)] = 28960, - [SMALL_STATE(438)] = 29025, - [SMALL_STATE(439)] = 29120, - [SMALL_STATE(440)] = 29195, - [SMALL_STATE(441)] = 29258, - [SMALL_STATE(442)] = 29319, - [SMALL_STATE(443)] = 29368, - [SMALL_STATE(444)] = 29411, - [SMALL_STATE(445)] = 29458, - [SMALL_STATE(446)] = 29501, - [SMALL_STATE(447)] = 29544, - [SMALL_STATE(448)] = 29587, - [SMALL_STATE(449)] = 29630, - [SMALL_STATE(450)] = 29673, - [SMALL_STATE(451)] = 29716, - [SMALL_STATE(452)] = 29759, - [SMALL_STATE(453)] = 29802, - [SMALL_STATE(454)] = 29845, - [SMALL_STATE(455)] = 29894, - [SMALL_STATE(456)] = 29937, - [SMALL_STATE(457)] = 29980, - [SMALL_STATE(458)] = 30023, - [SMALL_STATE(459)] = 30066, - [SMALL_STATE(460)] = 30109, - [SMALL_STATE(461)] = 30152, - [SMALL_STATE(462)] = 30195, - [SMALL_STATE(463)] = 30244, - [SMALL_STATE(464)] = 30287, - [SMALL_STATE(465)] = 30330, - [SMALL_STATE(466)] = 30378, - [SMALL_STATE(467)] = 30424, - [SMALL_STATE(468)] = 30471, - [SMALL_STATE(469)] = 30512, - [SMALL_STATE(470)] = 30553, - [SMALL_STATE(471)] = 30593, - [SMALL_STATE(472)] = 30635, - [SMALL_STATE(473)] = 30677, - [SMALL_STATE(474)] = 30716, - [SMALL_STATE(475)] = 30757, - [SMALL_STATE(476)] = 30796, - [SMALL_STATE(477)] = 30835, - [SMALL_STATE(478)] = 30874, - [SMALL_STATE(479)] = 30913, - [SMALL_STATE(480)] = 30952, - [SMALL_STATE(481)] = 30991, - [SMALL_STATE(482)] = 31030, - [SMALL_STATE(483)] = 31069, - [SMALL_STATE(484)] = 31112, - [SMALL_STATE(485)] = 31151, - [SMALL_STATE(486)] = 31190, - [SMALL_STATE(487)] = 31229, - [SMALL_STATE(488)] = 31272, - [SMALL_STATE(489)] = 31315, - [SMALL_STATE(490)] = 31358, - [SMALL_STATE(491)] = 31418, - [SMALL_STATE(492)] = 31478, - [SMALL_STATE(493)] = 31538, - [SMALL_STATE(494)] = 31598, - [SMALL_STATE(495)] = 31658, - [SMALL_STATE(496)] = 31718, - [SMALL_STATE(497)] = 31778, - [SMALL_STATE(498)] = 31838, - [SMALL_STATE(499)] = 31898, - [SMALL_STATE(500)] = 31958, - [SMALL_STATE(501)] = 32018, - [SMALL_STATE(502)] = 32078, - [SMALL_STATE(503)] = 32138, - [SMALL_STATE(504)] = 32198, - [SMALL_STATE(505)] = 32258, - [SMALL_STATE(506)] = 32318, - [SMALL_STATE(507)] = 32378, - [SMALL_STATE(508)] = 32438, - [SMALL_STATE(509)] = 32498, - [SMALL_STATE(510)] = 32558, - [SMALL_STATE(511)] = 32618, - [SMALL_STATE(512)] = 32678, - [SMALL_STATE(513)] = 32738, - [SMALL_STATE(514)] = 32798, - [SMALL_STATE(515)] = 32847, - [SMALL_STATE(516)] = 32894, - [SMALL_STATE(517)] = 32954, - [SMALL_STATE(518)] = 33016, - [SMALL_STATE(519)] = 33078, - [SMALL_STATE(520)] = 33138, - [SMALL_STATE(521)] = 33177, - [SMALL_STATE(522)] = 33221, - [SMALL_STATE(523)] = 33254, - [SMALL_STATE(524)] = 33297, - [SMALL_STATE(525)] = 33330, - [SMALL_STATE(526)] = 33373, - [SMALL_STATE(527)] = 33406, - [SMALL_STATE(528)] = 33439, - [SMALL_STATE(529)] = 33472, - [SMALL_STATE(530)] = 33505, - [SMALL_STATE(531)] = 33538, - [SMALL_STATE(532)] = 33571, - [SMALL_STATE(533)] = 33604, - [SMALL_STATE(534)] = 33647, - [SMALL_STATE(535)] = 33680, - [SMALL_STATE(536)] = 33731, - [SMALL_STATE(537)] = 33782, - [SMALL_STATE(538)] = 33824, - [SMALL_STATE(539)] = 33864, - [SMALL_STATE(540)] = 33909, - [SMALL_STATE(541)] = 33954, - [SMALL_STATE(542)] = 33999, - [SMALL_STATE(543)] = 34044, - [SMALL_STATE(544)] = 34089, - [SMALL_STATE(545)] = 34134, - [SMALL_STATE(546)] = 34179, - [SMALL_STATE(547)] = 34224, - [SMALL_STATE(548)] = 34269, - [SMALL_STATE(549)] = 34314, - [SMALL_STATE(550)] = 34359, - [SMALL_STATE(551)] = 34404, - [SMALL_STATE(552)] = 34449, - [SMALL_STATE(553)] = 34494, - [SMALL_STATE(554)] = 34539, - [SMALL_STATE(555)] = 34584, - [SMALL_STATE(556)] = 34629, - [SMALL_STATE(557)] = 34674, - [SMALL_STATE(558)] = 34719, - [SMALL_STATE(559)] = 34764, - [SMALL_STATE(560)] = 34809, - [SMALL_STATE(561)] = 34854, - [SMALL_STATE(562)] = 34899, - [SMALL_STATE(563)] = 34944, - [SMALL_STATE(564)] = 34989, - [SMALL_STATE(565)] = 35034, - [SMALL_STATE(566)] = 35079, - [SMALL_STATE(567)] = 35124, - [SMALL_STATE(568)] = 35169, - [SMALL_STATE(569)] = 35214, - [SMALL_STATE(570)] = 35259, - [SMALL_STATE(571)] = 35304, - [SMALL_STATE(572)] = 35334, - [SMALL_STATE(573)] = 35364, - [SMALL_STATE(574)] = 35394, - [SMALL_STATE(575)] = 35424, - [SMALL_STATE(576)] = 35454, - [SMALL_STATE(577)] = 35484, - [SMALL_STATE(578)] = 35514, - [SMALL_STATE(579)] = 35544, - [SMALL_STATE(580)] = 35574, - [SMALL_STATE(581)] = 35601, - [SMALL_STATE(582)] = 35640, - [SMALL_STATE(583)] = 35667, - [SMALL_STATE(584)] = 35694, - [SMALL_STATE(585)] = 35721, - [SMALL_STATE(586)] = 35748, - [SMALL_STATE(587)] = 35787, - [SMALL_STATE(588)] = 35826, - [SMALL_STATE(589)] = 35865, - [SMALL_STATE(590)] = 35892, - [SMALL_STATE(591)] = 35931, - [SMALL_STATE(592)] = 35958, - [SMALL_STATE(593)] = 35997, - [SMALL_STATE(594)] = 36024, - [SMALL_STATE(595)] = 36063, - [SMALL_STATE(596)] = 36102, - [SMALL_STATE(597)] = 36129, - [SMALL_STATE(598)] = 36168, - [SMALL_STATE(599)] = 36195, - [SMALL_STATE(600)] = 36234, - [SMALL_STATE(601)] = 36273, - [SMALL_STATE(602)] = 36300, - [SMALL_STATE(603)] = 36327, - [SMALL_STATE(604)] = 36366, - [SMALL_STATE(605)] = 36396, - [SMALL_STATE(606)] = 36420, - [SMALL_STATE(607)] = 36444, - [SMALL_STATE(608)] = 36472, - [SMALL_STATE(609)] = 36502, - [SMALL_STATE(610)] = 36526, - [SMALL_STATE(611)] = 36550, - [SMALL_STATE(612)] = 36583, - [SMALL_STATE(613)] = 36616, - [SMALL_STATE(614)] = 36646, - [SMALL_STATE(615)] = 36676, - [SMALL_STATE(616)] = 36698, - [SMALL_STATE(617)] = 36728, - [SMALL_STATE(618)] = 36758, - [SMALL_STATE(619)] = 36780, - [SMALL_STATE(620)] = 36802, - [SMALL_STATE(621)] = 36824, - [SMALL_STATE(622)] = 36853, - [SMALL_STATE(623)] = 36882, - [SMALL_STATE(624)] = 36911, - [SMALL_STATE(625)] = 36940, - [SMALL_STATE(626)] = 36965, - [SMALL_STATE(627)] = 36992, - [SMALL_STATE(628)] = 37021, - [SMALL_STATE(629)] = 37050, - [SMALL_STATE(630)] = 37079, - [SMALL_STATE(631)] = 37106, - [SMALL_STATE(632)] = 37135, - [SMALL_STATE(633)] = 37170, - [SMALL_STATE(634)] = 37199, - [SMALL_STATE(635)] = 37228, - [SMALL_STATE(636)] = 37248, - [SMALL_STATE(637)] = 37272, - [SMALL_STATE(638)] = 37298, - [SMALL_STATE(639)] = 37322, - [SMALL_STATE(640)] = 37348, - [SMALL_STATE(641)] = 37372, - [SMALL_STATE(642)] = 37396, - [SMALL_STATE(643)] = 37422, - [SMALL_STATE(644)] = 37442, - [SMALL_STATE(645)] = 37468, - [SMALL_STATE(646)] = 37494, - [SMALL_STATE(647)] = 37518, - [SMALL_STATE(648)] = 37538, - [SMALL_STATE(649)] = 37567, - [SMALL_STATE(650)] = 37596, - [SMALL_STATE(651)] = 37625, - [SMALL_STATE(652)] = 37654, - [SMALL_STATE(653)] = 37683, - [SMALL_STATE(654)] = 37712, - [SMALL_STATE(655)] = 37741, - [SMALL_STATE(656)] = 37770, - [SMALL_STATE(657)] = 37799, - [SMALL_STATE(658)] = 37828, - [SMALL_STATE(659)] = 37857, - [SMALL_STATE(660)] = 37886, - [SMALL_STATE(661)] = 37915, - [SMALL_STATE(662)] = 37944, - [SMALL_STATE(663)] = 37973, - [SMALL_STATE(664)] = 38002, - [SMALL_STATE(665)] = 38031, - [SMALL_STATE(666)] = 38060, - [SMALL_STATE(667)] = 38089, - [SMALL_STATE(668)] = 38118, - [SMALL_STATE(669)] = 38136, - [SMALL_STATE(670)] = 38162, - [SMALL_STATE(671)] = 38180, - [SMALL_STATE(672)] = 38198, - [SMALL_STATE(673)] = 38216, - [SMALL_STATE(674)] = 38234, - [SMALL_STATE(675)] = 38252, - [SMALL_STATE(676)] = 38270, - [SMALL_STATE(677)] = 38290, - [SMALL_STATE(678)] = 38308, - [SMALL_STATE(679)] = 38326, - [SMALL_STATE(680)] = 38344, - [SMALL_STATE(681)] = 38362, - [SMALL_STATE(682)] = 38380, - [SMALL_STATE(683)] = 38406, - [SMALL_STATE(684)] = 38424, - [SMALL_STATE(685)] = 38442, - [SMALL_STATE(686)] = 38460, - [SMALL_STATE(687)] = 38478, - [SMALL_STATE(688)] = 38496, - [SMALL_STATE(689)] = 38514, - [SMALL_STATE(690)] = 38540, - [SMALL_STATE(691)] = 38566, - [SMALL_STATE(692)] = 38584, - [SMALL_STATE(693)] = 38610, - [SMALL_STATE(694)] = 38628, - [SMALL_STATE(695)] = 38646, - [SMALL_STATE(696)] = 38672, - [SMALL_STATE(697)] = 38698, - [SMALL_STATE(698)] = 38724, - [SMALL_STATE(699)] = 38742, - [SMALL_STATE(700)] = 38760, - [SMALL_STATE(701)] = 38786, - [SMALL_STATE(702)] = 38804, - [SMALL_STATE(703)] = 38822, - [SMALL_STATE(704)] = 38840, - [SMALL_STATE(705)] = 38858, - [SMALL_STATE(706)] = 38876, - [SMALL_STATE(707)] = 38894, - [SMALL_STATE(708)] = 38912, - [SMALL_STATE(709)] = 38930, - [SMALL_STATE(710)] = 38956, - [SMALL_STATE(711)] = 38982, - [SMALL_STATE(712)] = 39000, - [SMALL_STATE(713)] = 39026, - [SMALL_STATE(714)] = 39044, - [SMALL_STATE(715)] = 39064, - [SMALL_STATE(716)] = 39090, - [SMALL_STATE(717)] = 39116, - [SMALL_STATE(718)] = 39134, - [SMALL_STATE(719)] = 39160, - [SMALL_STATE(720)] = 39186, - [SMALL_STATE(721)] = 39206, - [SMALL_STATE(722)] = 39224, - [SMALL_STATE(723)] = 39250, - [SMALL_STATE(724)] = 39268, - [SMALL_STATE(725)] = 39286, - [SMALL_STATE(726)] = 39304, - [SMALL_STATE(727)] = 39330, - [SMALL_STATE(728)] = 39356, - [SMALL_STATE(729)] = 39374, - [SMALL_STATE(730)] = 39400, - [SMALL_STATE(731)] = 39418, - [SMALL_STATE(732)] = 39436, - [SMALL_STATE(733)] = 39454, - [SMALL_STATE(734)] = 39472, - [SMALL_STATE(735)] = 39490, - [SMALL_STATE(736)] = 39508, - [SMALL_STATE(737)] = 39526, - [SMALL_STATE(738)] = 39544, - [SMALL_STATE(739)] = 39562, - [SMALL_STATE(740)] = 39580, - [SMALL_STATE(741)] = 39606, - [SMALL_STATE(742)] = 39632, - [SMALL_STATE(743)] = 39650, - [SMALL_STATE(744)] = 39668, - [SMALL_STATE(745)] = 39694, - [SMALL_STATE(746)] = 39712, - [SMALL_STATE(747)] = 39730, - [SMALL_STATE(748)] = 39748, - [SMALL_STATE(749)] = 39766, - [SMALL_STATE(750)] = 39784, - [SMALL_STATE(751)] = 39802, - [SMALL_STATE(752)] = 39820, - [SMALL_STATE(753)] = 39838, - [SMALL_STATE(754)] = 39856, - [SMALL_STATE(755)] = 39874, - [SMALL_STATE(756)] = 39892, - [SMALL_STATE(757)] = 39910, - [SMALL_STATE(758)] = 39928, - [SMALL_STATE(759)] = 39946, - [SMALL_STATE(760)] = 39964, - [SMALL_STATE(761)] = 39982, - [SMALL_STATE(762)] = 40000, - [SMALL_STATE(763)] = 40026, - [SMALL_STATE(764)] = 40052, - [SMALL_STATE(765)] = 40070, - [SMALL_STATE(766)] = 40090, - [SMALL_STATE(767)] = 40108, - [SMALL_STATE(768)] = 40128, - [SMALL_STATE(769)] = 40146, - [SMALL_STATE(770)] = 40164, - [SMALL_STATE(771)] = 40182, - [SMALL_STATE(772)] = 40200, - [SMALL_STATE(773)] = 40218, - [SMALL_STATE(774)] = 40244, - [SMALL_STATE(775)] = 40262, - [SMALL_STATE(776)] = 40280, - [SMALL_STATE(777)] = 40298, - [SMALL_STATE(778)] = 40316, - [SMALL_STATE(779)] = 40334, - [SMALL_STATE(780)] = 40352, - [SMALL_STATE(781)] = 40370, - [SMALL_STATE(782)] = 40396, - [SMALL_STATE(783)] = 40422, - [SMALL_STATE(784)] = 40440, - [SMALL_STATE(785)] = 40458, - [SMALL_STATE(786)] = 40476, - [SMALL_STATE(787)] = 40494, - [SMALL_STATE(788)] = 40514, - [SMALL_STATE(789)] = 40532, - [SMALL_STATE(790)] = 40558, - [SMALL_STATE(791)] = 40584, - [SMALL_STATE(792)] = 40610, - [SMALL_STATE(793)] = 40628, - [SMALL_STATE(794)] = 40646, - [SMALL_STATE(795)] = 40664, - [SMALL_STATE(796)] = 40690, - [SMALL_STATE(797)] = 40708, - [SMALL_STATE(798)] = 40726, - [SMALL_STATE(799)] = 40744, - [SMALL_STATE(800)] = 40770, - [SMALL_STATE(801)] = 40796, - [SMALL_STATE(802)] = 40822, - [SMALL_STATE(803)] = 40840, - [SMALL_STATE(804)] = 40858, - [SMALL_STATE(805)] = 40876, - [SMALL_STATE(806)] = 40894, - [SMALL_STATE(807)] = 40912, - [SMALL_STATE(808)] = 40930, - [SMALL_STATE(809)] = 40948, - [SMALL_STATE(810)] = 40966, - [SMALL_STATE(811)] = 40984, - [SMALL_STATE(812)] = 41002, - [SMALL_STATE(813)] = 41020, - [SMALL_STATE(814)] = 41046, - [SMALL_STATE(815)] = 41072, - [SMALL_STATE(816)] = 41098, - [SMALL_STATE(817)] = 41124, - [SMALL_STATE(818)] = 41142, - [SMALL_STATE(819)] = 41160, - [SMALL_STATE(820)] = 41186, - [SMALL_STATE(821)] = 41212, - [SMALL_STATE(822)] = 41230, - [SMALL_STATE(823)] = 41248, - [SMALL_STATE(824)] = 41274, - [SMALL_STATE(825)] = 41300, - [SMALL_STATE(826)] = 41318, - [SMALL_STATE(827)] = 41336, - [SMALL_STATE(828)] = 41354, - [SMALL_STATE(829)] = 41380, - [SMALL_STATE(830)] = 41406, - [SMALL_STATE(831)] = 41424, - [SMALL_STATE(832)] = 41450, - [SMALL_STATE(833)] = 41476, - [SMALL_STATE(834)] = 41494, - [SMALL_STATE(835)] = 41520, - [SMALL_STATE(836)] = 41546, - [SMALL_STATE(837)] = 41572, - [SMALL_STATE(838)] = 41598, - [SMALL_STATE(839)] = 41624, - [SMALL_STATE(840)] = 41650, - [SMALL_STATE(841)] = 41668, - [SMALL_STATE(842)] = 41694, - [SMALL_STATE(843)] = 41712, - [SMALL_STATE(844)] = 41732, - [SMALL_STATE(845)] = 41758, - [SMALL_STATE(846)] = 41776, - [SMALL_STATE(847)] = 41796, - [SMALL_STATE(848)] = 41814, - [SMALL_STATE(849)] = 41839, - [SMALL_STATE(850)] = 41862, - [SMALL_STATE(851)] = 41887, - [SMALL_STATE(852)] = 41912, - [SMALL_STATE(853)] = 41932, - [SMALL_STATE(854)] = 41952, - [SMALL_STATE(855)] = 41972, - [SMALL_STATE(856)] = 41994, - [SMALL_STATE(857)] = 42016, - [SMALL_STATE(858)] = 42044, - [SMALL_STATE(859)] = 42066, - [SMALL_STATE(860)] = 42080, - [SMALL_STATE(861)] = 42094, - [SMALL_STATE(862)] = 42108, - [SMALL_STATE(863)] = 42136, - [SMALL_STATE(864)] = 42158, - [SMALL_STATE(865)] = 42172, - [SMALL_STATE(866)] = 42194, - [SMALL_STATE(867)] = 42208, - [SMALL_STATE(868)] = 42230, - [SMALL_STATE(869)] = 42244, - [SMALL_STATE(870)] = 42269, - [SMALL_STATE(871)] = 42288, - [SMALL_STATE(872)] = 42307, - [SMALL_STATE(873)] = 42326, - [SMALL_STATE(874)] = 42345, - [SMALL_STATE(875)] = 42364, - [SMALL_STATE(876)] = 42383, - [SMALL_STATE(877)] = 42402, - [SMALL_STATE(878)] = 42424, - [SMALL_STATE(879)] = 42446, - [SMALL_STATE(880)] = 42468, - [SMALL_STATE(881)] = 42490, - [SMALL_STATE(882)] = 42510, - [SMALL_STATE(883)] = 42532, - [SMALL_STATE(884)] = 42552, - [SMALL_STATE(885)] = 42574, - [SMALL_STATE(886)] = 42596, - [SMALL_STATE(887)] = 42618, - [SMALL_STATE(888)] = 42640, - [SMALL_STATE(889)] = 42658, - [SMALL_STATE(890)] = 42680, - [SMALL_STATE(891)] = 42696, - [SMALL_STATE(892)] = 42718, - [SMALL_STATE(893)] = 42740, - [SMALL_STATE(894)] = 42762, - [SMALL_STATE(895)] = 42780, - [SMALL_STATE(896)] = 42802, - [SMALL_STATE(897)] = 42824, - [SMALL_STATE(898)] = 42846, - [SMALL_STATE(899)] = 42864, - [SMALL_STATE(900)] = 42883, - [SMALL_STATE(901)] = 42900, - [SMALL_STATE(902)] = 42917, - [SMALL_STATE(903)] = 42932, - [SMALL_STATE(904)] = 42949, - [SMALL_STATE(905)] = 42968, - [SMALL_STATE(906)] = 42987, - [SMALL_STATE(907)] = 43006, - [SMALL_STATE(908)] = 43023, - [SMALL_STATE(909)] = 43040, - [SMALL_STATE(910)] = 43054, - [SMALL_STATE(911)] = 43070, - [SMALL_STATE(912)] = 43086, - [SMALL_STATE(913)] = 43102, - [SMALL_STATE(914)] = 43118, - [SMALL_STATE(915)] = 43132, - [SMALL_STATE(916)] = 43146, - [SMALL_STATE(917)] = 43162, - [SMALL_STATE(918)] = 43178, - [SMALL_STATE(919)] = 43190, - [SMALL_STATE(920)] = 43204, - [SMALL_STATE(921)] = 43218, - [SMALL_STATE(922)] = 43234, - [SMALL_STATE(923)] = 43250, - [SMALL_STATE(924)] = 43266, - [SMALL_STATE(925)] = 43282, - [SMALL_STATE(926)] = 43298, - [SMALL_STATE(927)] = 43314, - [SMALL_STATE(928)] = 43328, - [SMALL_STATE(929)] = 43338, - [SMALL_STATE(930)] = 43352, - [SMALL_STATE(931)] = 43368, - [SMALL_STATE(932)] = 43381, - [SMALL_STATE(933)] = 43394, - [SMALL_STATE(934)] = 43407, - [SMALL_STATE(935)] = 43420, - [SMALL_STATE(936)] = 43433, - [SMALL_STATE(937)] = 43446, - [SMALL_STATE(938)] = 43459, - [SMALL_STATE(939)] = 43472, - [SMALL_STATE(940)] = 43485, - [SMALL_STATE(941)] = 43498, - [SMALL_STATE(942)] = 43511, - [SMALL_STATE(943)] = 43524, - [SMALL_STATE(944)] = 43537, - [SMALL_STATE(945)] = 43546, - [SMALL_STATE(946)] = 43559, - [SMALL_STATE(947)] = 43572, - [SMALL_STATE(948)] = 43585, - [SMALL_STATE(949)] = 43598, - [SMALL_STATE(950)] = 43611, - [SMALL_STATE(951)] = 43624, - [SMALL_STATE(952)] = 43637, - [SMALL_STATE(953)] = 43650, - [SMALL_STATE(954)] = 43663, - [SMALL_STATE(955)] = 43676, - [SMALL_STATE(956)] = 43689, - [SMALL_STATE(957)] = 43702, - [SMALL_STATE(958)] = 43715, - [SMALL_STATE(959)] = 43728, - [SMALL_STATE(960)] = 43741, - [SMALL_STATE(961)] = 43754, - [SMALL_STATE(962)] = 43767, - [SMALL_STATE(963)] = 43780, - [SMALL_STATE(964)] = 43793, - [SMALL_STATE(965)] = 43806, - [SMALL_STATE(966)] = 43819, - [SMALL_STATE(967)] = 43832, - [SMALL_STATE(968)] = 43845, - [SMALL_STATE(969)] = 43858, - [SMALL_STATE(970)] = 43871, - [SMALL_STATE(971)] = 43884, - [SMALL_STATE(972)] = 43897, - [SMALL_STATE(973)] = 43910, - [SMALL_STATE(974)] = 43923, - [SMALL_STATE(975)] = 43936, - [SMALL_STATE(976)] = 43949, - [SMALL_STATE(977)] = 43962, - [SMALL_STATE(978)] = 43975, - [SMALL_STATE(979)] = 43988, - [SMALL_STATE(980)] = 44001, - [SMALL_STATE(981)] = 44014, - [SMALL_STATE(982)] = 44027, - [SMALL_STATE(983)] = 44040, - [SMALL_STATE(984)] = 44053, - [SMALL_STATE(985)] = 44066, - [SMALL_STATE(986)] = 44077, - [SMALL_STATE(987)] = 44090, - [SMALL_STATE(988)] = 44103, - [SMALL_STATE(989)] = 44116, - [SMALL_STATE(990)] = 44129, - [SMALL_STATE(991)] = 44142, - [SMALL_STATE(992)] = 44155, - [SMALL_STATE(993)] = 44168, - [SMALL_STATE(994)] = 44181, - [SMALL_STATE(995)] = 44194, - [SMALL_STATE(996)] = 44205, - [SMALL_STATE(997)] = 44218, - [SMALL_STATE(998)] = 44231, - [SMALL_STATE(999)] = 44244, - [SMALL_STATE(1000)] = 44257, - [SMALL_STATE(1001)] = 44270, - [SMALL_STATE(1002)] = 44283, - [SMALL_STATE(1003)] = 44296, - [SMALL_STATE(1004)] = 44309, - [SMALL_STATE(1005)] = 44318, - [SMALL_STATE(1006)] = 44331, - [SMALL_STATE(1007)] = 44344, - [SMALL_STATE(1008)] = 44357, - [SMALL_STATE(1009)] = 44370, - [SMALL_STATE(1010)] = 44378, - [SMALL_STATE(1011)] = 44388, - [SMALL_STATE(1012)] = 44398, - [SMALL_STATE(1013)] = 44408, - [SMALL_STATE(1014)] = 44418, - [SMALL_STATE(1015)] = 44426, - [SMALL_STATE(1016)] = 44436, - [SMALL_STATE(1017)] = 44446, - [SMALL_STATE(1018)] = 44456, - [SMALL_STATE(1019)] = 44464, - [SMALL_STATE(1020)] = 44474, - [SMALL_STATE(1021)] = 44484, - [SMALL_STATE(1022)] = 44494, - [SMALL_STATE(1023)] = 44502, - [SMALL_STATE(1024)] = 44510, - [SMALL_STATE(1025)] = 44518, - [SMALL_STATE(1026)] = 44528, - [SMALL_STATE(1027)] = 44538, - [SMALL_STATE(1028)] = 44548, - [SMALL_STATE(1029)] = 44558, - [SMALL_STATE(1030)] = 44568, - [SMALL_STATE(1031)] = 44578, - [SMALL_STATE(1032)] = 44588, - [SMALL_STATE(1033)] = 44598, - [SMALL_STATE(1034)] = 44608, - [SMALL_STATE(1035)] = 44616, - [SMALL_STATE(1036)] = 44626, - [SMALL_STATE(1037)] = 44636, - [SMALL_STATE(1038)] = 44646, - [SMALL_STATE(1039)] = 44653, - [SMALL_STATE(1040)] = 44660, - [SMALL_STATE(1041)] = 44667, - [SMALL_STATE(1042)] = 44674, - [SMALL_STATE(1043)] = 44681, - [SMALL_STATE(1044)] = 44688, - [SMALL_STATE(1045)] = 44695, - [SMALL_STATE(1046)] = 44702, - [SMALL_STATE(1047)] = 44709, - [SMALL_STATE(1048)] = 44716, - [SMALL_STATE(1049)] = 44723, - [SMALL_STATE(1050)] = 44730, - [SMALL_STATE(1051)] = 44737, - [SMALL_STATE(1052)] = 44744, - [SMALL_STATE(1053)] = 44751, - [SMALL_STATE(1054)] = 44758, - [SMALL_STATE(1055)] = 44765, - [SMALL_STATE(1056)] = 44772, - [SMALL_STATE(1057)] = 44779, - [SMALL_STATE(1058)] = 44786, - [SMALL_STATE(1059)] = 44793, - [SMALL_STATE(1060)] = 44800, - [SMALL_STATE(1061)] = 44807, - [SMALL_STATE(1062)] = 44814, - [SMALL_STATE(1063)] = 44821, - [SMALL_STATE(1064)] = 44828, - [SMALL_STATE(1065)] = 44835, - [SMALL_STATE(1066)] = 44842, - [SMALL_STATE(1067)] = 44849, - [SMALL_STATE(1068)] = 44856, - [SMALL_STATE(1069)] = 44863, - [SMALL_STATE(1070)] = 44870, - [SMALL_STATE(1071)] = 44877, - [SMALL_STATE(1072)] = 44884, - [SMALL_STATE(1073)] = 44891, - [SMALL_STATE(1074)] = 44898, - [SMALL_STATE(1075)] = 44905, - [SMALL_STATE(1076)] = 44912, - [SMALL_STATE(1077)] = 44919, - [SMALL_STATE(1078)] = 44926, - [SMALL_STATE(1079)] = 44933, - [SMALL_STATE(1080)] = 44940, - [SMALL_STATE(1081)] = 44947, - [SMALL_STATE(1082)] = 44954, - [SMALL_STATE(1083)] = 44961, - [SMALL_STATE(1084)] = 44968, - [SMALL_STATE(1085)] = 44975, - [SMALL_STATE(1086)] = 44982, - [SMALL_STATE(1087)] = 44989, - [SMALL_STATE(1088)] = 44996, - [SMALL_STATE(1089)] = 45003, - [SMALL_STATE(1090)] = 45010, - [SMALL_STATE(1091)] = 45017, - [SMALL_STATE(1092)] = 45024, - [SMALL_STATE(1093)] = 45031, - [SMALL_STATE(1094)] = 45038, - [SMALL_STATE(1095)] = 45045, - [SMALL_STATE(1096)] = 45052, - [SMALL_STATE(1097)] = 45059, + [SMALL_STATE(322)] = 19351, + [SMALL_STATE(323)] = 19433, + [SMALL_STATE(324)] = 19515, + [SMALL_STATE(325)] = 19597, + [SMALL_STATE(326)] = 19679, + [SMALL_STATE(327)] = 19761, + [SMALL_STATE(328)] = 19843, + [SMALL_STATE(329)] = 19925, + [SMALL_STATE(330)] = 20007, + [SMALL_STATE(331)] = 20089, + [SMALL_STATE(332)] = 20171, + [SMALL_STATE(333)] = 20253, + [SMALL_STATE(334)] = 20335, + [SMALL_STATE(335)] = 20417, + [SMALL_STATE(336)] = 20499, + [SMALL_STATE(337)] = 20581, + [SMALL_STATE(338)] = 20663, + [SMALL_STATE(339)] = 20745, + [SMALL_STATE(340)] = 20827, + [SMALL_STATE(341)] = 20923, + [SMALL_STATE(342)] = 21005, + [SMALL_STATE(343)] = 21087, + [SMALL_STATE(344)] = 21185, + [SMALL_STATE(345)] = 21267, + [SMALL_STATE(346)] = 21363, + [SMALL_STATE(347)] = 21445, + [SMALL_STATE(348)] = 21527, + [SMALL_STATE(349)] = 21609, + [SMALL_STATE(350)] = 21691, + [SMALL_STATE(351)] = 21787, + [SMALL_STATE(352)] = 21869, + [SMALL_STATE(353)] = 21951, + [SMALL_STATE(354)] = 22033, + [SMALL_STATE(355)] = 22115, + [SMALL_STATE(356)] = 22197, + [SMALL_STATE(357)] = 22279, + [SMALL_STATE(358)] = 22361, + [SMALL_STATE(359)] = 22443, + [SMALL_STATE(360)] = 22539, + [SMALL_STATE(361)] = 22621, + [SMALL_STATE(362)] = 22703, + [SMALL_STATE(363)] = 22785, + [SMALL_STATE(364)] = 22867, + [SMALL_STATE(365)] = 22949, + [SMALL_STATE(366)] = 23031, + [SMALL_STATE(367)] = 23113, + [SMALL_STATE(368)] = 23195, + [SMALL_STATE(369)] = 23277, + [SMALL_STATE(370)] = 23359, + [SMALL_STATE(371)] = 23441, + [SMALL_STATE(372)] = 23537, + [SMALL_STATE(373)] = 23619, + [SMALL_STATE(374)] = 23701, + [SMALL_STATE(375)] = 23783, + [SMALL_STATE(376)] = 23865, + [SMALL_STATE(377)] = 23947, + [SMALL_STATE(378)] = 24029, + [SMALL_STATE(379)] = 24111, + [SMALL_STATE(380)] = 24193, + [SMALL_STATE(381)] = 24275, + [SMALL_STATE(382)] = 24357, + [SMALL_STATE(383)] = 24439, + [SMALL_STATE(384)] = 24521, + [SMALL_STATE(385)] = 24603, + [SMALL_STATE(386)] = 24685, + [SMALL_STATE(387)] = 24767, + [SMALL_STATE(388)] = 24849, + [SMALL_STATE(389)] = 24945, + [SMALL_STATE(390)] = 25027, + [SMALL_STATE(391)] = 25109, + [SMALL_STATE(392)] = 25191, + [SMALL_STATE(393)] = 25273, + [SMALL_STATE(394)] = 25355, + [SMALL_STATE(395)] = 25437, + [SMALL_STATE(396)] = 25519, + [SMALL_STATE(397)] = 25601, + [SMALL_STATE(398)] = 25683, + [SMALL_STATE(399)] = 25765, + [SMALL_STATE(400)] = 25847, + [SMALL_STATE(401)] = 25929, + [SMALL_STATE(402)] = 26011, + [SMALL_STATE(403)] = 26107, + [SMALL_STATE(404)] = 26189, + [SMALL_STATE(405)] = 26271, + [SMALL_STATE(406)] = 26353, + [SMALL_STATE(407)] = 26435, + [SMALL_STATE(408)] = 26517, + [SMALL_STATE(409)] = 26599, + [SMALL_STATE(410)] = 26681, + [SMALL_STATE(411)] = 26763, + [SMALL_STATE(412)] = 26845, + [SMALL_STATE(413)] = 26927, + [SMALL_STATE(414)] = 27009, + [SMALL_STATE(415)] = 27091, + [SMALL_STATE(416)] = 27173, + [SMALL_STATE(417)] = 27255, + [SMALL_STATE(418)] = 27350, + [SMALL_STATE(419)] = 27445, + [SMALL_STATE(420)] = 27540, + [SMALL_STATE(421)] = 27635, + [SMALL_STATE(422)] = 27730, + [SMALL_STATE(423)] = 27825, + [SMALL_STATE(424)] = 27912, + [SMALL_STATE(425)] = 28007, + [SMALL_STATE(426)] = 28096, + [SMALL_STATE(427)] = 28175, + [SMALL_STATE(428)] = 28250, + [SMALL_STATE(429)] = 28323, + [SMALL_STATE(430)] = 28402, + [SMALL_STATE(431)] = 28497, + [SMALL_STATE(432)] = 28592, + [SMALL_STATE(433)] = 28687, + [SMALL_STATE(434)] = 28782, + [SMALL_STATE(435)] = 28877, + [SMALL_STATE(436)] = 28972, + [SMALL_STATE(437)] = 29037, + [SMALL_STATE(438)] = 29132, + [SMALL_STATE(439)] = 29227, + [SMALL_STATE(440)] = 29322, + [SMALL_STATE(441)] = 29391, + [SMALL_STATE(442)] = 29486, + [SMALL_STATE(443)] = 29581, + [SMALL_STATE(444)] = 29676, + [SMALL_STATE(445)] = 29771, + [SMALL_STATE(446)] = 29834, + [SMALL_STATE(447)] = 29899, + [SMALL_STATE(448)] = 29948, + [SMALL_STATE(449)] = 29991, + [SMALL_STATE(450)] = 30034, + [SMALL_STATE(451)] = 30077, + [SMALL_STATE(452)] = 30120, + [SMALL_STATE(453)] = 30163, + [SMALL_STATE(454)] = 30206, + [SMALL_STATE(455)] = 30249, + [SMALL_STATE(456)] = 30292, + [SMALL_STATE(457)] = 30335, + [SMALL_STATE(458)] = 30378, + [SMALL_STATE(459)] = 30427, + [SMALL_STATE(460)] = 30470, + [SMALL_STATE(461)] = 30513, + [SMALL_STATE(462)] = 30556, + [SMALL_STATE(463)] = 30599, + [SMALL_STATE(464)] = 30642, + [SMALL_STATE(465)] = 30685, + [SMALL_STATE(466)] = 30734, + [SMALL_STATE(467)] = 30781, + [SMALL_STATE(468)] = 30824, + [SMALL_STATE(469)] = 30867, + [SMALL_STATE(470)] = 30910, + [SMALL_STATE(471)] = 30956, + [SMALL_STATE(472)] = 31004, + [SMALL_STATE(473)] = 31045, + [SMALL_STATE(474)] = 31086, + [SMALL_STATE(475)] = 31133, + [SMALL_STATE(476)] = 31175, + [SMALL_STATE(477)] = 31215, + [SMALL_STATE(478)] = 31257, + [SMALL_STATE(479)] = 31320, + [SMALL_STATE(480)] = 31383, + [SMALL_STATE(481)] = 31422, + [SMALL_STATE(482)] = 31485, + [SMALL_STATE(483)] = 31548, + [SMALL_STATE(484)] = 31591, + [SMALL_STATE(485)] = 31632, + [SMALL_STATE(486)] = 31695, + [SMALL_STATE(487)] = 31758, + [SMALL_STATE(488)] = 31801, + [SMALL_STATE(489)] = 31864, + [SMALL_STATE(490)] = 31907, + [SMALL_STATE(491)] = 31970, + [SMALL_STATE(492)] = 32009, + [SMALL_STATE(493)] = 32048, + [SMALL_STATE(494)] = 32111, + [SMALL_STATE(495)] = 32174, + [SMALL_STATE(496)] = 32237, + [SMALL_STATE(497)] = 32276, + [SMALL_STATE(498)] = 32339, + [SMALL_STATE(499)] = 32402, + [SMALL_STATE(500)] = 32465, + [SMALL_STATE(501)] = 32504, + [SMALL_STATE(502)] = 32547, + [SMALL_STATE(503)] = 32586, + [SMALL_STATE(504)] = 32649, + [SMALL_STATE(505)] = 32712, + [SMALL_STATE(506)] = 32751, + [SMALL_STATE(507)] = 32814, + [SMALL_STATE(508)] = 32853, + [SMALL_STATE(509)] = 32916, + [SMALL_STATE(510)] = 32979, + [SMALL_STATE(511)] = 33042, + [SMALL_STATE(512)] = 33081, + [SMALL_STATE(513)] = 33144, + [SMALL_STATE(514)] = 33207, + [SMALL_STATE(515)] = 33270, + [SMALL_STATE(516)] = 33309, + [SMALL_STATE(517)] = 33372, + [SMALL_STATE(518)] = 33411, + [SMALL_STATE(519)] = 33450, + [SMALL_STATE(520)] = 33502, + [SMALL_STATE(521)] = 33552, + [SMALL_STATE(522)] = 33614, + [SMALL_STATE(523)] = 33674, + [SMALL_STATE(524)] = 33734, + [SMALL_STATE(525)] = 33796, + [SMALL_STATE(526)] = 33843, + [SMALL_STATE(527)] = 33882, + [SMALL_STATE(528)] = 33915, + [SMALL_STATE(529)] = 33948, + [SMALL_STATE(530)] = 33981, + [SMALL_STATE(531)] = 34026, + [SMALL_STATE(532)] = 34059, + [SMALL_STATE(533)] = 34092, + [SMALL_STATE(534)] = 34125, + [SMALL_STATE(535)] = 34158, + [SMALL_STATE(536)] = 34203, + [SMALL_STATE(537)] = 34236, + [SMALL_STATE(538)] = 34269, + [SMALL_STATE(539)] = 34314, + [SMALL_STATE(540)] = 34347, + [SMALL_STATE(541)] = 34398, + [SMALL_STATE(542)] = 34443, + [SMALL_STATE(543)] = 34486, + [SMALL_STATE(544)] = 34537, + [SMALL_STATE(545)] = 34582, + [SMALL_STATE(546)] = 34627, + [SMALL_STATE(547)] = 34672, + [SMALL_STATE(548)] = 34717, + [SMALL_STATE(549)] = 34762, + [SMALL_STATE(550)] = 34807, + [SMALL_STATE(551)] = 34852, + [SMALL_STATE(552)] = 34897, + [SMALL_STATE(553)] = 34942, + [SMALL_STATE(554)] = 34987, + [SMALL_STATE(555)] = 35032, + [SMALL_STATE(556)] = 35077, + [SMALL_STATE(557)] = 35122, + [SMALL_STATE(558)] = 35167, + [SMALL_STATE(559)] = 35212, + [SMALL_STATE(560)] = 35257, + [SMALL_STATE(561)] = 35302, + [SMALL_STATE(562)] = 35347, + [SMALL_STATE(563)] = 35392, + [SMALL_STATE(564)] = 35437, + [SMALL_STATE(565)] = 35482, + [SMALL_STATE(566)] = 35527, + [SMALL_STATE(567)] = 35572, + [SMALL_STATE(568)] = 35617, + [SMALL_STATE(569)] = 35662, + [SMALL_STATE(570)] = 35707, + [SMALL_STATE(571)] = 35752, + [SMALL_STATE(572)] = 35797, + [SMALL_STATE(573)] = 35842, + [SMALL_STATE(574)] = 35887, + [SMALL_STATE(575)] = 35932, + [SMALL_STATE(576)] = 35977, + [SMALL_STATE(577)] = 36007, + [SMALL_STATE(578)] = 36037, + [SMALL_STATE(579)] = 36067, + [SMALL_STATE(580)] = 36097, + [SMALL_STATE(581)] = 36127, + [SMALL_STATE(582)] = 36157, + [SMALL_STATE(583)] = 36187, + [SMALL_STATE(584)] = 36217, + [SMALL_STATE(585)] = 36247, + [SMALL_STATE(586)] = 36274, + [SMALL_STATE(587)] = 36313, + [SMALL_STATE(588)] = 36352, + [SMALL_STATE(589)] = 36379, + [SMALL_STATE(590)] = 36406, + [SMALL_STATE(591)] = 36445, + [SMALL_STATE(592)] = 36472, + [SMALL_STATE(593)] = 36499, + [SMALL_STATE(594)] = 36538, + [SMALL_STATE(595)] = 36577, + [SMALL_STATE(596)] = 36616, + [SMALL_STATE(597)] = 36655, + [SMALL_STATE(598)] = 36694, + [SMALL_STATE(599)] = 36733, + [SMALL_STATE(600)] = 36760, + [SMALL_STATE(601)] = 36787, + [SMALL_STATE(602)] = 36826, + [SMALL_STATE(603)] = 36865, + [SMALL_STATE(604)] = 36892, + [SMALL_STATE(605)] = 36931, + [SMALL_STATE(606)] = 36958, + [SMALL_STATE(607)] = 36985, + [SMALL_STATE(608)] = 37012, + [SMALL_STATE(609)] = 37039, + [SMALL_STATE(610)] = 37067, + [SMALL_STATE(611)] = 37091, + [SMALL_STATE(612)] = 37121, + [SMALL_STATE(613)] = 37145, + [SMALL_STATE(614)] = 37175, + [SMALL_STATE(615)] = 37199, + [SMALL_STATE(616)] = 37223, + [SMALL_STATE(617)] = 37256, + [SMALL_STATE(618)] = 37289, + [SMALL_STATE(619)] = 37327, + [SMALL_STATE(620)] = 37349, + [SMALL_STATE(621)] = 37371, + [SMALL_STATE(622)] = 37401, + [SMALL_STATE(623)] = 37431, + [SMALL_STATE(624)] = 37453, + [SMALL_STATE(625)] = 37483, + [SMALL_STATE(626)] = 37513, + [SMALL_STATE(627)] = 37535, + [SMALL_STATE(628)] = 37564, + [SMALL_STATE(629)] = 37593, + [SMALL_STATE(630)] = 37622, + [SMALL_STATE(631)] = 37651, + [SMALL_STATE(632)] = 37680, + [SMALL_STATE(633)] = 37709, + [SMALL_STATE(634)] = 37738, + [SMALL_STATE(635)] = 37767, + [SMALL_STATE(636)] = 37794, + [SMALL_STATE(637)] = 37821, + [SMALL_STATE(638)] = 37850, + [SMALL_STATE(639)] = 37879, + [SMALL_STATE(640)] = 37904, + [SMALL_STATE(641)] = 37930, + [SMALL_STATE(642)] = 37954, + [SMALL_STATE(643)] = 37986, + [SMALL_STATE(644)] = 38018, + [SMALL_STATE(645)] = 38038, + [SMALL_STATE(646)] = 38070, + [SMALL_STATE(647)] = 38102, + [SMALL_STATE(648)] = 38134, + [SMALL_STATE(649)] = 38160, + [SMALL_STATE(650)] = 38184, + [SMALL_STATE(651)] = 38216, + [SMALL_STATE(652)] = 38240, + [SMALL_STATE(653)] = 38260, + [SMALL_STATE(654)] = 38286, + [SMALL_STATE(655)] = 38318, + [SMALL_STATE(656)] = 38350, + [SMALL_STATE(657)] = 38374, + [SMALL_STATE(658)] = 38406, + [SMALL_STATE(659)] = 38438, + [SMALL_STATE(660)] = 38470, + [SMALL_STATE(661)] = 38502, + [SMALL_STATE(662)] = 38528, + [SMALL_STATE(663)] = 38552, + [SMALL_STATE(664)] = 38584, + [SMALL_STATE(665)] = 38616, + [SMALL_STATE(666)] = 38648, + [SMALL_STATE(667)] = 38680, + [SMALL_STATE(668)] = 38712, + [SMALL_STATE(669)] = 38738, + [SMALL_STATE(670)] = 38770, + [SMALL_STATE(671)] = 38802, + [SMALL_STATE(672)] = 38822, + [SMALL_STATE(673)] = 38854, + [SMALL_STATE(674)] = 38883, + [SMALL_STATE(675)] = 38912, + [SMALL_STATE(676)] = 38941, + [SMALL_STATE(677)] = 38970, + [SMALL_STATE(678)] = 38999, + [SMALL_STATE(679)] = 39028, + [SMALL_STATE(680)] = 39057, + [SMALL_STATE(681)] = 39086, + [SMALL_STATE(682)] = 39115, + [SMALL_STATE(683)] = 39144, + [SMALL_STATE(684)] = 39173, + [SMALL_STATE(685)] = 39202, + [SMALL_STATE(686)] = 39231, + [SMALL_STATE(687)] = 39260, + [SMALL_STATE(688)] = 39289, + [SMALL_STATE(689)] = 39318, + [SMALL_STATE(690)] = 39347, + [SMALL_STATE(691)] = 39376, + [SMALL_STATE(692)] = 39405, + [SMALL_STATE(693)] = 39434, + [SMALL_STATE(694)] = 39463, + [SMALL_STATE(695)] = 39492, + [SMALL_STATE(696)] = 39521, + [SMALL_STATE(697)] = 39550, + [SMALL_STATE(698)] = 39579, + [SMALL_STATE(699)] = 39608, + [SMALL_STATE(700)] = 39637, + [SMALL_STATE(701)] = 39666, + [SMALL_STATE(702)] = 39695, + [SMALL_STATE(703)] = 39724, + [SMALL_STATE(704)] = 39753, + [SMALL_STATE(705)] = 39782, + [SMALL_STATE(706)] = 39811, + [SMALL_STATE(707)] = 39840, + [SMALL_STATE(708)] = 39869, + [SMALL_STATE(709)] = 39898, + [SMALL_STATE(710)] = 39927, + [SMALL_STATE(711)] = 39956, + [SMALL_STATE(712)] = 39985, + [SMALL_STATE(713)] = 40014, + [SMALL_STATE(714)] = 40043, + [SMALL_STATE(715)] = 40072, + [SMALL_STATE(716)] = 40101, + [SMALL_STATE(717)] = 40130, + [SMALL_STATE(718)] = 40159, + [SMALL_STATE(719)] = 40188, + [SMALL_STATE(720)] = 40217, + [SMALL_STATE(721)] = 40246, + [SMALL_STATE(722)] = 40275, + [SMALL_STATE(723)] = 40304, + [SMALL_STATE(724)] = 40333, + [SMALL_STATE(725)] = 40362, + [SMALL_STATE(726)] = 40391, + [SMALL_STATE(727)] = 40420, + [SMALL_STATE(728)] = 40449, + [SMALL_STATE(729)] = 40467, + [SMALL_STATE(730)] = 40485, + [SMALL_STATE(731)] = 40503, + [SMALL_STATE(732)] = 40521, + [SMALL_STATE(733)] = 40539, + [SMALL_STATE(734)] = 40557, + [SMALL_STATE(735)] = 40575, + [SMALL_STATE(736)] = 40593, + [SMALL_STATE(737)] = 40611, + [SMALL_STATE(738)] = 40631, + [SMALL_STATE(739)] = 40649, + [SMALL_STATE(740)] = 40667, + [SMALL_STATE(741)] = 40685, + [SMALL_STATE(742)] = 40703, + [SMALL_STATE(743)] = 40721, + [SMALL_STATE(744)] = 40739, + [SMALL_STATE(745)] = 40757, + [SMALL_STATE(746)] = 40775, + [SMALL_STATE(747)] = 40793, + [SMALL_STATE(748)] = 40811, + [SMALL_STATE(749)] = 40829, + [SMALL_STATE(750)] = 40847, + [SMALL_STATE(751)] = 40865, + [SMALL_STATE(752)] = 40883, + [SMALL_STATE(753)] = 40901, + [SMALL_STATE(754)] = 40919, + [SMALL_STATE(755)] = 40937, + [SMALL_STATE(756)] = 40955, + [SMALL_STATE(757)] = 40973, + [SMALL_STATE(758)] = 40991, + [SMALL_STATE(759)] = 41009, + [SMALL_STATE(760)] = 41027, + [SMALL_STATE(761)] = 41045, + [SMALL_STATE(762)] = 41063, + [SMALL_STATE(763)] = 41081, + [SMALL_STATE(764)] = 41099, + [SMALL_STATE(765)] = 41117, + [SMALL_STATE(766)] = 41135, + [SMALL_STATE(767)] = 41153, + [SMALL_STATE(768)] = 41171, + [SMALL_STATE(769)] = 41191, + [SMALL_STATE(770)] = 41209, + [SMALL_STATE(771)] = 41227, + [SMALL_STATE(772)] = 41247, + [SMALL_STATE(773)] = 41265, + [SMALL_STATE(774)] = 41283, + [SMALL_STATE(775)] = 41301, + [SMALL_STATE(776)] = 41319, + [SMALL_STATE(777)] = 41337, + [SMALL_STATE(778)] = 41355, + [SMALL_STATE(779)] = 41373, + [SMALL_STATE(780)] = 41391, + [SMALL_STATE(781)] = 41409, + [SMALL_STATE(782)] = 41427, + [SMALL_STATE(783)] = 41445, + [SMALL_STATE(784)] = 41463, + [SMALL_STATE(785)] = 41481, + [SMALL_STATE(786)] = 41499, + [SMALL_STATE(787)] = 41517, + [SMALL_STATE(788)] = 41535, + [SMALL_STATE(789)] = 41553, + [SMALL_STATE(790)] = 41571, + [SMALL_STATE(791)] = 41589, + [SMALL_STATE(792)] = 41607, + [SMALL_STATE(793)] = 41625, + [SMALL_STATE(794)] = 41643, + [SMALL_STATE(795)] = 41661, + [SMALL_STATE(796)] = 41679, + [SMALL_STATE(797)] = 41697, + [SMALL_STATE(798)] = 41715, + [SMALL_STATE(799)] = 41733, + [SMALL_STATE(800)] = 41751, + [SMALL_STATE(801)] = 41769, + [SMALL_STATE(802)] = 41787, + [SMALL_STATE(803)] = 41805, + [SMALL_STATE(804)] = 41823, + [SMALL_STATE(805)] = 41841, + [SMALL_STATE(806)] = 41861, + [SMALL_STATE(807)] = 41879, + [SMALL_STATE(808)] = 41899, + [SMALL_STATE(809)] = 41917, + [SMALL_STATE(810)] = 41935, + [SMALL_STATE(811)] = 41953, + [SMALL_STATE(812)] = 41971, + [SMALL_STATE(813)] = 41989, + [SMALL_STATE(814)] = 42007, + [SMALL_STATE(815)] = 42025, + [SMALL_STATE(816)] = 42043, + [SMALL_STATE(817)] = 42061, + [SMALL_STATE(818)] = 42079, + [SMALL_STATE(819)] = 42097, + [SMALL_STATE(820)] = 42115, + [SMALL_STATE(821)] = 42133, + [SMALL_STATE(822)] = 42153, + [SMALL_STATE(823)] = 42171, + [SMALL_STATE(824)] = 42189, + [SMALL_STATE(825)] = 42207, + [SMALL_STATE(826)] = 42225, + [SMALL_STATE(827)] = 42243, + [SMALL_STATE(828)] = 42261, + [SMALL_STATE(829)] = 42279, + [SMALL_STATE(830)] = 42297, + [SMALL_STATE(831)] = 42315, + [SMALL_STATE(832)] = 42333, + [SMALL_STATE(833)] = 42353, + [SMALL_STATE(834)] = 42371, + [SMALL_STATE(835)] = 42389, + [SMALL_STATE(836)] = 42407, + [SMALL_STATE(837)] = 42425, + [SMALL_STATE(838)] = 42443, + [SMALL_STATE(839)] = 42461, + [SMALL_STATE(840)] = 42479, + [SMALL_STATE(841)] = 42497, + [SMALL_STATE(842)] = 42515, + [SMALL_STATE(843)] = 42533, + [SMALL_STATE(844)] = 42551, + [SMALL_STATE(845)] = 42569, + [SMALL_STATE(846)] = 42587, + [SMALL_STATE(847)] = 42605, + [SMALL_STATE(848)] = 42623, + [SMALL_STATE(849)] = 42641, + [SMALL_STATE(850)] = 42659, + [SMALL_STATE(851)] = 42679, + [SMALL_STATE(852)] = 42697, + [SMALL_STATE(853)] = 42715, + [SMALL_STATE(854)] = 42740, + [SMALL_STATE(855)] = 42765, + [SMALL_STATE(856)] = 42788, + [SMALL_STATE(857)] = 42813, + [SMALL_STATE(858)] = 42833, + [SMALL_STATE(859)] = 42853, + [SMALL_STATE(860)] = 42873, + [SMALL_STATE(861)] = 42901, + [SMALL_STATE(862)] = 42915, + [SMALL_STATE(863)] = 42937, + [SMALL_STATE(864)] = 42951, + [SMALL_STATE(865)] = 42965, + [SMALL_STATE(866)] = 42993, + [SMALL_STATE(867)] = 43007, + [SMALL_STATE(868)] = 43029, + [SMALL_STATE(869)] = 43043, + [SMALL_STATE(870)] = 43065, + [SMALL_STATE(871)] = 43087, + [SMALL_STATE(872)] = 43109, + [SMALL_STATE(873)] = 43131, + [SMALL_STATE(874)] = 43145, + [SMALL_STATE(875)] = 43164, + [SMALL_STATE(876)] = 43183, + [SMALL_STATE(877)] = 43202, + [SMALL_STATE(878)] = 43227, + [SMALL_STATE(879)] = 43246, + [SMALL_STATE(880)] = 43265, + [SMALL_STATE(881)] = 43284, + [SMALL_STATE(882)] = 43303, + [SMALL_STATE(883)] = 43323, + [SMALL_STATE(884)] = 43345, + [SMALL_STATE(885)] = 43367, + [SMALL_STATE(886)] = 43389, + [SMALL_STATE(887)] = 43407, + [SMALL_STATE(888)] = 43429, + [SMALL_STATE(889)] = 43447, + [SMALL_STATE(890)] = 43469, + [SMALL_STATE(891)] = 43491, + [SMALL_STATE(892)] = 43513, + [SMALL_STATE(893)] = 43535, + [SMALL_STATE(894)] = 43557, + [SMALL_STATE(895)] = 43579, + [SMALL_STATE(896)] = 43599, + [SMALL_STATE(897)] = 43615, + [SMALL_STATE(898)] = 43637, + [SMALL_STATE(899)] = 43655, + [SMALL_STATE(900)] = 43677, + [SMALL_STATE(901)] = 43699, + [SMALL_STATE(902)] = 43721, + [SMALL_STATE(903)] = 43743, + [SMALL_STATE(904)] = 43765, + [SMALL_STATE(905)] = 43784, + [SMALL_STATE(906)] = 43801, + [SMALL_STATE(907)] = 43818, + [SMALL_STATE(908)] = 43837, + [SMALL_STATE(909)] = 43854, + [SMALL_STATE(910)] = 43871, + [SMALL_STATE(911)] = 43888, + [SMALL_STATE(912)] = 43903, + [SMALL_STATE(913)] = 43922, + [SMALL_STATE(914)] = 43941, + [SMALL_STATE(915)] = 43955, + [SMALL_STATE(916)] = 43965, + [SMALL_STATE(917)] = 43977, + [SMALL_STATE(918)] = 43993, + [SMALL_STATE(919)] = 44009, + [SMALL_STATE(920)] = 44025, + [SMALL_STATE(921)] = 44041, + [SMALL_STATE(922)] = 44055, + [SMALL_STATE(923)] = 44069, + [SMALL_STATE(924)] = 44083, + [SMALL_STATE(925)] = 44097, + [SMALL_STATE(926)] = 44111, + [SMALL_STATE(927)] = 44127, + [SMALL_STATE(928)] = 44143, + [SMALL_STATE(929)] = 44159, + [SMALL_STATE(930)] = 44175, + [SMALL_STATE(931)] = 44189, + [SMALL_STATE(932)] = 44205, + [SMALL_STATE(933)] = 44221, + [SMALL_STATE(934)] = 44237, + [SMALL_STATE(935)] = 44253, + [SMALL_STATE(936)] = 44269, + [SMALL_STATE(937)] = 44282, + [SMALL_STATE(938)] = 44295, + [SMALL_STATE(939)] = 44308, + [SMALL_STATE(940)] = 44321, + [SMALL_STATE(941)] = 44334, + [SMALL_STATE(942)] = 44347, + [SMALL_STATE(943)] = 44360, + [SMALL_STATE(944)] = 44373, + [SMALL_STATE(945)] = 44382, + [SMALL_STATE(946)] = 44395, + [SMALL_STATE(947)] = 44408, + [SMALL_STATE(948)] = 44421, + [SMALL_STATE(949)] = 44434, + [SMALL_STATE(950)] = 44447, + [SMALL_STATE(951)] = 44460, + [SMALL_STATE(952)] = 44473, + [SMALL_STATE(953)] = 44486, + [SMALL_STATE(954)] = 44497, + [SMALL_STATE(955)] = 44510, + [SMALL_STATE(956)] = 44523, + [SMALL_STATE(957)] = 44536, + [SMALL_STATE(958)] = 44549, + [SMALL_STATE(959)] = 44562, + [SMALL_STATE(960)] = 44575, + [SMALL_STATE(961)] = 44588, + [SMALL_STATE(962)] = 44601, + [SMALL_STATE(963)] = 44610, + [SMALL_STATE(964)] = 44623, + [SMALL_STATE(965)] = 44636, + [SMALL_STATE(966)] = 44649, + [SMALL_STATE(967)] = 44662, + [SMALL_STATE(968)] = 44675, + [SMALL_STATE(969)] = 44688, + [SMALL_STATE(970)] = 44701, + [SMALL_STATE(971)] = 44714, + [SMALL_STATE(972)] = 44727, + [SMALL_STATE(973)] = 44740, + [SMALL_STATE(974)] = 44753, + [SMALL_STATE(975)] = 44766, + [SMALL_STATE(976)] = 44779, + [SMALL_STATE(977)] = 44792, + [SMALL_STATE(978)] = 44805, + [SMALL_STATE(979)] = 44818, + [SMALL_STATE(980)] = 44831, + [SMALL_STATE(981)] = 44844, + [SMALL_STATE(982)] = 44857, + [SMALL_STATE(983)] = 44870, + [SMALL_STATE(984)] = 44883, + [SMALL_STATE(985)] = 44896, + [SMALL_STATE(986)] = 44909, + [SMALL_STATE(987)] = 44922, + [SMALL_STATE(988)] = 44933, + [SMALL_STATE(989)] = 44946, + [SMALL_STATE(990)] = 44959, + [SMALL_STATE(991)] = 44972, + [SMALL_STATE(992)] = 44985, + [SMALL_STATE(993)] = 44998, + [SMALL_STATE(994)] = 45011, + [SMALL_STATE(995)] = 45024, + [SMALL_STATE(996)] = 45037, + [SMALL_STATE(997)] = 45050, + [SMALL_STATE(998)] = 45063, + [SMALL_STATE(999)] = 45076, + [SMALL_STATE(1000)] = 45089, + [SMALL_STATE(1001)] = 45102, + [SMALL_STATE(1002)] = 45115, + [SMALL_STATE(1003)] = 45128, + [SMALL_STATE(1004)] = 45141, + [SMALL_STATE(1005)] = 45154, + [SMALL_STATE(1006)] = 45167, + [SMALL_STATE(1007)] = 45180, + [SMALL_STATE(1008)] = 45193, + [SMALL_STATE(1009)] = 45206, + [SMALL_STATE(1010)] = 45219, + [SMALL_STATE(1011)] = 45232, + [SMALL_STATE(1012)] = 45245, + [SMALL_STATE(1013)] = 45258, + [SMALL_STATE(1014)] = 45271, + [SMALL_STATE(1015)] = 45279, + [SMALL_STATE(1016)] = 45287, + [SMALL_STATE(1017)] = 45297, + [SMALL_STATE(1018)] = 45305, + [SMALL_STATE(1019)] = 45315, + [SMALL_STATE(1020)] = 45323, + [SMALL_STATE(1021)] = 45331, + [SMALL_STATE(1022)] = 45341, + [SMALL_STATE(1023)] = 45351, + [SMALL_STATE(1024)] = 45361, + [SMALL_STATE(1025)] = 45371, + [SMALL_STATE(1026)] = 45381, + [SMALL_STATE(1027)] = 45391, + [SMALL_STATE(1028)] = 45399, + [SMALL_STATE(1029)] = 45407, + [SMALL_STATE(1030)] = 45417, + [SMALL_STATE(1031)] = 45427, + [SMALL_STATE(1032)] = 45437, + [SMALL_STATE(1033)] = 45447, + [SMALL_STATE(1034)] = 45457, + [SMALL_STATE(1035)] = 45467, + [SMALL_STATE(1036)] = 45477, + [SMALL_STATE(1037)] = 45487, + [SMALL_STATE(1038)] = 45497, + [SMALL_STATE(1039)] = 45507, + [SMALL_STATE(1040)] = 45517, + [SMALL_STATE(1041)] = 45527, + [SMALL_STATE(1042)] = 45537, + [SMALL_STATE(1043)] = 45547, + [SMALL_STATE(1044)] = 45554, + [SMALL_STATE(1045)] = 45561, + [SMALL_STATE(1046)] = 45568, + [SMALL_STATE(1047)] = 45575, + [SMALL_STATE(1048)] = 45582, + [SMALL_STATE(1049)] = 45589, + [SMALL_STATE(1050)] = 45596, + [SMALL_STATE(1051)] = 45603, + [SMALL_STATE(1052)] = 45610, + [SMALL_STATE(1053)] = 45617, + [SMALL_STATE(1054)] = 45624, + [SMALL_STATE(1055)] = 45631, + [SMALL_STATE(1056)] = 45638, + [SMALL_STATE(1057)] = 45645, + [SMALL_STATE(1058)] = 45652, + [SMALL_STATE(1059)] = 45659, + [SMALL_STATE(1060)] = 45666, + [SMALL_STATE(1061)] = 45673, + [SMALL_STATE(1062)] = 45680, + [SMALL_STATE(1063)] = 45687, + [SMALL_STATE(1064)] = 45694, + [SMALL_STATE(1065)] = 45701, + [SMALL_STATE(1066)] = 45708, + [SMALL_STATE(1067)] = 45715, + [SMALL_STATE(1068)] = 45722, + [SMALL_STATE(1069)] = 45729, + [SMALL_STATE(1070)] = 45736, + [SMALL_STATE(1071)] = 45743, + [SMALL_STATE(1072)] = 45750, + [SMALL_STATE(1073)] = 45757, + [SMALL_STATE(1074)] = 45764, + [SMALL_STATE(1075)] = 45771, + [SMALL_STATE(1076)] = 45778, + [SMALL_STATE(1077)] = 45785, + [SMALL_STATE(1078)] = 45792, + [SMALL_STATE(1079)] = 45799, + [SMALL_STATE(1080)] = 45806, + [SMALL_STATE(1081)] = 45813, + [SMALL_STATE(1082)] = 45820, + [SMALL_STATE(1083)] = 45827, + [SMALL_STATE(1084)] = 45834, + [SMALL_STATE(1085)] = 45841, + [SMALL_STATE(1086)] = 45848, + [SMALL_STATE(1087)] = 45855, + [SMALL_STATE(1088)] = 45862, + [SMALL_STATE(1089)] = 45869, + [SMALL_STATE(1090)] = 45876, + [SMALL_STATE(1091)] = 45883, + [SMALL_STATE(1092)] = 45890, + [SMALL_STATE(1093)] = 45897, + [SMALL_STATE(1094)] = 45904, + [SMALL_STATE(1095)] = 45911, + [SMALL_STATE(1096)] = 45918, + [SMALL_STATE(1097)] = 45925, + [SMALL_STATE(1098)] = 45932, + [SMALL_STATE(1099)] = 45939, + [SMALL_STATE(1100)] = 45946, + [SMALL_STATE(1101)] = 45953, + [SMALL_STATE(1102)] = 45960, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -49570,1517 +50260,1623 @@ 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(1071), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1088), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(66), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 38), - [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 38), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 60), - [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 60), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 38), REDUCE(sym_union_type, 5, 0, 60), - [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 4), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 4), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 1, 0, 26), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_instance_argument, 1, 0, 26), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(715), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_hint, 1, 100, 4), - [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_vars_declaration, 4, 0, 154), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 4, 0, 154), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 6, 0, 199), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 199), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 64), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 64), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 44), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 44), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2, 0, 45), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2, 0, 45), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 82), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), SHIFT(533), - [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_assignment, 3, 0, 85), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_assignment, 3, 0, 85), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_lt_gt, 3, 0, 82), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_lt_gt, 3, 0, 82), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_operator, 5, 0, 165), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_operator, 5, 0, 165), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 81), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 81), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(829), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_instantiatedTs, 2, 104, 13), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instantiatedTs, 2, 104, 13), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 60), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 60), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 38), REDUCE(sym_union_type, 4, 0, 60), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 2, 103, 0), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 2, 0, 0), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 2, 0, 0), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_as_operator, 3, 0, 86), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_as_operator, 3, 0, 86), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_type_operator, 3, 0, 87), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_type_operator, 3, 0, 87), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, 0, 128), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, 0, 128), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 2, 103, 0), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 16), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 16), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 29), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 29), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 4, 103, 0), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 4, 103, 0), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 3, 1, 65), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 3, 1, 65), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 4, 1, 112), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 4, 1, 112), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 38), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 38), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_callable_type, 3, 0, 39), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_callable_type, 3, 0, 39), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 4, 0, 0), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 4, 0, 0), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 2, 0, 0), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 2, 0, 0), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 19), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 19), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 1, 99, 20), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 1, 99, 20), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 29), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 29), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 4, 0, 0), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 4, 0, 0), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 4, 0, 0), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 4, 0, 0), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 5, 0, 0), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 5, 0, 0), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 5, 0, 0), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 5, 0, 0), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 164), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 164), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 5, 0, 0), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 5, 0, 0), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 2, 0, 0), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 2, 0, 0), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 3, 0, 0), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 3, 0, 0), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_null_operator, 2, 0, 16), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_null_operator, 2, 0, 16), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 46), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 46), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 2, 0, 47), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 2, 0, 47), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 99, 48), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 99, 48), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 29), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 29), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 3, 0, 0), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 3, 0, 0), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 3, 0, 0), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 3, 0, 0), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_access, 3, 0, 84), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_access, 3, 0, 84), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 1, 0, 0), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 1, 0, 0), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(815), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 207), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 207), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 211), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 211), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 215), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 215), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(832), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), SHIFT(523), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), SHIFT(525), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 24), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 166), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 89), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 105), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(926), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 2, 0, 26), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 5, 0, 184), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 5, 0, 184), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member_declaration, 3, 0, 106), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 106), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 2, 0, 129), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 106), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 152), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 1, 0, 83), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 3, 0, 127), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 5, 0, 184), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 6, 0, 196), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 153), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 153), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 5, 0, 185), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 5, 0, 185), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 185), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 185), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 3, 0, 153), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 3, 0, 153), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 5, 0, 185), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 5, 0, 185), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 111), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 111), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 153), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 153), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 3, 0, 153), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 3, 0, 153), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 185), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 185), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 110), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 110), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 1, 0, 26), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 1, 0, 26), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 155), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 155), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4, 100, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4, 100, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 3, 100, 0), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 100, 0), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_vars_declaration, 2, 0, 63), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 2, 0, 63), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 187), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 187), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 202), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 202), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 1, 0, 156), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 1, 0, 156), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, 0, 157), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, 0, 157), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 186), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 186), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 187), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 187), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 197), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 197), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 198), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 198), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 6, 0, 200), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 200), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 4, 0, 203), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 4, 0, 203), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 216), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 216), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 96), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 96), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 99), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 99), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 10), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 10), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 14), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 14), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 17), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 4, 0, 17), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 10), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 4, 0, 10), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 22), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 22), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 22), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 4, 0, 22), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 143), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 143), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 33), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 36), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 36), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 37), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 37), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 41), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 5, 0, 41), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 3), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 3), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 3), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 3, 0, 3), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 50), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 50), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 52), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 52), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 53), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 53), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 100), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 100), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 54), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 5, 0, 54), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 102), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 6, 0, 102), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 52), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 5, 0, 52), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 7), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 7), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 74), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 74), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, 0, 3), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1013), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 22), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 38), REDUCE(sym_union_type, 5, 0, 60), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(520), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(682), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(655), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(663), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 53), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 14), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 2, 0, 3), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 141), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 161), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 172), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 50), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 193), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 54), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 176), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 139), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 67), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 70), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 72), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 77), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 70), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 179), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 36), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 7), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 139), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 31), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 146), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 94), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 99), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 94), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 182), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 136), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 115), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 119), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 122), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 31), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 125), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 22), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 17), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 214), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 214), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 209), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 209), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 210), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 210), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 212), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 212), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 213), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 213), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 205), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 205), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 206), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 206), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 208), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 208), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 208), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 208), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 10), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 205), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 205), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 206), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 206), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 207), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 207), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 215), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 215), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 100), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 52), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 102), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 209), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 209), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 74), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 210), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 210), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 52), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 211), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 211), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 143), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 37), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 214), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 214), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 41), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 212), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 212), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 10), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 33), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 204), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 204), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 213), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 213), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 96), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 92), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 28), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 132), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 22), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 3), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 58), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, 0, 23), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 90), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 107), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 167), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 2, 0, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 57), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 56), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 131), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 22), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 88), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 4, 0, 25), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 130), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), SHIFT_REPEAT(636), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 5, 0, 0), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 7), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 6, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 109), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 169), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 2, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 4, 0, 0), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 7, 0, 0), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 50), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 76), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 27), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 34), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 35), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 135), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 130), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 40), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 42), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 131), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 43), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 168), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 107), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 170), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 171), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 150), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 173), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 174), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 175), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 140), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 5, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 177), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 178), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 49), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 49), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 180), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 51), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 181), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 183), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 55), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 23), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 24), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 25), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 59), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 61), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 6), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 6), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 30), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 3, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 66), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 144), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 68), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 69), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 188), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 71), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 73), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 145), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 75), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 133), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 78), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 79), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 80), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 8, 0, 166), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 8, 0, 167), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 8, 0, 189), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 190), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 191), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 8), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 9), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 192), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 11), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 12), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 194), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 32), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 18), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 137), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 91), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 93), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 95), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 97), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 98), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 201), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tolk_required_version, 2, 0, 1), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 101), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 8, 0, 0), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 103), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 138), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 134), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 104), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 56), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 57), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 108), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 4, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 147), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 148), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 149), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 158), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 159), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 113), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 114), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 160), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 142), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 162), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 116), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 117), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 118), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 163), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 105), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 120), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 121), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 123), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 124), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_directive, 2, 0, 2), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 126), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 6, 0, 88), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 89), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 90), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 8, 0, 195), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 3), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_list, 1, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 5), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 2, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 21), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 26), REDUCE(sym__type_hint, 1, 100, 4), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 5, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 4, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 3, 0, 110), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 3, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 110), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 151), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(918), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 106), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), - [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 26), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 26), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 62), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), SHIFT_REPEAT(969), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 26), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_receiver, 2, 0, 15), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3061] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1068), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 60), + [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 60), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 38), REDUCE(sym_union_type, 5, 0, 60), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 38), + [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 38), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 4), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 4), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 1, 0, 26), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_instance_argument, 1, 0, 26), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(680), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_hint, 1, 100, 4), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), + [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 82), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 81), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 81), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 44), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 44), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2, 0, 45), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2, 0, 45), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), SHIFT(538), + [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_assignment, 3, 0, 85), + [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_assignment, 3, 0, 85), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_lt_gt, 3, 0, 82), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_lt_gt, 3, 0, 82), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_operator, 5, 0, 165), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_operator, 5, 0, 165), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_vars_declaration, 4, 0, 154), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 4, 0, 154), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 64), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 64), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 6, 0, 199), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 199), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(716), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, 0, 128), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, 0, 128), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 2, 0, 0), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 2, 0, 0), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_instantiatedTs, 2, 104, 13), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instantiatedTs, 2, 104, 13), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 16), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 16), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 29), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 29), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 4, 103, 0), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 4, 103, 0), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 3, 1, 65), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 3, 1, 65), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiationT_list, 4, 1, 112), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiationT_list, 4, 1, 112), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 38), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 38), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_callable_type, 3, 0, 39), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_callable_type, 3, 0, 39), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 60), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 4, 0, 60), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 38), REDUCE(sym_union_type, 4, 0, 60), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tensor_expression, 2, 0, 0), REDUCE(sym_tensor_type, 2, 103, 0), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_type, 2, 103, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_as_operator, 3, 0, 86), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_as_operator, 3, 0, 86), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_type_operator, 3, 0, 87), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_type_operator, 3, 0, 87), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 0), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__type_hint, 1, 100, 0), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_hint, 1, 100, 0), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_type, 2, 103, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 4, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 4, 0, 0), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 1, 0, 0), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 1, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 19), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 19), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 1, 99, 20), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 1, 99, 20), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 2, 0, 0), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 2, 0, 0), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_null_operator, 2, 0, 16), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_null_operator, 2, 0, 16), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 46), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 46), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 2, 0, 47), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 2, 0, 47), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 99, 48), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 99, 48), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 29), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 29), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 3, 0, 0), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 3, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 3, 0, 0), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 3, 0, 0), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), REDUCE(sym_object_literal_body, 2, 0, 0), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_access, 3, 0, 84), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_access, 3, 0, 84), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 29), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 29), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 4, 0, 0), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 4, 0, 0), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 4, 0, 0), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 4, 0, 0), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_expression, 5, 0, 0), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_expression, 5, 0, 0), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal_body, 5, 0, 0), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal_body, 5, 0, 0), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_tuple, 5, 0, 0), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_tuple, 5, 0, 0), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 164), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 164), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 2, 0, 0), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 2, 0, 0), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_body, 3, 0, 0), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_body, 3, 0, 0), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(709), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 207), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 207), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 211), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 211), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 215), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 215), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), SHIFT(535), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_hint, 1, 100, 4), SHIFT(718), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 24), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 166), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 105), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 89), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 82), SHIFT(530), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 2, 0, 26), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 5, 0, 184), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 5, 0, 184), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member_declaration, 3, 0, 106), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 106), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 106), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 6, 0, 196), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 5, 0, 184), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 3, 0, 127), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 2, 0, 129), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_argument, 1, 0, 83), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 152), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 153), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 153), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 185), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 185), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 111), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 111), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 185), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 4, 0, 185), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 153), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 4, 0, 153), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 3, 0, 153), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 3, 0, 153), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tensor_vars_declaration, 5, 0, 185), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tensor_vars_declaration, 5, 0, 185), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 5, 0, 185), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 5, 0, 185), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_vars_declaration, 3, 0, 153), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_vars_declaration, 3, 0, 153), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 1, 0, 26), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 1, 0, 26), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 110), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 110), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 3, 100, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 100, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4, 100, 0), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4, 100, 0), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 155), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 155), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 187), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 187), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 100, 0), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 100, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_vars_declaration, 2, 0, 63), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_vars_declaration, 2, 0, 63), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 22), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 4, 0, 22), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 54), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 5, 0, 54), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, 0, 157), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, 0, 157), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 143), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 143), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 52), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 5, 0, 52), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 74), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 74), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 3), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 3, 0, 3), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 22), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 22), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 50), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 50), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 197), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 197), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 198), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 198), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 3), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 3), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 52), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 52), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 53), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 53), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 187), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 187), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 7), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 7), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 10), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 10), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 14), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 14), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 202), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 202), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 33), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 36), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 36), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 4, 0, 203), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 4, 0, 203), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 37), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 37), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 216), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 216), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 41), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 5, 0, 41), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 96), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 96), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 99), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 99), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 100), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 100), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 102), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 6, 0, 102), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 10), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 4, 0, 10), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 186), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 186), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 17), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_method_declaration, 4, 0, 17), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 1, 0, 156), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 1, 0, 156), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 6, 0, 200), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6, 0, 200), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 22), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, 0, 3), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_union_type, 4, 0, 38), REDUCE(sym_union_type, 5, 0, 60), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(526), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(679), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(657), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(660), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(902), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(894), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__brackets_lt_gt, 1, 0, 0), SHIFT(903), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 53), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 14), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 2, 0, 3), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 54), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 172), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 176), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 22), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 94), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 193), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 99), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 179), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 36), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 115), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 119), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 182), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 7), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 67), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 17), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 70), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 136), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 72), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 94), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 122), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 77), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 125), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 31), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 139), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 141), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 50), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 31), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 146), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 139), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 70), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 161), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 214), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 214), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 205), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 205), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 206), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 206), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 208), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 208), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 209), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 209), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 210), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 210), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 212), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 212), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 213), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 213), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 210), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 210), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 10), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 143), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 208), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 208), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 212), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 212), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 96), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 209), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 209), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 214), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 214), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 33), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 100), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 37), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 52), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 52), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 102), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 207), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 207), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 215), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 215), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 74), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 10), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 213), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 213), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 41), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 204), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 204), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 205), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 205), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 211), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 211), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 206), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 206), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2, 0, 0), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 92), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 28), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 3), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 22), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 58), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 132), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, 0, 23), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 4, 0, 25), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 88), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 57), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 90), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 56), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 167), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 131), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 2, 0, 3), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 22), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 130), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 107), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 7, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat3, 2, 0, 0), SHIFT_REPEAT(641), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 2, 0, 0), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 7), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 109), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 4, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 50), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 5, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 169), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 6, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 101), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 103), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 34), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 6), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 104), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 35), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 56), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 27), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 57), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 108), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 75), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 76), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 4, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 40), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 42), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 43), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 78), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 113), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 114), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 116), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 117), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 118), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 120), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 121), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 123), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 124), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 126), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 8), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 9), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tolk_required_version, 2, 0, 1), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 11), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 12), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_directive, 2, 0, 2), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 79), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 5, 0, 80), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 6, 0, 88), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 89), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 90), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 3, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 133), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 134), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 135), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 3, 0, 18), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 137), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 138), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 140), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 142), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 144), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 145), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 147), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 148), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 6, 0, 149), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, 0, 105), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 107), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 150), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 5, 0, 0), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 66), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 49), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 32), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 51), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 30), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 158), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 159), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 160), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 162), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 163), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 4, 0, 55), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 23), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 24), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 130), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 25), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 7, 0, 131), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 7, 0, 168), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 170), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 171), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 173), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 174), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 175), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 177), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 178), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 180), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 181), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 7, 0, 183), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 68), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 69), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 59), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 188), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 61), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 8, 0, 166), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 8, 0, 167), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 8, 0, 189), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 190), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 191), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 71), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 192), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 194), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 91), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_method_declaration, 8, 0, 195), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 93), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 6), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 95), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 97), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 201), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_body, 8, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 98), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 73), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 49), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_list_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_list, 1, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 3), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 2, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_declaration, 3, 0, 110), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 3, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 21), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 4, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_arguments, 5, 0, 0), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 26), REDUCE(sym__type_hint, 1, 100, 4), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 5), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 151), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 110), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 106), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiationT_list_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 26), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat1, 2, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 26), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 62), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_vars_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_literal_body_repeat1, 2, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 26), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_body_repeat2, 2, 0, 0), SHIFT_REPEAT(981), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_receiver, 2, 0, 15), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3314] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), }; #ifdef __cplusplus diff --git a/server/src/languages/tolk/tree-sitter-tolk/test/corpus/functions.test.txt b/server/src/languages/tolk/tree-sitter-tolk/test/corpus/functions.test.txt index fa20ac94..64da2977 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/test/corpus/functions.test.txt +++ b/server/src/languages/tolk/tree-sitter-tolk/test/corpus/functions.test.txt @@ -298,6 +298,16 @@ get fun foo() asm "FOO" (parameter_list) (asm_body (string_literal))) + (function_declaration + (identifier) + (parameter_list) + (asm_body + (string_literal))) + (function_declaration + (identifier) + (parameter_list) + (asm_body + (string_literal))) (get_method_declaration (identifier) (parameter_list) diff --git a/server/src/languages/tolk/tree-sitter-tolk/test/corpus/structs.test.txt b/server/src/languages/tolk/tree-sitter-tolk/test/corpus/structs.test.txt index 622918db..e096ccc6 100644 --- a/server/src/languages/tolk/tree-sitter-tolk/test/corpus/structs.test.txt +++ b/server/src/languages/tolk/tree-sitter-tolk/test/corpus/structs.test.txt @@ -69,7 +69,7 @@ struct Container { (type_parameters (type_parameter (identifier) - (type_identifier))) + (null_literal))) (struct_body (struct_field_declaration (identifier)