From 429f6128e8c823e19767446cfb2a8fcf3fd34c88 Mon Sep 17 00:00:00 2001 From: Jen Basch Date: Tue, 22 Jul 2025 15:12:07 -0700 Subject: [PATCH 1/2] Allow trailing commas in comma-separated syntax elements --- grammar.js | 4 +- src/grammar.json | 84 + src/parser.c | 47145 ++++++++++++++++++++++++--------------------- 3 files changed, 25414 insertions(+), 21819 deletions(-) diff --git a/grammar.js b/grammar.js index 51dd706..8c0f1d9 100644 --- a/grammar.js +++ b/grammar.js @@ -805,7 +805,7 @@ module.exports = grammar({ logicalAndExpr: $ => prec.left(PREC.AND, seq($._expr, field('operator', "&&"), $._expr)), logicalOrExpr: $ => prec.left(PREC.OR, seq($._expr, field('operator', "||"), $._expr)), - + pipeExpr: $ => prec.left(PREC.PIPE, seq($._expr, field('operator', "|>"), $._expr)), typeTestExpr: $ => prec(PREC.IS, seq($._expr, field("operator", "is"), $._type)), @@ -877,7 +877,7 @@ module.exports = grammar({ }); function commaSep1 (rule) { - return seq(rule, repeat(seq(',', rule))); + return seq(rule, repeat(seq(',', rule)), optional(',')); } function commaSep (rule) { diff --git a/src/grammar.json b/src/grammar.json index 3b6ec2e..fe768bb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1055,6 +1055,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1245,6 +1257,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1328,6 +1352,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1380,6 +1416,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1418,6 +1466,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1489,6 +1549,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1578,6 +1650,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] }, diff --git a/src/parser.c b/src/parser.c index 8075887..26cc642 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.3 */ +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ #include "tree_sitter/parser.h" @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 941 -#define LARGE_STATE_COUNT 212 +#define STATE_COUNT 1006 +#define LARGE_STATE_COUNT 230 #define SYMBOL_COUNT 276 #define ALIAS_COUNT 1 #define TOKEN_COUNT 144 @@ -2056,16 +2056,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 6, + [9] = 7, [10] = 10, - [11] = 6, - [12] = 10, + [11] = 10, + [12] = 8, [13] = 7, - [14] = 7, + [14] = 8, [15] = 10, - [16] = 7, - [17] = 10, - [18] = 6, + [16] = 8, + [17] = 7, + [18] = 10, [19] = 19, [20] = 20, [21] = 21, @@ -2144,30 +2144,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [94] = 94, [95] = 95, [96] = 96, - [97] = 95, + [97] = 97, [98] = 98, - [99] = 95, + [99] = 99, [100] = 100, - [101] = 100, - [102] = 100, + [101] = 95, + [102] = 95, [103] = 103, [104] = 104, [105] = 105, [106] = 106, [107] = 107, - [108] = 108, + [108] = 105, [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 103, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, + [110] = 104, + [111] = 109, + [112] = 104, + [113] = 109, + [114] = 107, + [115] = 106, + [116] = 106, + [117] = 105, + [118] = 106, + [119] = 105, + [120] = 107, [121] = 121, [122] = 122, [123] = 123, @@ -2176,16 +2176,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [126] = 126, [127] = 127, [128] = 128, - [129] = 109, - [130] = 113, - [131] = 114, + [129] = 129, + [130] = 130, + [131] = 131, [132] = 132, - [133] = 120, - [134] = 121, - [135] = 124, - [136] = 125, - [137] = 126, - [138] = 127, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, [139] = 139, [140] = 140, [141] = 141, @@ -2196,383 +2196,383 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [146] = 146, [147] = 147, [148] = 148, - [149] = 117, - [150] = 118, + [149] = 149, + [150] = 150, [151] = 151, [152] = 152, - [153] = 122, - [154] = 123, + [153] = 153, + [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 109, - [159] = 113, + [158] = 158, + [159] = 159, [160] = 160, - [161] = 103, - [162] = 120, - [163] = 121, - [164] = 124, - [165] = 125, - [166] = 126, - [167] = 127, - [168] = 122, - [169] = 123, - [170] = 117, - [171] = 118, - [172] = 132, - [173] = 173, - [174] = 174, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 149, + [167] = 167, + [168] = 153, + [169] = 141, + [170] = 142, + [171] = 171, + [172] = 154, + [173] = 155, + [174] = 156, [175] = 175, - [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 146, - [182] = 147, - [183] = 151, - [184] = 152, - [185] = 155, - [186] = 156, - [187] = 157, - [188] = 173, - [189] = 174, - [190] = 175, - [191] = 176, - [192] = 112, - [193] = 139, - [194] = 194, - [195] = 160, - [196] = 194, - [197] = 173, - [198] = 174, - [199] = 175, - [200] = 176, - [201] = 112, - [202] = 139, - [203] = 194, - [204] = 160, - [205] = 139, - [206] = 132, - [207] = 114, - [208] = 54, - [209] = 53, - [210] = 51, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 23, - [226] = 21, - [227] = 25, - [228] = 24, - [229] = 22, - [230] = 41, - [231] = 44, - [232] = 35, - [233] = 40, - [234] = 34, - [235] = 37, - [236] = 42, - [237] = 43, - [238] = 38, - [239] = 39, - [240] = 30, - [241] = 26, - [242] = 28, - [243] = 27, - [244] = 29, - [245] = 36, - [246] = 31, - [247] = 32, - [248] = 33, - [249] = 45, - [250] = 48, - [251] = 46, - [252] = 47, - [253] = 53, - [254] = 51, - [255] = 55, - [256] = 52, - [257] = 54, - [258] = 49, - [259] = 50, - [260] = 87, - [261] = 61, - [262] = 59, - [263] = 62, - [264] = 65, - [265] = 69, - [266] = 77, - [267] = 82, - [268] = 268, - [269] = 60, - [270] = 270, - [271] = 271, - [272] = 63, - [273] = 64, - [274] = 66, - [275] = 67, - [276] = 68, - [277] = 70, - [278] = 88, - [279] = 71, - [280] = 280, - [281] = 73, - [282] = 74, - [283] = 75, - [284] = 76, - [285] = 78, - [286] = 79, - [287] = 80, - [288] = 81, - [289] = 56, - [290] = 83, - [291] = 84, - [292] = 85, - [293] = 86, - [294] = 294, - [295] = 57, - [296] = 58, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 72, - [301] = 301, - [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 21, - [308] = 23, - [309] = 24, - [310] = 23, - [311] = 25, - [312] = 24, - [313] = 25, - [314] = 22, - [315] = 30, - [316] = 35, - [317] = 29, - [318] = 21, - [319] = 31, - [320] = 32, - [321] = 33, - [322] = 34, - [323] = 42, - [324] = 43, - [325] = 36, - [326] = 35, - [327] = 44, - [328] = 37, - [329] = 38, - [330] = 39, - [331] = 41, - [332] = 26, - [333] = 28, - [334] = 27, - [335] = 40, - [336] = 336, - [337] = 47, - [338] = 338, - [339] = 339, - [340] = 48, - [341] = 45, - [342] = 342, - [343] = 343, - [344] = 339, - [345] = 343, - [346] = 339, - [347] = 339, - [348] = 348, - [349] = 343, - [350] = 46, - [351] = 351, - [352] = 33, - [353] = 49, - [354] = 26, - [355] = 53, - [356] = 22, - [357] = 50, - [358] = 54, - [359] = 30, - [360] = 29, - [361] = 52, - [362] = 31, - [363] = 38, - [364] = 55, - [365] = 34, - [366] = 36, - [367] = 37, - [368] = 28, + [176] = 147, + [177] = 149, + [178] = 157, + [179] = 158, + [180] = 159, + [181] = 153, + [182] = 154, + [183] = 155, + [184] = 156, + [185] = 157, + [186] = 158, + [187] = 159, + [188] = 160, + [189] = 161, + [190] = 162, + [191] = 160, + [192] = 161, + [193] = 141, + [194] = 142, + [195] = 162, + [196] = 196, + [197] = 121, + [198] = 198, + [199] = 199, + [200] = 147, + [201] = 148, + [202] = 135, + [203] = 136, + [204] = 137, + [205] = 138, + [206] = 139, + [207] = 143, + [208] = 145, + [209] = 150, + [210] = 151, + [211] = 152, + [212] = 163, + [213] = 171, + [214] = 129, + [215] = 130, + [216] = 150, + [217] = 151, + [218] = 152, + [219] = 163, + [220] = 171, + [221] = 121, + [222] = 129, + [223] = 130, + [224] = 121, + [225] = 148, + [226] = 58, + [227] = 52, + [228] = 54, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 20, + [245] = 23, + [246] = 22, + [247] = 21, + [248] = 24, + [249] = 39, + [250] = 35, + [251] = 33, + [252] = 32, + [253] = 30, + [254] = 28, + [255] = 29, + [256] = 34, + [257] = 31, + [258] = 46, + [259] = 47, + [260] = 38, + [261] = 27, + [262] = 26, + [263] = 40, + [264] = 41, + [265] = 42, + [266] = 43, + [267] = 44, + [268] = 45, + [269] = 36, + [270] = 37, + [271] = 48, + [272] = 51, + [273] = 49, + [274] = 50, + [275] = 56, + [276] = 54, + [277] = 57, + [278] = 58, + [279] = 53, + [280] = 52, + [281] = 55, + [282] = 73, + [283] = 79, + [284] = 80, + [285] = 285, + [286] = 81, + [287] = 287, + [288] = 67, + [289] = 289, + [290] = 70, + [291] = 83, + [292] = 84, + [293] = 85, + [294] = 86, + [295] = 87, + [296] = 88, + [297] = 89, + [298] = 90, + [299] = 91, + [300] = 65, + [301] = 75, + [302] = 71, + [303] = 60, + [304] = 72, + [305] = 68, + [306] = 61, + [307] = 59, + [308] = 63, + [309] = 309, + [310] = 310, + [311] = 74, + [312] = 92, + [313] = 66, + [314] = 69, + [315] = 315, + [316] = 82, + [317] = 62, + [318] = 318, + [319] = 319, + [320] = 64, + [321] = 76, + [322] = 77, + [323] = 78, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 23, + [331] = 23, + [332] = 21, + [333] = 24, + [334] = 20, + [335] = 22, + [336] = 22, + [337] = 24, + [338] = 31, + [339] = 39, + [340] = 28, + [341] = 29, + [342] = 30, + [343] = 32, + [344] = 33, + [345] = 34, + [346] = 35, + [347] = 38, + [348] = 27, + [349] = 40, + [350] = 41, + [351] = 42, + [352] = 43, + [353] = 27, + [354] = 20, + [355] = 46, + [356] = 47, + [357] = 26, + [358] = 45, + [359] = 44, + [360] = 36, + [361] = 37, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 363, + [367] = 364, + [368] = 364, [369] = 369, - [370] = 51, - [371] = 32, - [372] = 44, - [373] = 39, - [374] = 27, - [375] = 42, - [376] = 43, - [377] = 377, - [378] = 378, - [379] = 60, - [380] = 380, - [381] = 64, - [382] = 382, - [383] = 66, - [384] = 384, - [385] = 67, - [386] = 68, - [387] = 70, - [388] = 88, - [389] = 71, - [390] = 72, - [391] = 73, - [392] = 74, - [393] = 75, - [394] = 76, - [395] = 395, - [396] = 78, - [397] = 79, - [398] = 80, - [399] = 81, - [400] = 56, - [401] = 83, - [402] = 84, - [403] = 85, - [404] = 86, - [405] = 87, - [406] = 57, - [407] = 58, - [408] = 408, - [409] = 409, - [410] = 378, - [411] = 411, + [370] = 370, + [371] = 364, + [372] = 372, + [373] = 48, + [374] = 51, + [375] = 363, + [376] = 49, + [377] = 50, + [378] = 42, + [379] = 39, + [380] = 33, + [381] = 26, + [382] = 41, + [383] = 28, + [384] = 53, + [385] = 40, + [386] = 56, + [387] = 31, + [388] = 38, + [389] = 32, + [390] = 37, + [391] = 58, + [392] = 57, + [393] = 36, + [394] = 55, + [395] = 35, + [396] = 34, + [397] = 397, + [398] = 54, + [399] = 43, + [400] = 46, + [401] = 47, + [402] = 29, + [403] = 52, + [404] = 30, + [405] = 21, + [406] = 406, + [407] = 87, + [408] = 88, + [409] = 89, + [410] = 90, + [411] = 91, [412] = 412, [413] = 413, - [414] = 414, + [414] = 75, [415] = 415, - [416] = 61, - [417] = 417, - [418] = 59, - [419] = 409, - [420] = 415, + [416] = 416, + [417] = 65, + [418] = 64, + [419] = 419, + [420] = 420, [421] = 421, [422] = 422, - [423] = 382, - [424] = 384, - [425] = 395, - [426] = 411, - [427] = 412, - [428] = 413, - [429] = 414, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 406, + [429] = 429, [430] = 430, - [431] = 431, - [432] = 377, - [433] = 417, - [434] = 421, - [435] = 411, - [436] = 412, - [437] = 413, - [438] = 414, - [439] = 430, - [440] = 431, - [441] = 377, - [442] = 430, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 431, - [447] = 62, - [448] = 65, - [449] = 449, - [450] = 69, - [451] = 77, - [452] = 82, - [453] = 422, - [454] = 417, - [455] = 378, - [456] = 63, - [457] = 25, - [458] = 23, - [459] = 24, - [460] = 460, + [431] = 63, + [432] = 60, + [433] = 413, + [434] = 415, + [435] = 61, + [436] = 59, + [437] = 416, + [438] = 438, + [439] = 426, + [440] = 427, + [441] = 429, + [442] = 429, + [443] = 430, + [444] = 419, + [445] = 413, + [446] = 415, + [447] = 420, + [448] = 421, + [449] = 422, + [450] = 423, + [451] = 424, + [452] = 425, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 426, + [457] = 457, + [458] = 67, + [459] = 68, + [460] = 430, [461] = 461, - [462] = 35, - [463] = 463, - [464] = 464, - [465] = 464, - [466] = 464, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 471, - [475] = 471, - [476] = 471, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 478, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 484, - [492] = 478, - [493] = 482, - [494] = 486, - [495] = 487, - [496] = 487, + [462] = 70, + [463] = 66, + [464] = 71, + [465] = 72, + [466] = 69, + [467] = 74, + [468] = 92, + [469] = 427, + [470] = 76, + [471] = 77, + [472] = 78, + [473] = 79, + [474] = 80, + [475] = 81, + [476] = 416, + [477] = 73, + [478] = 82, + [479] = 62, + [480] = 83, + [481] = 84, + [482] = 455, + [483] = 455, + [484] = 85, + [485] = 86, + [486] = 406, + [487] = 24, + [488] = 22, + [489] = 23, + [490] = 27, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, [497] = 497, - [498] = 482, - [499] = 484, + [498] = 496, + [499] = 496, [500] = 500, [501] = 501, - [502] = 497, + [502] = 502, [503] = 503, - [504] = 486, + [504] = 504, [505] = 505, - [506] = 506, - [507] = 497, - [508] = 479, + [506] = 500, + [507] = 507, + [508] = 508, [509] = 509, - [510] = 479, - [511] = 511, - [512] = 512, - [513] = 479, - [514] = 514, - [515] = 512, - [516] = 497, - [517] = 512, - [518] = 484, - [519] = 512, - [520] = 512, - [521] = 521, - [522] = 522, - [523] = 486, - [524] = 487, - [525] = 525, + [510] = 500, + [511] = 509, + [512] = 501, + [513] = 500, + [514] = 509, + [515] = 509, + [516] = 500, + [517] = 509, + [518] = 504, + [519] = 505, + [520] = 501, + [521] = 504, + [522] = 505, + [523] = 501, + [524] = 504, + [525] = 505, [526] = 526, [527] = 527, [528] = 528, @@ -2581,60 +2581,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [531] = 531, [532] = 532, [533] = 533, - [534] = 534, + [534] = 532, [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 37, - [541] = 541, + [536] = 528, + [537] = 533, + [538] = 529, + [539] = 530, + [540] = 529, + [541] = 531, [542] = 542, - [543] = 543, + [543] = 532, [544] = 544, - [545] = 36, + [545] = 533, [546] = 546, [547] = 547, [548] = 548, [549] = 549, [550] = 550, - [551] = 551, + [551] = 528, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, + [556] = 550, + [557] = 529, + [558] = 530, + [559] = 549, + [560] = 530, [561] = 561, - [562] = 562, + [562] = 531, [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, + [564] = 532, + [565] = 527, + [566] = 550, + [567] = 528, + [568] = 527, + [569] = 531, + [570] = 527, + [571] = 533, [572] = 572, [573] = 573, - [574] = 574, + [574] = 527, [575] = 575, - [576] = 576, + [576] = 549, [577] = 577, - [578] = 578, + [578] = 38, [579] = 579, [580] = 580, [581] = 581, - [582] = 39, + [582] = 582, [583] = 583, [584] = 584, - [585] = 38, + [585] = 585, [586] = 586, - [587] = 587, + [587] = 40, [588] = 588, [589] = 589, [590] = 590, @@ -2684,10 +2684,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [634] = 634, [635] = 635, [636] = 636, - [637] = 637, + [637] = 43, [638] = 638, - [639] = 639, - [640] = 640, + [639] = 42, + [640] = 41, [641] = 641, [642] = 642, [643] = 643, @@ -2695,221 +2695,221 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [645] = 645, [646] = 646, [647] = 647, - [648] = 620, - [649] = 621, - [650] = 622, - [651] = 623, - [652] = 624, - [653] = 625, - [654] = 626, - [655] = 627, - [656] = 629, - [657] = 630, - [658] = 631, - [659] = 646, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, [660] = 660, - [661] = 660, + [661] = 661, [662] = 662, [663] = 663, - [664] = 632, - [665] = 633, - [666] = 634, - [667] = 635, - [668] = 636, - [669] = 637, - [670] = 638, - [671] = 639, - [672] = 632, - [673] = 633, - [674] = 634, - [675] = 635, - [676] = 636, - [677] = 637, - [678] = 638, - [679] = 639, - [680] = 640, - [681] = 641, - [682] = 642, - [683] = 643, - [684] = 644, - [685] = 645, - [686] = 640, - [687] = 641, - [688] = 642, - [689] = 643, - [690] = 647, - [691] = 620, - [692] = 621, - [693] = 622, - [694] = 623, - [695] = 624, - [696] = 625, - [697] = 626, - [698] = 627, - [699] = 629, - [700] = 630, - [701] = 631, - [702] = 646, - [703] = 660, - [704] = 644, - [705] = 645, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 675, + [678] = 669, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 676, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 680, + [697] = 697, + [698] = 698, + [699] = 673, + [700] = 700, + [701] = 688, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 710, - [711] = 711, - [712] = 647, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, + [710] = 670, + [711] = 671, + [712] = 672, + [713] = 673, + [714] = 674, + [715] = 675, + [716] = 689, [717] = 717, - [718] = 718, - [719] = 716, - [720] = 715, - [721] = 716, - [722] = 715, - [723] = 716, - [724] = 716, - [725] = 725, - [726] = 715, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 728, + [718] = 674, + [719] = 669, + [720] = 679, + [721] = 680, + [722] = 681, + [723] = 682, + [724] = 683, + [725] = 684, + [726] = 685, + [727] = 686, + [728] = 688, + [729] = 689, + [730] = 690, + [731] = 691, [732] = 732, - [733] = 733, - [734] = 733, - [735] = 733, - [736] = 736, + [733] = 690, + [734] = 681, + [735] = 691, + [736] = 682, [737] = 737, - [738] = 736, - [739] = 737, - [740] = 736, - [741] = 728, - [742] = 728, - [743] = 733, - [744] = 736, - [745] = 737, - [746] = 730, - [747] = 733, - [748] = 736, - [749] = 737, - [750] = 730, - [751] = 737, - [752] = 728, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, + [738] = 709, + [739] = 683, + [740] = 702, + [741] = 741, + [742] = 670, + [743] = 684, + [744] = 679, + [745] = 745, + [746] = 703, + [747] = 671, + [748] = 702, + [749] = 703, + [750] = 750, + [751] = 704, + [752] = 705, + [753] = 706, + [754] = 704, + [755] = 707, + [756] = 672, + [757] = 708, + [758] = 709, + [759] = 685, + [760] = 686, [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, + [762] = 705, + [763] = 706, + [764] = 707, [765] = 765, - [766] = 766, - [767] = 767, + [766] = 708, + [767] = 676, [768] = 768, [769] = 769, [770] = 770, - [771] = 771, - [772] = 772, + [771] = 770, + [772] = 769, [773] = 773, - [774] = 774, + [774] = 770, [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, + [776] = 769, + [777] = 770, + [778] = 769, [779] = 779, - [780] = 780, - [781] = 766, + [780] = 770, + [781] = 781, [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, + [787] = 784, + [788] = 784, + [789] = 783, [790] = 790, [791] = 791, [792] = 792, - [793] = 793, - [794] = 794, + [793] = 786, + [794] = 790, [795] = 795, - [796] = 796, + [796] = 783, [797] = 797, - [798] = 783, - [799] = 799, - [800] = 784, + [798] = 798, + [799] = 786, + [800] = 786, [801] = 801, [802] = 802, - [803] = 803, - [804] = 782, - [805] = 805, - [806] = 786, - [807] = 787, - [808] = 799, - [809] = 809, - [810] = 799, - [811] = 795, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 812, - [816] = 816, + [803] = 783, + [804] = 790, + [805] = 790, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 791, + [810] = 810, + [811] = 783, + [812] = 791, + [813] = 791, + [814] = 786, + [815] = 790, + [816] = 791, [817] = 817, [818] = 818, [819] = 819, [820] = 820, - [821] = 813, - [822] = 812, + [821] = 821, + [822] = 822, [823] = 823, - [824] = 816, + [824] = 824, [825] = 825, - [826] = 812, - [827] = 825, + [826] = 826, + [827] = 827, [828] = 828, [829] = 829, - [830] = 813, + [830] = 830, [831] = 831, [832] = 832, [833] = 833, [834] = 834, - [835] = 833, + [835] = 818, [836] = 836, - [837] = 825, + [837] = 837, [838] = 838, - [839] = 812, - [840] = 833, + [839] = 839, + [840] = 840, [841] = 841, - [842] = 813, + [842] = 842, [843] = 843, - [844] = 833, + [844] = 819, [845] = 845, - [846] = 846, - [847] = 847, - [848] = 816, - [849] = 849, + [846] = 821, + [847] = 822, + [848] = 823, + [849] = 824, [850] = 850, [851] = 851, - [852] = 852, + [852] = 825, [853] = 853, [854] = 854, - [855] = 850, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, [859] = 859, [860] = 860, [861] = 861, - [862] = 850, + [862] = 862, [863] = 863, [864] = 864, [865] = 865, @@ -2917,77 +2917,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [867] = 867, [868] = 868, [869] = 869, - [870] = 870, + [870] = 818, [871] = 871, - [872] = 872, + [872] = 820, [873] = 873, [874] = 874, [875] = 875, - [876] = 875, - [877] = 870, + [876] = 876, + [877] = 877, [878] = 878, - [879] = 879, + [879] = 874, [880] = 880, [881] = 881, - [882] = 879, - [883] = 872, - [884] = 884, + [882] = 875, + [883] = 883, + [884] = 874, [885] = 885, - [886] = 881, - [887] = 880, - [888] = 879, - [889] = 881, - [890] = 873, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 884, - [895] = 895, - [896] = 896, + [886] = 886, + [887] = 887, + [888] = 885, + [889] = 874, + [890] = 875, + [891] = 877, + [892] = 877, + [893] = 881, + [894] = 894, + [895] = 874, + [896] = 885, [897] = 897, [898] = 898, [899] = 899, [900] = 900, [901] = 901, - [902] = 902, - [903] = 903, + [902] = 881, + [903] = 881, [904] = 904, [905] = 905, [906] = 906, - [907] = 870, - [908] = 884, + [907] = 907, + [908] = 877, [909] = 909, [910] = 910, [911] = 911, [912] = 912, - [913] = 867, + [913] = 913, [914] = 914, - [915] = 880, - [916] = 872, - [917] = 875, - [918] = 867, - [919] = 901, - [920] = 902, - [921] = 912, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, [922] = 922, - [923] = 910, - [924] = 924, - [925] = 901, - [926] = 902, - [927] = 912, + [923] = 923, + [924] = 914, + [925] = 914, + [926] = 926, + [927] = 927, [928] = 928, - [929] = 910, + [929] = 929, [930] = 930, - [931] = 875, - [932] = 870, - [933] = 881, - [934] = 898, - [935] = 900, - [936] = 898, - [937] = 900, - [938] = 875, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 929, + [936] = 936, + [937] = 937, + [938] = 938, [939] = 939, - [940] = 489, + [940] = 940, + [941] = 941, + [942] = 932, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 941, + [948] = 948, + [949] = 946, + [950] = 933, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 948, + [961] = 946, + [962] = 962, + [963] = 963, + [964] = 932, + [965] = 932, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 928, + [972] = 941, + [973] = 933, + [974] = 959, + [975] = 931, + [976] = 933, + [977] = 977, + [978] = 929, + [979] = 931, + [980] = 980, + [981] = 981, + [982] = 959, + [983] = 969, + [984] = 946, + [985] = 977, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 969, + [990] = 928, + [991] = 977, + [992] = 986, + [993] = 988, + [994] = 988, + [995] = 968, + [996] = 968, + [997] = 986, + [998] = 959, + [999] = 937, + [1000] = 936, + [1001] = 937, + [1002] = 936, + [1003] = 932, + [1004] = 535, + [1005] = 1005, }; static const TSCharacterRange sym_identifier_character_set_1[] = { @@ -3005,78 +3070,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(160); + if (eof) ADVANCE(159); ADVANCE_MAP( - '!', 248, - '"', 205, + '!', 247, + '"', 204, '#', 4, - '%', 255, - '&', 112, - '(', 180, - ')', 182, - '*', 192, - '+', 256, - ',', 181, - '-', 246, - '.', 267, - '/', 252, - '0', 197, - ':', 186, - '<', 194, - '=', 174, - '>', 196, - '?', 188, - '@', 175, - '[', 176, + '%', 254, + '&', 110, + '(', 179, + ')', 181, + '*', 191, + '+', 255, + ',', 180, + '-', 245, + '.', 266, + '/', 251, + '0', 196, + ':', 185, + '<', 193, + '=', 173, + '>', 195, + '?', 187, + '@', 174, + '[', 175, '\\', 58, - ']', 177, - '`', 130, - 'i', 275, - 'r', 274, - '{', 171, - '|', 190, - '}', 172, - '~', 125, + ']', 176, + '`', 129, + 'i', 274, + 'r', 273, + '{', 170, + '|', 189, + '}', 171, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(158); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + lookahead == ';') SKIP(157); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 1: ADVANCE_MAP( - '!', 248, - '"', 205, + '!', 247, + '"', 204, '#', 4, - '%', 255, - '&', 112, - '(', 180, - ')', 182, - '*', 192, - '+', 256, - ',', 181, - '-', 246, - '.', 267, - '/', 253, - '0', 197, - ':', 186, - '<', 194, - '=', 174, - '>', 196, - '?', 188, - '[', 176, - ']', 177, - '`', 130, - 'i', 275, - 'r', 274, - '{', 171, - '|', 190, - '}', 172, - '~', 125, + '%', 254, + '&', 110, + '(', 179, + ')', 181, + '*', 191, + '+', 255, + ',', 180, + '-', 245, + '.', 266, + '/', 252, + '0', 196, + ':', 185, + '<', 193, + '=', 173, + '>', 195, + '?', 187, + '[', 175, + ']', 176, + '`', 129, + 'i', 274, + 'r', 273, + '{', 170, + '|', 189, + '}', 171, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || @@ -3084,45 +3149,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == ';') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(249); - if (lookahead == '=') ADVANCE(260); + if (lookahead == '!') ADVANCE(248); + if (lookahead == '=') ADVANCE(259); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(161); + if (lookahead == '!') ADVANCE(160); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(161); - if (lookahead == '"') ADVANCE(207); + if (lookahead == '!') ADVANCE(160); + if (lookahead == '"') ADVANCE(206); if (lookahead == '#') ADVANCE(11); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(161); - if (lookahead == '"') ADVANCE(206); + if (lookahead == '!') ADVANCE(160); + if (lookahead == '"') ADVANCE(205); END_STATE(); case 6: ADVANCE_MAP( '!', 2, - '"', 204, + '"', 203, '#', 5, - '%', 255, - '&', 112, - '*', 192, - '+', 256, - '.', 266, - '/', 253, - '<', 194, - '=', 126, - '>', 196, - '?', 123, - '\\', 113, - ']', 177, - '`', 130, - '|', 128, - '~', 125, + '%', 254, + '&', 110, + ')', 181, + '*', 191, + '+', 255, + ',', 180, + '-', 126, + '.', 265, + '/', 252, + ':', 185, + '<', 193, + '=', 173, + '>', 195, + '?', 187, + '\\', 111, + ']', 128, + '`', 129, + '{', 170, + '|', 189, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || @@ -3130,27 +3200,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == ';') SKIP(7); - if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(280); + if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(279); END_STATE(); case 7: ADVANCE_MAP( '!', 2, - '"', 204, + '"', 203, '#', 5, - '%', 255, - '&', 112, - '*', 192, - '+', 256, - '.', 266, - '/', 253, - '<', 194, - '=', 126, - '>', 196, - '?', 123, - ']', 177, - '`', 130, - '|', 128, - '~', 125, + '%', 254, + '&', 110, + ')', 181, + '*', 191, + '+', 255, + ',', 180, + '-', 126, + '.', 265, + '/', 252, + ':', 185, + '<', 193, + '=', 173, + '>', 195, + '?', 187, + ']', 128, + '`', 129, + '{', 170, + '|', 189, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || @@ -3158,33 +3233,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == ';') SKIP(7); - if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(280); + if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(279); END_STATE(); case 8: ADVANCE_MAP( '!', 2, - '"', 28, + '"', 29, '#', 3, - '%', 255, - '&', 112, - ')', 182, - '*', 192, - '+', 256, - ',', 181, - '-', 127, - '.', 266, - '/', 253, - ':', 186, - '<', 194, - '=', 174, - '>', 196, - '?', 188, - '\\', 84, - ']', 129, - '`', 130, - '{', 171, - '|', 190, - '~', 125, + '%', 254, + '&', 110, + '*', 191, + '+', 255, + '.', 265, + '/', 252, + '<', 193, + '=', 125, + '>', 195, + '?', 122, + '\\', 60, + ']', 176, + '`', 129, + '|', 127, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || @@ -3192,32 +3262,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == ';') SKIP(9); - if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(280); + if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(279); END_STATE(); case 9: ADVANCE_MAP( '!', 2, - '"', 28, + '"', 29, '#', 3, - '%', 255, - '&', 112, - ')', 182, - '*', 192, - '+', 256, - ',', 181, - '-', 127, - '.', 266, - '/', 253, - ':', 186, - '<', 194, - '=', 174, - '>', 196, - '?', 188, - ']', 129, - '`', 130, - '{', 171, - '|', 190, - '~', 125, + '%', 254, + '&', 110, + '*', 191, + '+', 255, + '.', 265, + '/', 252, + '<', 193, + '=', 125, + '>', 195, + '?', 122, + ']', 176, + '`', 129, + '|', 127, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || @@ -3225,60 +3290,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == ';') SKIP(9); - if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(280); + if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(279); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(219); + if (lookahead == '"') ADVANCE(218); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(209); + if (lookahead == '"') ADVANCE(208); if (lookahead == '#') ADVANCE(13); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(220); + if (lookahead == '"') ADVANCE(219); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(211); + if (lookahead == '"') ADVANCE(210); if (lookahead == '#') ADVANCE(15); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(222); + if (lookahead == '"') ADVANCE(221); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(213); + if (lookahead == '"') ADVANCE(212); if (lookahead == '#') ADVANCE(17); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(224); + if (lookahead == '"') ADVANCE(223); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(215); + if (lookahead == '"') ADVANCE(214); if (lookahead == '#') ADVANCE(19); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(226); + if (lookahead == '"') ADVANCE(225); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(217); + if (lookahead == '"') ADVANCE(216); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(228); + if (lookahead == '"') ADVANCE(227); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(230); + if (lookahead == '"') ADVANCE(229); END_STATE(); case 22: ADVANCE_MAP( - '"', 204, + '"', 203, '#', 5, - '(', 180, - ')', 182, - '*', 191, - '/', 120, - '`', 130, - 'i', 275, - 'r', 274, - '{', 171, + '(', 179, + ')', 181, + '*', 190, + '/', 119, + '>', 194, + '`', 129, + 'i', 274, + 'r', 273, + '{', 170, ); if (lookahead == '\t' || lookahead == '\n' || @@ -3286,110 +3352,110 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == ';') SKIP(22); - if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(280); + if ((!eof && set_contains(sym_identifier_character_set_1, 10, lookahead))) ADVANCE(279); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(29); + if (lookahead == '"') ADVANCE(47); + END_STATE(); + case 24: + if (lookahead == '"') ADVANCE(67); + END_STATE(); + case 25: + if (lookahead == '"') ADVANCE(30); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); - if (lookahead == '\\') ADVANCE(61); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '\\') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(24); + lookahead == ';') SKIP(26); END_STATE(); - case 24: - if (lookahead == '"') ADVANCE(29); + case 26: + if (lookahead == '"') ADVANCE(30); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '/') ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(24); + lookahead == ';') SKIP(26); END_STATE(); - case 25: - if (lookahead == '"') ADVANCE(32); + case 27: + if (lookahead == '"') ADVANCE(31); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); - if (lookahead == '\\') ADVANCE(75); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '\\') ADVANCE(90); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(26); + lookahead == ';') SKIP(28); END_STATE(); - case 26: - if (lookahead == '"') ADVANCE(32); + case 28: + if (lookahead == '"') ADVANCE(31); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '/') ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(26); - END_STATE(); - case 27: - if (lookahead == '"') ADVANCE(49); - END_STATE(); - case 28: - if (lookahead == '"') ADVANCE(34); - if (lookahead == '#') ADVANCE(59); + lookahead == ';') SKIP(28); END_STATE(); case 29: - if (lookahead == '"') ADVANCE(27); - if (lookahead == '#') ADVANCE(208); + if (lookahead == '"') ADVANCE(23); + if (lookahead == '#') ADVANCE(207); END_STATE(); case 30: + if (lookahead == '"') ADVANCE(24); + if (lookahead == '#') ADVANCE(48); + END_STATE(); + case 31: + if (lookahead == '"') ADVANCE(32); + if (lookahead == '#') ADVANCE(69); + END_STATE(); + case 32: + if (lookahead == '"') ADVANCE(81); + END_STATE(); + case 33: if (lookahead == '"') ADVANCE(36); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); - if (lookahead == '\\') ADVANCE(89); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '\\') ADVANCE(99); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(31); + lookahead == ';') SKIP(34); END_STATE(); - case 31: + case 34: if (lookahead == '"') ADVANCE(36); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '/') ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(31); - END_STATE(); - case 32: - if (lookahead == '"') ADVANCE(33); - if (lookahead == '#') ADVANCE(50); - END_STATE(); - case 33: - if (lookahead == '"') ADVANCE(76); - END_STATE(); - case 34: - if (lookahead == '"') ADVANCE(109); + lookahead == ';') SKIP(34); END_STATE(); case 35: - if (lookahead == '"') ADVANCE(91); + if (lookahead == '"') ADVANCE(93); END_STATE(); case 36: if (lookahead == '"') ADVANCE(35); - if (lookahead == '#') ADVANCE(90); + if (lookahead == '#') ADVANCE(83); END_STATE(); case 37: - if (lookahead == '"') ADVANCE(42); + if (lookahead == '"') ADVANCE(39); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); - if (lookahead == '\\') ADVANCE(99); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '\\') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -3398,9 +3464,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(38); END_STATE(); case 38: - if (lookahead == '"') ADVANCE(42); + if (lookahead == '"') ADVANCE(39); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '/') ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -3409,93 +3475,105 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(38); END_STATE(); case 39: - if (lookahead == '"') ADVANCE(44); + if (lookahead == '"') ADVANCE(40); + if (lookahead == '#') ADVANCE(94); + END_STATE(); + case 40: + if (lookahead == '"') ADVANCE(101); + END_STATE(); + case 41: + if (lookahead == '"') ADVANCE(43); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '/') ADVANCE(119); if (lookahead == '\\') ADVANCE(106); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(40); + lookahead == ';') SKIP(42); END_STATE(); - case 40: - if (lookahead == '"') ADVANCE(44); + case 42: + if (lookahead == '"') ADVANCE(43); if (lookahead == '#') ADVANCE(3); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '/') ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(40); - END_STATE(); - case 41: - if (lookahead == '"') ADVANCE(101); - END_STATE(); - case 42: - if (lookahead == '"') ADVANCE(41); - if (lookahead == '#') ADVANCE(100); + lookahead == ';') SKIP(42); END_STATE(); case 43: - if (lookahead == '"') ADVANCE(108); + if (lookahead == '"') ADVANCE(44); + if (lookahead == '#') ADVANCE(102); END_STATE(); case 44: - if (lookahead == '"') ADVANCE(43); - if (lookahead == '#') ADVANCE(107); + if (lookahead == '"') ADVANCE(107); END_STATE(); case 45: - if (lookahead == '#') ADVANCE(118); + if (lookahead == '#') ADVANCE(117); END_STATE(); case 46: ADVANCE_MAP( - '#', 118, - '(', 244, - 'u', 136, - '"', 237, - '\\', 237, - 'n', 237, - 'r', 237, - 't', 237, + '#', 117, + '(', 243, + 'u', 135, + '"', 236, + '\\', 236, + 'n', 236, + 'r', 236, + 't', 236, ); END_STATE(); case 47: - if (lookahead == '#') ADVANCE(212); + if (lookahead == '#') ADVANCE(220); END_STATE(); case 48: - if (lookahead == '#') ADVANCE(231); + if (lookahead == '#') ADVANCE(209); END_STATE(); case 49: - if (lookahead == '#') ADVANCE(221); + if (lookahead == '#') ADVANCE(222); END_STATE(); case 50: - if (lookahead == '#') ADVANCE(210); + if (lookahead == '#') ADVANCE(211); END_STATE(); case 51: - if (lookahead == '#') ADVANCE(223); + if (lookahead == '#') ADVANCE(224); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(214); + if (lookahead == '#') ADVANCE(213); END_STATE(); case 53: - if (lookahead == '#') ADVANCE(225); + if (lookahead == '#') ADVANCE(226); END_STATE(); case 54: - if (lookahead == '#') ADVANCE(216); + if (lookahead == '#') ADVANCE(215); END_STATE(); case 55: - if (lookahead == '#') ADVANCE(227); + if (lookahead == '#') ADVANCE(228); END_STATE(); case 56: - if (lookahead == '#') ADVANCE(218); + if (lookahead == '#') ADVANCE(217); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(229); + if (lookahead == '#') ADVANCE(230); END_STATE(); case 58: ADVANCE_MAP( - '#', 60, + '#', 59, + '(', 238, + 'u', 130, + '"', 231, + '\\', 231, + 'n', 231, + 'r', 231, + 't', 231, + ); + END_STATE(); + case 59: + ADVANCE_MAP( + '#', 61, '(', 239, 'u', 131, '"', 232, @@ -3505,10 +3583,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 232, ); END_STATE(); - case 59: - if (lookahead == '#') ADVANCE(47); - END_STATE(); case 60: + if (lookahead == '#') ADVANCE(112); + END_STATE(); + case 61: ADVANCE_MAP( '#', 63, '(', 240, @@ -3520,15 +3598,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 233, ); END_STATE(); - case 61: - if (lookahead == '#') ADVANCE(114); - END_STATE(); case 62: - if (lookahead == '#') ADVANCE(72); + if (lookahead == '#') ADVANCE(113); END_STATE(); case 63: ADVANCE_MAP( - '#', 66, + '#', 65, '(', 241, 'u', 133, '"', 234, @@ -3539,14 +3614,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 64: - if (lookahead == '#') ADVANCE(115); + if (lookahead == '#') ADVANCE(114); END_STATE(); case 65: - if (lookahead == '#') ADVANCE(45); - END_STATE(); - case 66: ADVANCE_MAP( - '#', 70, + '#', 46, '(', 242, 'u', 134, '"', 235, @@ -3556,185 +3628,155 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 235, ); END_STATE(); + case 66: + if (lookahead == '#') ADVANCE(115); + END_STATE(); case 67: - ADVANCE_MAP( - '#', 116, - '(', 242, - 'u', 134, - '"', 235, - '\\', 235, - 'n', 235, - 'r', 235, - 't', 235, - ); + if (lookahead == '#') ADVANCE(49); END_STATE(); case 68: - if (lookahead == '#') ADVANCE(48); + if (lookahead == '#') ADVANCE(116); END_STATE(); case 69: - if (lookahead == '#') ADVANCE(46); + if (lookahead == '#') ADVANCE(50); END_STATE(); case 70: - ADVANCE_MAP( - '#', 46, - '(', 243, - 'u', 135, - '"', 236, - '\\', 236, - 'n', 236, - 'r', 236, - 't', 236, - ); + if (lookahead == '#') ADVANCE(51); END_STATE(); case 71: - ADVANCE_MAP( - '#', 117, - '(', 243, - 'u', 135, - '"', 236, - '\\', 236, - 'n', 236, - 'r', 236, - 't', 236, - ); + if (lookahead == '#') ADVANCE(52); END_STATE(); case 72: - if (lookahead == '#') ADVANCE(86); + if (lookahead == '#') ADVANCE(53); END_STATE(); case 73: - if (lookahead == '#') ADVANCE(67); + if (lookahead == '#') ADVANCE(54); END_STATE(); case 74: - if (lookahead == '#') ADVANCE(71); + if (lookahead == '#') ADVANCE(55); END_STATE(); case 75: - if (lookahead == '#') ADVANCE(64); + if (lookahead == '#') ADVANCE(56); END_STATE(); case 76: - if (lookahead == '#') ADVANCE(51); + if (lookahead == '#') ADVANCE(45); END_STATE(); case 77: - if (lookahead == '#') ADVANCE(52); + if (lookahead == '#') ADVANCE(57); END_STATE(); case 78: - if (lookahead == '#') ADVANCE(53); + if (lookahead == '#') ADVANCE(62); END_STATE(); case 79: - if (lookahead == '#') ADVANCE(54); + if (lookahead == '#') ADVANCE(64); END_STATE(); case 80: - if (lookahead == '#') ADVANCE(55); + if (lookahead == '#') ADVANCE(66); END_STATE(); case 81: - if (lookahead == '#') ADVANCE(56); + if (lookahead == '#') ADVANCE(70); END_STATE(); case 82: - if (lookahead == '#') ADVANCE(57); + if (lookahead == '#') ADVANCE(68); END_STATE(); case 83: - if (lookahead == '#') ADVANCE(73); + if (lookahead == '#') ADVANCE(71); END_STATE(); case 84: - if (lookahead == '#') ADVANCE(62); + if (lookahead == '#') ADVANCE(72); END_STATE(); case 85: - if (lookahead == '#') ADVANCE(74); + if (lookahead == '#') ADVANCE(73); END_STATE(); case 86: - ADVANCE_MAP( - '#', 65, - '(', 242, - 'u', 134, - '"', 235, - '\\', 235, - 'n', 235, - 'r', 235, - 't', 235, - ); + if (lookahead == '#') ADVANCE(74); END_STATE(); case 87: - if (lookahead == '#') ADVANCE(69); + if (lookahead == '#') ADVANCE(75); END_STATE(); case 88: - if (lookahead == '#') ADVANCE(68); + if (lookahead == '#') ADVANCE(76); END_STATE(); case 89: - if (lookahead == '#') ADVANCE(83); + if (lookahead == '#') ADVANCE(77); END_STATE(); case 90: - if (lookahead == '#') ADVANCE(77); + if (lookahead == '#') ADVANCE(79); END_STATE(); case 91: - if (lookahead == '#') ADVANCE(78); + if (lookahead == '#') ADVANCE(80); END_STATE(); case 92: - if (lookahead == '#') ADVANCE(85); + if (lookahead == '#') ADVANCE(82); END_STATE(); case 93: - if (lookahead == '#') ADVANCE(79); + if (lookahead == '#') ADVANCE(84); END_STATE(); case 94: - if (lookahead == '#') ADVANCE(80); + if (lookahead == '#') ADVANCE(85); END_STATE(); case 95: - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(86); END_STATE(); case 96: - if (lookahead == '#') ADVANCE(81); + if (lookahead == '#') ADVANCE(87); END_STATE(); case 97: - if (lookahead == '#') ADVANCE(82); + if (lookahead == '#') ADVANCE(88); END_STATE(); case 98: - if (lookahead == '#') ADVANCE(88); + if (lookahead == '#') ADVANCE(89); END_STATE(); case 99: - if (lookahead == '#') ADVANCE(92); + if (lookahead == '#') ADVANCE(91); END_STATE(); case 100: - if (lookahead == '#') ADVANCE(93); + if (lookahead == '#') ADVANCE(92); END_STATE(); case 101: - if (lookahead == '#') ADVANCE(94); + if (lookahead == '#') ADVANCE(95); END_STATE(); case 102: - if (lookahead == '#') ADVANCE(95); + if (lookahead == '#') ADVANCE(96); END_STATE(); case 103: - if (lookahead == '#') ADVANCE(96); + if (lookahead == '#') ADVANCE(97); END_STATE(); case 104: - if (lookahead == '#') ADVANCE(97); + if (lookahead == '#') ADVANCE(98); END_STATE(); case 105: - if (lookahead == '#') ADVANCE(98); + if (lookahead == '#') ADVANCE(100); END_STATE(); case 106: - if (lookahead == '#') ADVANCE(102); + if (lookahead == '#') ADVANCE(103); END_STATE(); case 107: - if (lookahead == '#') ADVANCE(103); + if (lookahead == '#') ADVANCE(104); END_STATE(); case 108: - if (lookahead == '#') ADVANCE(104); + if (lookahead == '$') ADVANCE(281); + if (lookahead == '/') ADVANCE(283); + if (lookahead != 0) ADVANCE(280); END_STATE(); case 109: - if (lookahead == '#') ADVANCE(105); + if (lookahead == '$') ADVANCE(281); + if (lookahead != 0 && + lookahead != '/') ADVANCE(280); END_STATE(); case 110: - if (lookahead == '$') ADVANCE(282); - if (lookahead == '/') ADVANCE(284); - if (lookahead != 0) ADVANCE(281); + if (lookahead == '&') ADVANCE(260); END_STATE(); case 111: - if (lookahead == '$') ADVANCE(282); - if (lookahead != 0 && - lookahead != '/') ADVANCE(281); + if (lookahead == '(') ADVANCE(238); + if (lookahead == 'u') ADVANCE(130); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(231); END_STATE(); case 112: - if (lookahead == '&') ADVANCE(261); - END_STATE(); - case 113: if (lookahead == '(') ADVANCE(239); if (lookahead == 'u') ADVANCE(131); if (lookahead == '"' || @@ -3743,7 +3785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r' || lookahead == 't') ADVANCE(232); END_STATE(); - case 114: + case 113: if (lookahead == '(') ADVANCE(240); if (lookahead == 'u') ADVANCE(132); if (lookahead == '"' || @@ -3752,7 +3794,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r' || lookahead == 't') ADVANCE(233); END_STATE(); - case 115: + case 114: if (lookahead == '(') ADVANCE(241); if (lookahead == 'u') ADVANCE(133); if (lookahead == '"' || @@ -3761,6 +3803,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r' || lookahead == 't') ADVANCE(234); END_STATE(); + case 115: + if (lookahead == '(') ADVANCE(242); + if (lookahead == 'u') ADVANCE(134); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(235); + END_STATE(); case 116: if (lookahead == '(') ADVANCE(243); if (lookahead == 'u') ADVANCE(135); @@ -3780,57 +3831,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 't') ADVANCE(237); END_STATE(); case 118: - if (lookahead == '(') ADVANCE(245); - if (lookahead == 'u') ADVANCE(137); - if (lookahead == '"' || - lookahead == '\\' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(238); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '/') ADVANCE(108); END_STATE(); case 119: - if (lookahead == '*') ADVANCE(122); - if (lookahead == '/') ADVANCE(110); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '/') ADVANCE(109); END_STATE(); case 120: - if (lookahead == '*') ADVANCE(122); - if (lookahead == '/') ADVANCE(111); + if (lookahead == '*') ADVANCE(120); + if (lookahead == '/') ADVANCE(284); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 121: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(285); - if (lookahead != 0) ADVANCE(122); + if (lookahead == '*') ADVANCE(120); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 122: - if (lookahead == '*') ADVANCE(121); - if (lookahead != 0) ADVANCE(122); + if (lookahead == '.') ADVANCE(267); + if (lookahead == '?') ADVANCE(249); END_STATE(); case 123: - if (lookahead == '.') ADVANCE(268); - if (lookahead == '?') ADVANCE(250); + if (lookahead == '.') ADVANCE(182); END_STATE(); case 124: - if (lookahead == '.') ADVANCE(183); + if (lookahead == '/') ADVANCE(253); END_STATE(); case 125: - if (lookahead == '/') ADVANCE(254); + if (lookahead == '=') ADVANCE(258); END_STATE(); case 126: - if (lookahead == '=') ADVANCE(259); + if (lookahead == '>') ADVANCE(184); END_STATE(); case 127: - if (lookahead == '>') ADVANCE(185); + if (lookahead == '>') ADVANCE(262); + if (lookahead == '|') ADVANCE(261); END_STATE(); case 128: - if (lookahead == '>') ADVANCE(263); - if (lookahead == '|') ADVANCE(262); + if (lookahead == ']') ADVANCE(178); END_STATE(); case 129: - if (lookahead == ']') ADVANCE(179); + if (lookahead == '`') ADVANCE(268); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 130: - if (lookahead == '`') ADVANCE(269); - if (lookahead != 0) ADVANCE(130); + if (lookahead == '{') ADVANCE(150); END_STATE(); case 131: if (lookahead == '{') ADVANCE(151); @@ -3851,7 +3896,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(156); END_STATE(); case 137: - if (lookahead == '{') ADVANCE(157); + if (lookahead == '}') ADVANCE(231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); END_STATE(); case 138: if (lookahead == '}') ADVANCE(232); @@ -3890,33 +3938,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 144: - if (lookahead == '}') ADVANCE(238); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + if (lookahead == '+' || + lookahead == '-') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202); END_STATE(); case 145: - if (lookahead == '+' || - lookahead == '-') ADVANCE(149); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + if (lookahead == '0' || + lookahead == '1') ADVANCE(198); END_STATE(); case 146: - if (lookahead == '0' || - lookahead == '1') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(199); END_STATE(); case 147: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(200); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); END_STATE(); case 148: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202); END_STATE(); case 149: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(200); END_STATE(); case 150: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); END_STATE(); case 151: if (('0' <= lookahead && lookahead <= '9') || @@ -3949,579 +3996,574 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 157: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); - END_STATE(); - case 158: - if (eof) ADVANCE(160); + if (eof) ADVANCE(159); ADVANCE_MAP( - '!', 248, - '"', 205, + '!', 247, + '"', 204, '#', 4, - '%', 255, - '&', 112, - '(', 180, - ')', 182, - '*', 192, - '+', 256, - ',', 181, - '-', 246, - '.', 267, - '/', 252, - '0', 197, - ':', 186, - '<', 194, - '=', 174, - '>', 196, - '?', 188, - '@', 175, - '[', 176, - ']', 177, - '`', 130, - 'i', 275, - 'r', 274, - '{', 171, - '|', 190, - '}', 172, - '~', 125, + '%', 254, + '&', 110, + '(', 179, + ')', 181, + '*', 191, + '+', 255, + ',', 180, + '-', 245, + '.', 266, + '/', 251, + '0', 196, + ':', 185, + '<', 193, + '=', 173, + '>', 195, + '?', 187, + '@', 174, + '[', 175, + ']', 176, + '`', 129, + 'i', 274, + 'r', 273, + '{', 170, + '|', 189, + '}', 171, + '~', 124, ); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(158); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + lookahead == ';') SKIP(157); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); - case 159: - if (eof) ADVANCE(160); + case 158: + if (eof) ADVANCE(159); ADVANCE_MAP( - '!', 247, - '"', 205, + '!', 246, + '"', 204, '#', 4, - '(', 180, - ')', 182, - ',', 181, - '-', 246, - '.', 267, - '/', 119, - '0', 197, - '<', 193, - '=', 173, - '>', 195, - '?', 187, - '@', 175, - '[', 176, - '`', 130, - 'i', 275, - 'r', 274, - '{', 171, - '|', 189, - '}', 172, + '(', 179, + ')', 181, + ',', 180, + '-', 245, + '.', 266, + '/', 118, + '0', 196, + '<', 192, + '=', 172, + '>', 194, + '?', 186, + '@', 174, + '[', 175, + '`', 129, + 'i', 274, + 'r', 273, + '{', 170, + '|', 188, + '}', 171, ); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') SKIP(159); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + lookahead == ';') SKIP(158); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); - case 160: + case 159: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 161: + case 160: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 162: + case 161: ACCEPT_TOKEN(anon_sym_POUND_BANG); if (lookahead != 0 && - lookahead != '\n') ADVANCE(169); + lookahead != '\n') ADVANCE(168); + END_STATE(); + case 162: + ACCEPT_TOKEN(aux_sym_shebangComment_token1); + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '/') ADVANCE(168); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 163: ACCEPT_TOKEN(aux_sym_shebangComment_token1); - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '/') ADVANCE(169); - if (lookahead != 0) ADVANCE(164); + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '*') ADVANCE(162); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 164: ACCEPT_TOKEN(aux_sym_shebangComment_token1); - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '*') ADVANCE(163); - if (lookahead != 0) ADVANCE(164); + if (lookahead == '\n') ADVANCE(280); + if (lookahead == '$') ADVANCE(282); + if (lookahead == '/') ADVANCE(168); + if (lookahead != 0) ADVANCE(168); END_STATE(); case 165: ACCEPT_TOKEN(aux_sym_shebangComment_token1); - if (lookahead == '\n') ADVANCE(281); - if (lookahead == '$') ADVANCE(283); - if (lookahead == '/') ADVANCE(169); - if (lookahead != 0) ADVANCE(169); - END_STATE(); - case 166: - ACCEPT_TOKEN(aux_sym_shebangComment_token1); - if (lookahead == '!') ADVANCE(162); + if (lookahead == '!') ADVANCE(161); if (lookahead != 0 && - lookahead != '\n') ADVANCE(169); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 167: + case 166: ACCEPT_TOKEN(aux_sym_shebangComment_token1); - if (lookahead == '#') ADVANCE(166); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '#') ADVANCE(165); + if (lookahead == '/') ADVANCE(167); if (lookahead == '\t' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || - lookahead == ';') ADVANCE(167); + lookahead == ';') ADVANCE(166); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(169); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(aux_sym_shebangComment_token1); - if (lookahead == '*') ADVANCE(164); - if (lookahead == '/') ADVANCE(165); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '/') ADVANCE(164); if (lookahead != 0 && - lookahead != '\n') ADVANCE(169); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(aux_sym_shebangComment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(169); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(anon_sym_import_STAR); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); case 173: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(258); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(259); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(177); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == '?') ADVANCE(183); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == '?') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_QMARK); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_QMARK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 187: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(267); + if (lookahead == '?') ADVANCE(249); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(268); - if (lookahead == '?') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 189: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(262); + if (lookahead == '|') ADVANCE(261); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(263); - if (lookahead == '|') ADVANCE(262); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(250); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(256); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(257); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(258); - END_STATE(); - case 197: ACCEPT_TOKEN(sym_intLiteralExpr); - if (lookahead == '.') ADVANCE(148); - if (lookahead == 'b') ADVANCE(146); - if (lookahead == 'o') ADVANCE(147); - if (lookahead == 'x') ADVANCE(150); + if (lookahead == '.') ADVANCE(147); + if (lookahead == 'b') ADVANCE(145); + if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'x') ADVANCE(149); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(145); + lookahead == 'e') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(198); + lookahead == '_') ADVANCE(197); END_STATE(); - case 198: + case 197: ACCEPT_TOKEN(sym_intLiteralExpr); - if (lookahead == '.') ADVANCE(148); + if (lookahead == '.') ADVANCE(147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(145); + lookahead == 'e') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(198); + lookahead == '_') ADVANCE(197); END_STATE(); - case 199: + case 198: ACCEPT_TOKEN(sym_intLiteralExpr); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(199); + lookahead == '_') ADVANCE(198); END_STATE(); - case 200: + case 199: ACCEPT_TOKEN(sym_intLiteralExpr); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(200); + lookahead == '_') ADVANCE(199); END_STATE(); - case 201: + case 200: ACCEPT_TOKEN(sym_intLiteralExpr); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(200); END_STATE(); - case 202: + case 201: ACCEPT_TOKEN(sym_floatLiteralExpr); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(145); + lookahead == 'e') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(202); + lookahead == '_') ADVANCE(201); END_STATE(); - case 203: + case 202: ACCEPT_TOKEN(sym_floatLiteralExpr); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(203); + lookahead == '_') ADVANCE(202); END_STATE(); - case 204: + case 203: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 205: + case 204: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead == '"') ADVANCE(10); END_STATE(); - case 206: + case 205: ACCEPT_TOKEN(anon_sym_POUND_DQUOTE); END_STATE(); - case 207: + case 206: ACCEPT_TOKEN(anon_sym_POUND_DQUOTE); if (lookahead == '"') ADVANCE(12); END_STATE(); - case 208: + case 207: ACCEPT_TOKEN(anon_sym_DQUOTE_POUND); END_STATE(); - case 209: + case 208: ACCEPT_TOKEN(anon_sym_POUND_POUND_DQUOTE); if (lookahead == '"') ADVANCE(14); END_STATE(); - case 210: + case 209: ACCEPT_TOKEN(anon_sym_DQUOTE_POUND_POUND); END_STATE(); - case 211: + case 210: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_DQUOTE); if (lookahead == '"') ADVANCE(16); END_STATE(); - case 212: + case 211: ACCEPT_TOKEN(anon_sym_DQUOTE_POUND_POUND_POUND); END_STATE(); - case 213: + case 212: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_POUND_DQUOTE); if (lookahead == '"') ADVANCE(18); END_STATE(); - case 214: + case 213: ACCEPT_TOKEN(anon_sym_DQUOTE_POUND_POUND_POUND_POUND); END_STATE(); - case 215: + case 214: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE); if (lookahead == '"') ADVANCE(20); END_STATE(); - case 216: + case 215: ACCEPT_TOKEN(anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND); END_STATE(); - case 217: + case 216: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE); if (lookahead == '"') ADVANCE(21); END_STATE(); - case 218: + case 217: ACCEPT_TOKEN(anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND); END_STATE(); - case 219: + case 218: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND); END_STATE(); - case 222: + case 221: ACCEPT_TOKEN(anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 223: + case 222: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND); END_STATE(); - case 224: + case 223: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 225: + case 224: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND); END_STATE(); - case 226: + case 225: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 227: + case 226: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND); END_STATE(); - case 230: + case 229: ACCEPT_TOKEN(anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 231: + case 230: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND); END_STATE(); - case 232: + case 231: ACCEPT_TOKEN(sym_escapeSequence); END_STATE(); - case 233: + case 232: ACCEPT_TOKEN(sym_escapeSequence1); END_STATE(); - case 234: + case 233: ACCEPT_TOKEN(sym_escapeSequence2); END_STATE(); - case 235: + case 234: ACCEPT_TOKEN(sym_escapeSequence3); END_STATE(); - case 236: + case 235: ACCEPT_TOKEN(sym_escapeSequence4); END_STATE(); - case 237: + case 236: ACCEPT_TOKEN(sym_escapeSequence5); END_STATE(); - case 238: + case 237: ACCEPT_TOKEN(sym_escapeSequence6); END_STATE(); - case 239: + case 238: ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); END_STATE(); - case 240: + case 239: ACCEPT_TOKEN(anon_sym_BSLASH_POUND_LPAREN); END_STATE(); - case 241: + case 240: ACCEPT_TOKEN(anon_sym_BSLASH_POUND_POUND_LPAREN); END_STATE(); - case 242: + case 241: ACCEPT_TOKEN(anon_sym_BSLASH_POUND_POUND_POUND_LPAREN); END_STATE(); - case 243: + case 242: ACCEPT_TOKEN(anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN); END_STATE(); - case 244: + case 243: ACCEPT_TOKEN(anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN); END_STATE(); - case 245: + case 244: ACCEPT_TOKEN(anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN); END_STATE(); - case 246: + case 245: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '>') ADVANCE(184); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 247: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '!') ADVANCE(248); + if (lookahead == '=') ADVANCE(259); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(249); - if (lookahead == '=') ADVANCE(260); + ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_BANG_BANG); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '/') ADVANCE(108); END_STATE(); case 252: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '/') ADVANCE(110); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '/') ADVANCE(109); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '/') ADVANCE(111); + ACCEPT_TOKEN(anon_sym_TILDE_SLASH); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_TILDE_SLASH); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_PIPE_GT); + ACCEPT_TOKEN(anon_sym_read_QMARK); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_read_QMARK); + ACCEPT_TOKEN(anon_sym_read_STAR); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_read_STAR); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 266: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + ACCEPT_TOKEN(sym_identifier); END_STATE(); case 269: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '?') ADVANCE(263); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(265); - if (lookahead == '?') ADVANCE(264); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == '*') ADVANCE(169); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(170); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'a') ADVANCE(272); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(273); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'd') ADVANCE(269); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(270); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'e') ADVANCE(271); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(272); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'm') ADVANCE(276); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(277); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'o') ADVANCE(277); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(278); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'p') ADVANCE(275); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(276); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 'r') ADVANCE(278); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(279); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if (lookahead == 't') ADVANCE(270); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(271); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); + if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(279); END_STATE(); case 280: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 12, lookahead))) ADVANCE(280); - END_STATE(); - case 281: ACCEPT_TOKEN(aux_sym_lineComment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(281); + lookahead != '\n') ADVANCE(280); END_STATE(); - case 282: + case 281: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_DOLLAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(281); + lookahead != '\n') ADVANCE(280); END_STATE(); - case 283: + case 282: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_DOLLAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(169); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 284: + case 283: ACCEPT_TOKEN(aux_sym_docComment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(284); + lookahead != '\n') ADVANCE(283); END_STATE(); - case 285: + case 284: ACCEPT_TOKEN(sym_blockComment); END_STATE(); default: @@ -5022,30 +5064,30 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 0, .reserved_word_set_id = 1}, - [2] = {.lex_state = 159, .reserved_word_set_id = 1}, - [3] = {.lex_state = 159, .reserved_word_set_id = 2}, - [4] = {.lex_state = 159, .reserved_word_set_id = 2}, - [5] = {.lex_state = 159, .reserved_word_set_id = 2}, - [6] = {.lex_state = 159, .reserved_word_set_id = 3}, - [7] = {.lex_state = 159, .reserved_word_set_id = 1}, - [8] = {.lex_state = 159, .reserved_word_set_id = 1}, - [9] = {.lex_state = 159, .reserved_word_set_id = 3}, - [10] = {.lex_state = 159, .reserved_word_set_id = 3}, - [11] = {.lex_state = 159, .reserved_word_set_id = 3}, - [12] = {.lex_state = 159, .reserved_word_set_id = 3}, - [13] = {.lex_state = 159, .reserved_word_set_id = 3}, - [14] = {.lex_state = 159, .reserved_word_set_id = 3}, - [15] = {.lex_state = 159, .reserved_word_set_id = 3}, - [16] = {.lex_state = 159, .reserved_word_set_id = 3}, - [17] = {.lex_state = 159, .reserved_word_set_id = 1}, - [18] = {.lex_state = 159, .reserved_word_set_id = 1}, + [2] = {.lex_state = 158, .reserved_word_set_id = 2}, + [3] = {.lex_state = 158, .reserved_word_set_id = 1}, + [4] = {.lex_state = 158, .reserved_word_set_id = 2}, + [5] = {.lex_state = 158, .reserved_word_set_id = 2}, + [6] = {.lex_state = 158, .reserved_word_set_id = 1}, + [7] = {.lex_state = 158, .reserved_word_set_id = 3}, + [8] = {.lex_state = 158, .reserved_word_set_id = 3}, + [9] = {.lex_state = 158, .reserved_word_set_id = 3}, + [10] = {.lex_state = 158, .reserved_word_set_id = 3}, + [11] = {.lex_state = 158, .reserved_word_set_id = 3}, + [12] = {.lex_state = 158, .reserved_word_set_id = 3}, + [13] = {.lex_state = 158, .reserved_word_set_id = 3}, + [14] = {.lex_state = 158, .reserved_word_set_id = 3}, + [15] = {.lex_state = 158, .reserved_word_set_id = 1}, + [16] = {.lex_state = 158, .reserved_word_set_id = 1}, + [17] = {.lex_state = 158, .reserved_word_set_id = 1}, + [18] = {.lex_state = 158, .reserved_word_set_id = 3}, [19] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 1}, - [20] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 1}, + [20] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [21] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [22] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [23] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [24] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, - [25] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, + [25] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 1}, [26] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [27] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [28] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, @@ -5066,11 +5108,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [44] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [45] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, - [46] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, + [46] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [47] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [48] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, - [49] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, - [50] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, + [49] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, + [50] = {.lex_state = 1, .external_lex_state = 2, .reserved_word_set_id = 4}, [51] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, [52] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, [53] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, @@ -5109,161 +5151,161 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [86] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, [87] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, [88] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, - [89] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, - [90] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, - [91] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, - [92] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, + [89] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, + [90] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, + [91] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, + [92] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 4}, [93] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, [94] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, - [95] = {.lex_state = 159, .reserved_word_set_id = 5}, + [95] = {.lex_state = 158, .reserved_word_set_id = 1}, [96] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, - [97] = {.lex_state = 159, .reserved_word_set_id = 5}, + [97] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, [98] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, - [99] = {.lex_state = 159, .reserved_word_set_id = 1}, - [100] = {.lex_state = 159, .reserved_word_set_id = 6}, - [101] = {.lex_state = 159, .reserved_word_set_id = 1}, - [102] = {.lex_state = 159, .reserved_word_set_id = 6}, - [103] = {.lex_state = 159, .reserved_word_set_id = 6}, - [104] = {.lex_state = 159, .reserved_word_set_id = 1}, - [105] = {.lex_state = 159, .reserved_word_set_id = 1}, - [106] = {.lex_state = 159, .reserved_word_set_id = 1}, - [107] = {.lex_state = 159, .reserved_word_set_id = 1}, - [108] = {.lex_state = 159, .reserved_word_set_id = 1}, - [109] = {.lex_state = 159, .reserved_word_set_id = 6}, - [110] = {.lex_state = 159, .reserved_word_set_id = 1}, - [111] = {.lex_state = 159, .reserved_word_set_id = 6}, - [112] = {.lex_state = 159, .reserved_word_set_id = 6}, - [113] = {.lex_state = 159, .reserved_word_set_id = 6}, - [114] = {.lex_state = 159, .reserved_word_set_id = 6}, - [115] = {.lex_state = 159, .reserved_word_set_id = 6}, - [116] = {.lex_state = 159, .reserved_word_set_id = 1}, - [117] = {.lex_state = 159, .reserved_word_set_id = 6}, - [118] = {.lex_state = 159, .reserved_word_set_id = 6}, - [119] = {.lex_state = 159, .reserved_word_set_id = 6}, - [120] = {.lex_state = 159, .reserved_word_set_id = 6}, - [121] = {.lex_state = 159, .reserved_word_set_id = 6}, - [122] = {.lex_state = 159, .reserved_word_set_id = 6}, - [123] = {.lex_state = 159, .reserved_word_set_id = 6}, - [124] = {.lex_state = 159, .reserved_word_set_id = 6}, - [125] = {.lex_state = 159, .reserved_word_set_id = 6}, - [126] = {.lex_state = 159, .reserved_word_set_id = 6}, - [127] = {.lex_state = 159, .reserved_word_set_id = 6}, - [128] = {.lex_state = 159, .reserved_word_set_id = 6}, - [129] = {.lex_state = 159, .reserved_word_set_id = 6}, - [130] = {.lex_state = 159, .reserved_word_set_id = 6}, - [131] = {.lex_state = 159, .reserved_word_set_id = 6}, - [132] = {.lex_state = 159, .reserved_word_set_id = 1}, - [133] = {.lex_state = 159, .reserved_word_set_id = 6}, - [134] = {.lex_state = 159, .reserved_word_set_id = 6}, - [135] = {.lex_state = 159, .reserved_word_set_id = 6}, - [136] = {.lex_state = 159, .reserved_word_set_id = 6}, - [137] = {.lex_state = 159, .reserved_word_set_id = 6}, - [138] = {.lex_state = 159, .reserved_word_set_id = 6}, - [139] = {.lex_state = 159, .reserved_word_set_id = 6}, - [140] = {.lex_state = 159, .reserved_word_set_id = 6}, - [141] = {.lex_state = 159, .reserved_word_set_id = 6}, - [142] = {.lex_state = 159, .reserved_word_set_id = 6}, - [143] = {.lex_state = 159, .reserved_word_set_id = 1}, - [144] = {.lex_state = 159, .reserved_word_set_id = 1}, - [145] = {.lex_state = 159, .reserved_word_set_id = 6}, - [146] = {.lex_state = 159, .reserved_word_set_id = 1}, - [147] = {.lex_state = 159, .reserved_word_set_id = 1}, - [148] = {.lex_state = 159, .reserved_word_set_id = 1}, - [149] = {.lex_state = 159, .reserved_word_set_id = 6}, - [150] = {.lex_state = 159, .reserved_word_set_id = 6}, - [151] = {.lex_state = 159, .reserved_word_set_id = 1}, - [152] = {.lex_state = 159, .reserved_word_set_id = 1}, - [153] = {.lex_state = 159, .reserved_word_set_id = 1}, - [154] = {.lex_state = 159, .reserved_word_set_id = 1}, - [155] = {.lex_state = 159, .reserved_word_set_id = 1}, - [156] = {.lex_state = 159, .reserved_word_set_id = 1}, - [157] = {.lex_state = 159, .reserved_word_set_id = 1}, - [158] = {.lex_state = 159, .reserved_word_set_id = 1}, - [159] = {.lex_state = 159, .reserved_word_set_id = 1}, - [160] = {.lex_state = 159, .reserved_word_set_id = 6}, - [161] = {.lex_state = 159, .reserved_word_set_id = 1}, - [162] = {.lex_state = 159, .reserved_word_set_id = 1}, - [163] = {.lex_state = 159, .reserved_word_set_id = 1}, - [164] = {.lex_state = 159, .reserved_word_set_id = 1}, - [165] = {.lex_state = 159, .reserved_word_set_id = 1}, - [166] = {.lex_state = 159, .reserved_word_set_id = 1}, - [167] = {.lex_state = 159, .reserved_word_set_id = 1}, - [168] = {.lex_state = 159, .reserved_word_set_id = 6}, - [169] = {.lex_state = 159, .reserved_word_set_id = 6}, - [170] = {.lex_state = 159, .reserved_word_set_id = 1}, - [171] = {.lex_state = 159, .reserved_word_set_id = 1}, - [172] = {.lex_state = 159, .reserved_word_set_id = 6}, - [173] = {.lex_state = 159, .reserved_word_set_id = 6}, - [174] = {.lex_state = 159, .reserved_word_set_id = 6}, - [175] = {.lex_state = 159, .reserved_word_set_id = 6}, - [176] = {.lex_state = 159, .reserved_word_set_id = 6}, - [177] = {.lex_state = 159, .reserved_word_set_id = 6}, - [178] = {.lex_state = 159, .reserved_word_set_id = 1}, - [179] = {.lex_state = 159, .reserved_word_set_id = 1}, - [180] = {.lex_state = 159, .reserved_word_set_id = 1}, - [181] = {.lex_state = 159, .reserved_word_set_id = 1}, - [182] = {.lex_state = 159, .reserved_word_set_id = 1}, - [183] = {.lex_state = 159, .reserved_word_set_id = 1}, - [184] = {.lex_state = 159, .reserved_word_set_id = 1}, - [185] = {.lex_state = 159, .reserved_word_set_id = 1}, - [186] = {.lex_state = 159, .reserved_word_set_id = 1}, - [187] = {.lex_state = 159, .reserved_word_set_id = 1}, - [188] = {.lex_state = 159, .reserved_word_set_id = 6}, - [189] = {.lex_state = 159, .reserved_word_set_id = 6}, - [190] = {.lex_state = 159, .reserved_word_set_id = 6}, - [191] = {.lex_state = 159, .reserved_word_set_id = 6}, - [192] = {.lex_state = 159, .reserved_word_set_id = 6}, - [193] = {.lex_state = 159, .reserved_word_set_id = 6}, - [194] = {.lex_state = 159, .reserved_word_set_id = 6}, - [195] = {.lex_state = 159, .reserved_word_set_id = 6}, - [196] = {.lex_state = 159, .reserved_word_set_id = 6}, - [197] = {.lex_state = 159, .reserved_word_set_id = 1}, - [198] = {.lex_state = 159, .reserved_word_set_id = 1}, - [199] = {.lex_state = 159, .reserved_word_set_id = 1}, - [200] = {.lex_state = 159, .reserved_word_set_id = 1}, - [201] = {.lex_state = 159, .reserved_word_set_id = 1}, - [202] = {.lex_state = 159, .reserved_word_set_id = 6}, - [203] = {.lex_state = 159, .reserved_word_set_id = 1}, - [204] = {.lex_state = 159, .reserved_word_set_id = 1}, - [205] = {.lex_state = 159, .reserved_word_set_id = 1}, - [206] = {.lex_state = 159, .reserved_word_set_id = 6}, - [207] = {.lex_state = 159, .reserved_word_set_id = 1}, - [208] = {.lex_state = 159, .reserved_word_set_id = 7}, - [209] = {.lex_state = 159, .reserved_word_set_id = 7}, - [210] = {.lex_state = 159, .reserved_word_set_id = 7}, - [211] = {.lex_state = 159, .reserved_word_set_id = 8}, - [212] = {.lex_state = 159, .reserved_word_set_id = 8}, - [213] = {.lex_state = 159, .reserved_word_set_id = 1}, - [214] = {.lex_state = 159, .reserved_word_set_id = 1}, - [215] = {.lex_state = 159, .reserved_word_set_id = 1}, - [216] = {.lex_state = 159, .reserved_word_set_id = 1}, - [217] = {.lex_state = 159, .reserved_word_set_id = 1}, - [218] = {.lex_state = 159, .reserved_word_set_id = 1}, - [219] = {.lex_state = 159, .reserved_word_set_id = 1}, - [220] = {.lex_state = 159, .reserved_word_set_id = 1}, - [221] = {.lex_state = 159, .reserved_word_set_id = 1}, - [222] = {.lex_state = 159, .reserved_word_set_id = 1}, - [223] = {.lex_state = 159, .reserved_word_set_id = 1}, - [224] = {.lex_state = 159, .reserved_word_set_id = 1}, - [225] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [226] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [227] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [228] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [229] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [230] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [231] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [232] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [233] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [234] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [235] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [236] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [237] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [238] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [239] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [240] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [241] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [242] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [243] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [99] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, + [100] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, + [101] = {.lex_state = 158, .reserved_word_set_id = 5}, + [102] = {.lex_state = 158, .reserved_word_set_id = 5}, + [103] = {.lex_state = 1, .external_lex_state = 3, .reserved_word_set_id = 1}, + [104] = {.lex_state = 158, .reserved_word_set_id = 6}, + [105] = {.lex_state = 158, .reserved_word_set_id = 6}, + [106] = {.lex_state = 158, .reserved_word_set_id = 6}, + [107] = {.lex_state = 158, .reserved_word_set_id = 6}, + [108] = {.lex_state = 158, .reserved_word_set_id = 6}, + [109] = {.lex_state = 158, .reserved_word_set_id = 6}, + [110] = {.lex_state = 158, .reserved_word_set_id = 6}, + [111] = {.lex_state = 158, .reserved_word_set_id = 6}, + [112] = {.lex_state = 158, .reserved_word_set_id = 1}, + [113] = {.lex_state = 158, .reserved_word_set_id = 1}, + [114] = {.lex_state = 158, .reserved_word_set_id = 1}, + [115] = {.lex_state = 158, .reserved_word_set_id = 6}, + [116] = {.lex_state = 158, .reserved_word_set_id = 1}, + [117] = {.lex_state = 158, .reserved_word_set_id = 1}, + [118] = {.lex_state = 158, .reserved_word_set_id = 6}, + [119] = {.lex_state = 158, .reserved_word_set_id = 6}, + [120] = {.lex_state = 158, .reserved_word_set_id = 6}, + [121] = {.lex_state = 158, .reserved_word_set_id = 6}, + [122] = {.lex_state = 158, .reserved_word_set_id = 1}, + [123] = {.lex_state = 158, .reserved_word_set_id = 6}, + [124] = {.lex_state = 158, .reserved_word_set_id = 6}, + [125] = {.lex_state = 158, .reserved_word_set_id = 6}, + [126] = {.lex_state = 158, .reserved_word_set_id = 1}, + [127] = {.lex_state = 158, .reserved_word_set_id = 1}, + [128] = {.lex_state = 158, .reserved_word_set_id = 1}, + [129] = {.lex_state = 158, .reserved_word_set_id = 6}, + [130] = {.lex_state = 158, .reserved_word_set_id = 6}, + [131] = {.lex_state = 158, .reserved_word_set_id = 6}, + [132] = {.lex_state = 158, .reserved_word_set_id = 1}, + [133] = {.lex_state = 158, .reserved_word_set_id = 1}, + [134] = {.lex_state = 158, .reserved_word_set_id = 6}, + [135] = {.lex_state = 158, .reserved_word_set_id = 1}, + [136] = {.lex_state = 158, .reserved_word_set_id = 1}, + [137] = {.lex_state = 158, .reserved_word_set_id = 1}, + [138] = {.lex_state = 158, .reserved_word_set_id = 1}, + [139] = {.lex_state = 158, .reserved_word_set_id = 1}, + [140] = {.lex_state = 158, .reserved_word_set_id = 1}, + [141] = {.lex_state = 158, .reserved_word_set_id = 6}, + [142] = {.lex_state = 158, .reserved_word_set_id = 6}, + [143] = {.lex_state = 158, .reserved_word_set_id = 1}, + [144] = {.lex_state = 158, .reserved_word_set_id = 1}, + [145] = {.lex_state = 158, .reserved_word_set_id = 1}, + [146] = {.lex_state = 158, .reserved_word_set_id = 6}, + [147] = {.lex_state = 158, .reserved_word_set_id = 6}, + [148] = {.lex_state = 158, .reserved_word_set_id = 6}, + [149] = {.lex_state = 158, .reserved_word_set_id = 6}, + [150] = {.lex_state = 158, .reserved_word_set_id = 6}, + [151] = {.lex_state = 158, .reserved_word_set_id = 6}, + [152] = {.lex_state = 158, .reserved_word_set_id = 6}, + [153] = {.lex_state = 158, .reserved_word_set_id = 6}, + [154] = {.lex_state = 158, .reserved_word_set_id = 6}, + [155] = {.lex_state = 158, .reserved_word_set_id = 6}, + [156] = {.lex_state = 158, .reserved_word_set_id = 6}, + [157] = {.lex_state = 158, .reserved_word_set_id = 6}, + [158] = {.lex_state = 158, .reserved_word_set_id = 6}, + [159] = {.lex_state = 158, .reserved_word_set_id = 6}, + [160] = {.lex_state = 158, .reserved_word_set_id = 6}, + [161] = {.lex_state = 158, .reserved_word_set_id = 6}, + [162] = {.lex_state = 158, .reserved_word_set_id = 6}, + [163] = {.lex_state = 158, .reserved_word_set_id = 6}, + [164] = {.lex_state = 158, .reserved_word_set_id = 1}, + [165] = {.lex_state = 158, .reserved_word_set_id = 1}, + [166] = {.lex_state = 158, .reserved_word_set_id = 1}, + [167] = {.lex_state = 158, .reserved_word_set_id = 1}, + [168] = {.lex_state = 158, .reserved_word_set_id = 6}, + [169] = {.lex_state = 158, .reserved_word_set_id = 6}, + [170] = {.lex_state = 158, .reserved_word_set_id = 6}, + [171] = {.lex_state = 158, .reserved_word_set_id = 6}, + [172] = {.lex_state = 158, .reserved_word_set_id = 6}, + [173] = {.lex_state = 158, .reserved_word_set_id = 6}, + [174] = {.lex_state = 158, .reserved_word_set_id = 6}, + [175] = {.lex_state = 158, .reserved_word_set_id = 1}, + [176] = {.lex_state = 158, .reserved_word_set_id = 1}, + [177] = {.lex_state = 158, .reserved_word_set_id = 6}, + [178] = {.lex_state = 158, .reserved_word_set_id = 6}, + [179] = {.lex_state = 158, .reserved_word_set_id = 6}, + [180] = {.lex_state = 158, .reserved_word_set_id = 6}, + [181] = {.lex_state = 158, .reserved_word_set_id = 1}, + [182] = {.lex_state = 158, .reserved_word_set_id = 1}, + [183] = {.lex_state = 158, .reserved_word_set_id = 1}, + [184] = {.lex_state = 158, .reserved_word_set_id = 1}, + [185] = {.lex_state = 158, .reserved_word_set_id = 1}, + [186] = {.lex_state = 158, .reserved_word_set_id = 1}, + [187] = {.lex_state = 158, .reserved_word_set_id = 1}, + [188] = {.lex_state = 158, .reserved_word_set_id = 1}, + [189] = {.lex_state = 158, .reserved_word_set_id = 1}, + [190] = {.lex_state = 158, .reserved_word_set_id = 1}, + [191] = {.lex_state = 158, .reserved_word_set_id = 6}, + [192] = {.lex_state = 158, .reserved_word_set_id = 6}, + [193] = {.lex_state = 158, .reserved_word_set_id = 1}, + [194] = {.lex_state = 158, .reserved_word_set_id = 1}, + [195] = {.lex_state = 158, .reserved_word_set_id = 6}, + [196] = {.lex_state = 158, .reserved_word_set_id = 1}, + [197] = {.lex_state = 158, .reserved_word_set_id = 6}, + [198] = {.lex_state = 158, .reserved_word_set_id = 6}, + [199] = {.lex_state = 158, .reserved_word_set_id = 6}, + [200] = {.lex_state = 158, .reserved_word_set_id = 6}, + [201] = {.lex_state = 158, .reserved_word_set_id = 6}, + [202] = {.lex_state = 158, .reserved_word_set_id = 1}, + [203] = {.lex_state = 158, .reserved_word_set_id = 1}, + [204] = {.lex_state = 158, .reserved_word_set_id = 1}, + [205] = {.lex_state = 158, .reserved_word_set_id = 1}, + [206] = {.lex_state = 158, .reserved_word_set_id = 1}, + [207] = {.lex_state = 158, .reserved_word_set_id = 1}, + [208] = {.lex_state = 158, .reserved_word_set_id = 1}, + [209] = {.lex_state = 158, .reserved_word_set_id = 6}, + [210] = {.lex_state = 158, .reserved_word_set_id = 6}, + [211] = {.lex_state = 158, .reserved_word_set_id = 6}, + [212] = {.lex_state = 158, .reserved_word_set_id = 6}, + [213] = {.lex_state = 158, .reserved_word_set_id = 6}, + [214] = {.lex_state = 158, .reserved_word_set_id = 6}, + [215] = {.lex_state = 158, .reserved_word_set_id = 6}, + [216] = {.lex_state = 158, .reserved_word_set_id = 1}, + [217] = {.lex_state = 158, .reserved_word_set_id = 1}, + [218] = {.lex_state = 158, .reserved_word_set_id = 1}, + [219] = {.lex_state = 158, .reserved_word_set_id = 1}, + [220] = {.lex_state = 158, .reserved_word_set_id = 1}, + [221] = {.lex_state = 158, .reserved_word_set_id = 6}, + [222] = {.lex_state = 158, .reserved_word_set_id = 1}, + [223] = {.lex_state = 158, .reserved_word_set_id = 1}, + [224] = {.lex_state = 158, .reserved_word_set_id = 1}, + [225] = {.lex_state = 158, .reserved_word_set_id = 1}, + [226] = {.lex_state = 158, .reserved_word_set_id = 7}, + [227] = {.lex_state = 158, .reserved_word_set_id = 7}, + [228] = {.lex_state = 158, .reserved_word_set_id = 7}, + [229] = {.lex_state = 158, .reserved_word_set_id = 8}, + [230] = {.lex_state = 158, .reserved_word_set_id = 8}, + [231] = {.lex_state = 158, .reserved_word_set_id = 1}, + [232] = {.lex_state = 158, .reserved_word_set_id = 1}, + [233] = {.lex_state = 158, .reserved_word_set_id = 1}, + [234] = {.lex_state = 158, .reserved_word_set_id = 1}, + [235] = {.lex_state = 158, .reserved_word_set_id = 1}, + [236] = {.lex_state = 158, .reserved_word_set_id = 1}, + [237] = {.lex_state = 158, .reserved_word_set_id = 1}, + [238] = {.lex_state = 158, .reserved_word_set_id = 1}, + [239] = {.lex_state = 158, .reserved_word_set_id = 1}, + [240] = {.lex_state = 158, .reserved_word_set_id = 1}, + [241] = {.lex_state = 158, .reserved_word_set_id = 1}, + [242] = {.lex_state = 158, .reserved_word_set_id = 1}, + [243] = {.lex_state = 158, .reserved_word_set_id = 1}, [244] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [245] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [246] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, @@ -5271,30 +5313,30 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [248] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [249] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [250] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [251] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [251] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [252] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, - [253] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [254] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [255] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [256] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [257] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [258] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [259] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [260] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [261] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [262] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [263] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [264] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [265] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [266] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [267] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [268] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [269] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [270] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [271] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [253] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [254] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [255] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [256] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [257] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [258] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [259] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [260] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [261] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [262] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [263] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [264] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [265] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [266] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [267] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [268] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [269] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [270] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [271] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [272] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [273] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [274] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [273] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, + [274] = {.lex_state = 0, .external_lex_state = 2, .reserved_word_set_id = 9}, [275] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, [276] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, [277] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, @@ -5321,646 +5363,711 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [298] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, [299] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, [300] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, - [301] = {.lex_state = 0, .reserved_word_set_id = 1}, - [302] = {.lex_state = 0, .reserved_word_set_id = 1}, - [303] = {.lex_state = 0, .reserved_word_set_id = 1}, - [304] = {.lex_state = 0, .reserved_word_set_id = 1}, - [305] = {.lex_state = 0, .reserved_word_set_id = 1}, - [306] = {.lex_state = 8, .external_lex_state = 2}, - [307] = {.lex_state = 8, .external_lex_state = 2}, - [308] = {.lex_state = 8, .external_lex_state = 2}, - [309] = {.lex_state = 8, .external_lex_state = 2}, - [310] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [311] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [312] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [313] = {.lex_state = 8, .external_lex_state = 2}, - [314] = {.lex_state = 8, .external_lex_state = 2}, - [315] = {.lex_state = 8, .external_lex_state = 2}, - [316] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [317] = {.lex_state = 8, .external_lex_state = 2}, - [318] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [319] = {.lex_state = 8, .external_lex_state = 2}, - [320] = {.lex_state = 8, .external_lex_state = 2}, - [321] = {.lex_state = 8, .external_lex_state = 2}, - [322] = {.lex_state = 8, .external_lex_state = 2}, - [323] = {.lex_state = 8, .external_lex_state = 2}, - [324] = {.lex_state = 8, .external_lex_state = 2}, - [325] = {.lex_state = 8, .external_lex_state = 2}, - [326] = {.lex_state = 8, .external_lex_state = 2}, - [327] = {.lex_state = 8, .external_lex_state = 2}, - [328] = {.lex_state = 8, .external_lex_state = 2}, - [329] = {.lex_state = 8, .external_lex_state = 2}, - [330] = {.lex_state = 8, .external_lex_state = 2}, - [331] = {.lex_state = 8, .external_lex_state = 2}, - [332] = {.lex_state = 8, .external_lex_state = 2}, - [333] = {.lex_state = 8, .external_lex_state = 2}, - [334] = {.lex_state = 8, .external_lex_state = 2}, - [335] = {.lex_state = 8, .external_lex_state = 2}, - [336] = {.lex_state = 0, .reserved_word_set_id = 1}, - [337] = {.lex_state = 8, .external_lex_state = 2}, - [338] = {.lex_state = 0, .reserved_word_set_id = 1}, - [339] = {.lex_state = 8, .external_lex_state = 3}, - [340] = {.lex_state = 8, .external_lex_state = 2}, - [341] = {.lex_state = 8, .external_lex_state = 2}, - [342] = {.lex_state = 0, .reserved_word_set_id = 1}, - [343] = {.lex_state = 8, .external_lex_state = 3}, - [344] = {.lex_state = 8, .external_lex_state = 3}, - [345] = {.lex_state = 8, .external_lex_state = 3}, - [346] = {.lex_state = 8, .external_lex_state = 3}, - [347] = {.lex_state = 8, .external_lex_state = 3}, - [348] = {.lex_state = 0, .reserved_word_set_id = 1}, - [349] = {.lex_state = 8, .external_lex_state = 3}, - [350] = {.lex_state = 8, .external_lex_state = 3}, - [351] = {.lex_state = 0, .reserved_word_set_id = 1}, - [352] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [353] = {.lex_state = 8, .external_lex_state = 3}, - [354] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [355] = {.lex_state = 8, .external_lex_state = 3}, - [356] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [357] = {.lex_state = 8, .external_lex_state = 3}, - [358] = {.lex_state = 8, .external_lex_state = 3}, - [359] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [360] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [361] = {.lex_state = 8, .external_lex_state = 3}, - [362] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [363] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [364] = {.lex_state = 8, .external_lex_state = 3}, - [365] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [366] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [367] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [368] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [369] = {.lex_state = 8, .external_lex_state = 3}, - [370] = {.lex_state = 8, .external_lex_state = 3}, - [371] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [372] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [373] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [374] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [375] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [376] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [377] = {.lex_state = 8, .external_lex_state = 3}, - [378] = {.lex_state = 8, .external_lex_state = 3}, - [379] = {.lex_state = 8, .external_lex_state = 3}, - [380] = {.lex_state = 8, .external_lex_state = 3}, - [381] = {.lex_state = 8, .external_lex_state = 3}, - [382] = {.lex_state = 8, .external_lex_state = 3}, - [383] = {.lex_state = 8, .external_lex_state = 3}, - [384] = {.lex_state = 8, .external_lex_state = 3}, - [385] = {.lex_state = 8, .external_lex_state = 3}, - [386] = {.lex_state = 8, .external_lex_state = 3}, - [387] = {.lex_state = 8, .external_lex_state = 3}, - [388] = {.lex_state = 8, .external_lex_state = 3}, - [389] = {.lex_state = 8, .external_lex_state = 3}, - [390] = {.lex_state = 8, .external_lex_state = 3}, - [391] = {.lex_state = 8, .external_lex_state = 3}, - [392] = {.lex_state = 8, .external_lex_state = 3}, - [393] = {.lex_state = 8, .external_lex_state = 3}, - [394] = {.lex_state = 8, .external_lex_state = 3}, - [395] = {.lex_state = 8, .external_lex_state = 3}, - [396] = {.lex_state = 8, .external_lex_state = 3}, - [397] = {.lex_state = 8, .external_lex_state = 3}, - [398] = {.lex_state = 8, .external_lex_state = 3}, - [399] = {.lex_state = 8, .external_lex_state = 3}, - [400] = {.lex_state = 8, .external_lex_state = 3}, - [401] = {.lex_state = 8, .external_lex_state = 3}, - [402] = {.lex_state = 8, .external_lex_state = 3}, - [403] = {.lex_state = 8, .external_lex_state = 3}, - [404] = {.lex_state = 8, .external_lex_state = 3}, - [405] = {.lex_state = 8, .external_lex_state = 3}, - [406] = {.lex_state = 8, .external_lex_state = 3}, - [407] = {.lex_state = 8, .external_lex_state = 3}, - [408] = {.lex_state = 8, .external_lex_state = 3}, - [409] = {.lex_state = 8, .external_lex_state = 3}, - [410] = {.lex_state = 8, .external_lex_state = 3}, - [411] = {.lex_state = 8, .external_lex_state = 3}, - [412] = {.lex_state = 8, .external_lex_state = 3}, - [413] = {.lex_state = 8, .external_lex_state = 3}, + [301] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [302] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [303] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [304] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [305] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [306] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [307] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [308] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [309] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [310] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [311] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [312] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [313] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [314] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [315] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [316] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [317] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [318] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [319] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [320] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [321] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [322] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [323] = {.lex_state = 0, .external_lex_state = 3, .reserved_word_set_id = 9}, + [324] = {.lex_state = 0, .reserved_word_set_id = 1}, + [325] = {.lex_state = 0, .reserved_word_set_id = 1}, + [326] = {.lex_state = 0, .reserved_word_set_id = 1}, + [327] = {.lex_state = 0, .reserved_word_set_id = 1}, + [328] = {.lex_state = 0, .reserved_word_set_id = 1}, + [329] = {.lex_state = 6, .external_lex_state = 2}, + [330] = {.lex_state = 6, .external_lex_state = 2}, + [331] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [332] = {.lex_state = 6, .external_lex_state = 2}, + [333] = {.lex_state = 6, .external_lex_state = 2}, + [334] = {.lex_state = 6, .external_lex_state = 2}, + [335] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [336] = {.lex_state = 6, .external_lex_state = 2}, + [337] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [338] = {.lex_state = 6, .external_lex_state = 2}, + [339] = {.lex_state = 6, .external_lex_state = 2}, + [340] = {.lex_state = 6, .external_lex_state = 2}, + [341] = {.lex_state = 6, .external_lex_state = 2}, + [342] = {.lex_state = 6, .external_lex_state = 2}, + [343] = {.lex_state = 6, .external_lex_state = 2}, + [344] = {.lex_state = 6, .external_lex_state = 2}, + [345] = {.lex_state = 6, .external_lex_state = 2}, + [346] = {.lex_state = 6, .external_lex_state = 2}, + [347] = {.lex_state = 6, .external_lex_state = 2}, + [348] = {.lex_state = 6, .external_lex_state = 2}, + [349] = {.lex_state = 6, .external_lex_state = 2}, + [350] = {.lex_state = 6, .external_lex_state = 2}, + [351] = {.lex_state = 6, .external_lex_state = 2}, + [352] = {.lex_state = 6, .external_lex_state = 2}, + [353] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [354] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [355] = {.lex_state = 6, .external_lex_state = 2}, + [356] = {.lex_state = 6, .external_lex_state = 2}, + [357] = {.lex_state = 6, .external_lex_state = 2}, + [358] = {.lex_state = 6, .external_lex_state = 2}, + [359] = {.lex_state = 6, .external_lex_state = 2}, + [360] = {.lex_state = 6, .external_lex_state = 2}, + [361] = {.lex_state = 6, .external_lex_state = 2}, + [362] = {.lex_state = 0, .reserved_word_set_id = 1}, + [363] = {.lex_state = 6, .external_lex_state = 3}, + [364] = {.lex_state = 6, .external_lex_state = 3}, + [365] = {.lex_state = 0, .reserved_word_set_id = 1}, + [366] = {.lex_state = 6, .external_lex_state = 3}, + [367] = {.lex_state = 6, .external_lex_state = 3}, + [368] = {.lex_state = 6, .external_lex_state = 3}, + [369] = {.lex_state = 0, .reserved_word_set_id = 1}, + [370] = {.lex_state = 0, .reserved_word_set_id = 1}, + [371] = {.lex_state = 6, .external_lex_state = 3}, + [372] = {.lex_state = 0, .reserved_word_set_id = 1}, + [373] = {.lex_state = 6, .external_lex_state = 2}, + [374] = {.lex_state = 6, .external_lex_state = 3}, + [375] = {.lex_state = 6, .external_lex_state = 3}, + [376] = {.lex_state = 6, .external_lex_state = 2}, + [377] = {.lex_state = 6, .external_lex_state = 2}, + [378] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [379] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [380] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [381] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [382] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [383] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [384] = {.lex_state = 6, .external_lex_state = 3}, + [385] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [386] = {.lex_state = 6, .external_lex_state = 3}, + [387] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [388] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [389] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [390] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [391] = {.lex_state = 6, .external_lex_state = 3}, + [392] = {.lex_state = 6, .external_lex_state = 3}, + [393] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [394] = {.lex_state = 6, .external_lex_state = 3}, + [395] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [396] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [397] = {.lex_state = 6, .external_lex_state = 3}, + [398] = {.lex_state = 6, .external_lex_state = 3}, + [399] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [400] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [401] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [402] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [403] = {.lex_state = 6, .external_lex_state = 3}, + [404] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [405] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [406] = {.lex_state = 6, .external_lex_state = 3}, + [407] = {.lex_state = 6, .external_lex_state = 3}, + [408] = {.lex_state = 6, .external_lex_state = 3}, + [409] = {.lex_state = 6, .external_lex_state = 3}, + [410] = {.lex_state = 6, .external_lex_state = 3}, + [411] = {.lex_state = 6, .external_lex_state = 3}, + [412] = {.lex_state = 6, .external_lex_state = 3}, + [413] = {.lex_state = 6, .external_lex_state = 3}, [414] = {.lex_state = 6, .external_lex_state = 3}, - [415] = {.lex_state = 8, .external_lex_state = 3}, - [416] = {.lex_state = 8, .external_lex_state = 3}, - [417] = {.lex_state = 8, .external_lex_state = 3}, - [418] = {.lex_state = 8, .external_lex_state = 3}, - [419] = {.lex_state = 8, .external_lex_state = 3}, - [420] = {.lex_state = 8, .external_lex_state = 3}, - [421] = {.lex_state = 8, .external_lex_state = 3}, - [422] = {.lex_state = 8, .external_lex_state = 3}, - [423] = {.lex_state = 8, .external_lex_state = 3}, - [424] = {.lex_state = 8, .external_lex_state = 3}, - [425] = {.lex_state = 8, .external_lex_state = 3}, - [426] = {.lex_state = 8, .external_lex_state = 3}, - [427] = {.lex_state = 8, .external_lex_state = 3}, - [428] = {.lex_state = 8, .external_lex_state = 3}, - [429] = {.lex_state = 6, .external_lex_state = 3}, - [430] = {.lex_state = 6, .external_lex_state = 3}, - [431] = {.lex_state = 8, .external_lex_state = 3}, - [432] = {.lex_state = 8, .external_lex_state = 3}, - [433] = {.lex_state = 8, .external_lex_state = 3}, - [434] = {.lex_state = 8, .external_lex_state = 3}, - [435] = {.lex_state = 8, .external_lex_state = 3}, - [436] = {.lex_state = 8, .external_lex_state = 3}, - [437] = {.lex_state = 8, .external_lex_state = 3}, + [415] = {.lex_state = 6, .external_lex_state = 3}, + [416] = {.lex_state = 6, .external_lex_state = 3}, + [417] = {.lex_state = 6, .external_lex_state = 3}, + [418] = {.lex_state = 6, .external_lex_state = 3}, + [419] = {.lex_state = 6, .external_lex_state = 3}, + [420] = {.lex_state = 6, .external_lex_state = 3}, + [421] = {.lex_state = 6, .external_lex_state = 3}, + [422] = {.lex_state = 6, .external_lex_state = 3}, + [423] = {.lex_state = 6, .external_lex_state = 3}, + [424] = {.lex_state = 6, .external_lex_state = 3}, + [425] = {.lex_state = 6, .external_lex_state = 3}, + [426] = {.lex_state = 6, .external_lex_state = 3}, + [427] = {.lex_state = 6, .external_lex_state = 3}, + [428] = {.lex_state = 6, .external_lex_state = 3}, + [429] = {.lex_state = 8, .external_lex_state = 3}, + [430] = {.lex_state = 8, .external_lex_state = 3}, + [431] = {.lex_state = 6, .external_lex_state = 3}, + [432] = {.lex_state = 6, .external_lex_state = 3}, + [433] = {.lex_state = 6, .external_lex_state = 3}, + [434] = {.lex_state = 6, .external_lex_state = 3}, + [435] = {.lex_state = 6, .external_lex_state = 3}, + [436] = {.lex_state = 6, .external_lex_state = 3}, + [437] = {.lex_state = 6, .external_lex_state = 3}, [438] = {.lex_state = 6, .external_lex_state = 3}, [439] = {.lex_state = 6, .external_lex_state = 3}, - [440] = {.lex_state = 8, .external_lex_state = 3}, + [440] = {.lex_state = 6, .external_lex_state = 3}, [441] = {.lex_state = 8, .external_lex_state = 3}, - [442] = {.lex_state = 6, .external_lex_state = 3}, - [443] = {.lex_state = 6, .external_lex_state = 3}, - [444] = {.lex_state = 8, .external_lex_state = 3}, - [445] = {.lex_state = 8, .external_lex_state = 3}, - [446] = {.lex_state = 8, .external_lex_state = 3}, - [447] = {.lex_state = 8, .external_lex_state = 3}, - [448] = {.lex_state = 8, .external_lex_state = 3}, - [449] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 10}, - [450] = {.lex_state = 8, .external_lex_state = 3}, - [451] = {.lex_state = 8, .external_lex_state = 3}, - [452] = {.lex_state = 8, .external_lex_state = 3}, - [453] = {.lex_state = 8, .external_lex_state = 3}, + [442] = {.lex_state = 8, .external_lex_state = 3}, + [443] = {.lex_state = 8, .external_lex_state = 3}, + [444] = {.lex_state = 6, .external_lex_state = 3}, + [445] = {.lex_state = 6, .external_lex_state = 3}, + [446] = {.lex_state = 6, .external_lex_state = 3}, + [447] = {.lex_state = 6, .external_lex_state = 3}, + [448] = {.lex_state = 6, .external_lex_state = 3}, + [449] = {.lex_state = 6, .external_lex_state = 3}, + [450] = {.lex_state = 6, .external_lex_state = 3}, + [451] = {.lex_state = 6, .external_lex_state = 3}, + [452] = {.lex_state = 6, .external_lex_state = 3}, + [453] = {.lex_state = 6, .external_lex_state = 3}, [454] = {.lex_state = 8, .external_lex_state = 3}, - [455] = {.lex_state = 8, .external_lex_state = 3}, - [456] = {.lex_state = 8, .external_lex_state = 3}, - [457] = {.lex_state = 0, .reserved_word_set_id = 11}, - [458] = {.lex_state = 0, .reserved_word_set_id = 11}, - [459] = {.lex_state = 0, .reserved_word_set_id = 11}, - [460] = {.lex_state = 0, .reserved_word_set_id = 1}, - [461] = {.lex_state = 0, .reserved_word_set_id = 1}, - [462] = {.lex_state = 0, .reserved_word_set_id = 11}, - [463] = {.lex_state = 0, .reserved_word_set_id = 1}, - [464] = {.lex_state = 22, .reserved_word_set_id = 12}, - [465] = {.lex_state = 22, .reserved_word_set_id = 12}, - [466] = {.lex_state = 22, .reserved_word_set_id = 1}, - [467] = {.lex_state = 0, .reserved_word_set_id = 1}, - [468] = {.lex_state = 0, .reserved_word_set_id = 1}, - [469] = {.lex_state = 0, .reserved_word_set_id = 1}, - [470] = {.lex_state = 0, .reserved_word_set_id = 1}, - [471] = {.lex_state = 22, .reserved_word_set_id = 12}, - [472] = {.lex_state = 0, .reserved_word_set_id = 1}, - [473] = {.lex_state = 0, .reserved_word_set_id = 1}, - [474] = {.lex_state = 22, .reserved_word_set_id = 12}, - [475] = {.lex_state = 22, .reserved_word_set_id = 12}, - [476] = {.lex_state = 22, .reserved_word_set_id = 1}, - [477] = {.lex_state = 0, .reserved_word_set_id = 1}, - [478] = {.lex_state = 22, .reserved_word_set_id = 12}, - [479] = {.lex_state = 22, .reserved_word_set_id = 12}, - [480] = {.lex_state = 0, .reserved_word_set_id = 1}, - [481] = {.lex_state = 22, .reserved_word_set_id = 12}, - [482] = {.lex_state = 22, .reserved_word_set_id = 12}, - [483] = {.lex_state = 0, .reserved_word_set_id = 13}, - [484] = {.lex_state = 22, .reserved_word_set_id = 12}, - [485] = {.lex_state = 22, .reserved_word_set_id = 1}, - [486] = {.lex_state = 22, .reserved_word_set_id = 1}, - [487] = {.lex_state = 22, .reserved_word_set_id = 12}, - [488] = {.lex_state = 22, .reserved_word_set_id = 12}, - [489] = {.lex_state = 0, .reserved_word_set_id = 1}, - [490] = {.lex_state = 0, .reserved_word_set_id = 13}, - [491] = {.lex_state = 22, .reserved_word_set_id = 12}, - [492] = {.lex_state = 22, .reserved_word_set_id = 1}, - [493] = {.lex_state = 22, .reserved_word_set_id = 1}, - [494] = {.lex_state = 22, .reserved_word_set_id = 12}, - [495] = {.lex_state = 22, .reserved_word_set_id = 1}, + [455] = {.lex_state = 6, .external_lex_state = 3}, + [456] = {.lex_state = 6, .external_lex_state = 3}, + [457] = {.lex_state = 6, .external_lex_state = 3}, + [458] = {.lex_state = 6, .external_lex_state = 3}, + [459] = {.lex_state = 6, .external_lex_state = 3}, + [460] = {.lex_state = 8, .external_lex_state = 3}, + [461] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 10}, + [462] = {.lex_state = 6, .external_lex_state = 3}, + [463] = {.lex_state = 6, .external_lex_state = 3}, + [464] = {.lex_state = 6, .external_lex_state = 3}, + [465] = {.lex_state = 6, .external_lex_state = 3}, + [466] = {.lex_state = 6, .external_lex_state = 3}, + [467] = {.lex_state = 6, .external_lex_state = 3}, + [468] = {.lex_state = 6, .external_lex_state = 3}, + [469] = {.lex_state = 6, .external_lex_state = 3}, + [470] = {.lex_state = 6, .external_lex_state = 3}, + [471] = {.lex_state = 6, .external_lex_state = 3}, + [472] = {.lex_state = 6, .external_lex_state = 3}, + [473] = {.lex_state = 6, .external_lex_state = 3}, + [474] = {.lex_state = 6, .external_lex_state = 3}, + [475] = {.lex_state = 6, .external_lex_state = 3}, + [476] = {.lex_state = 6, .external_lex_state = 3}, + [477] = {.lex_state = 6, .external_lex_state = 3}, + [478] = {.lex_state = 6, .external_lex_state = 3}, + [479] = {.lex_state = 6, .external_lex_state = 3}, + [480] = {.lex_state = 6, .external_lex_state = 3}, + [481] = {.lex_state = 6, .external_lex_state = 3}, + [482] = {.lex_state = 6, .external_lex_state = 3}, + [483] = {.lex_state = 6, .external_lex_state = 3}, + [484] = {.lex_state = 6, .external_lex_state = 3}, + [485] = {.lex_state = 6, .external_lex_state = 3}, + [486] = {.lex_state = 6, .external_lex_state = 3}, + [487] = {.lex_state = 0, .reserved_word_set_id = 11}, + [488] = {.lex_state = 0, .reserved_word_set_id = 11}, + [489] = {.lex_state = 0, .reserved_word_set_id = 11}, + [490] = {.lex_state = 0, .reserved_word_set_id = 11}, + [491] = {.lex_state = 0, .reserved_word_set_id = 1}, + [492] = {.lex_state = 0, .reserved_word_set_id = 1}, + [493] = {.lex_state = 0, .reserved_word_set_id = 1}, + [494] = {.lex_state = 0, .reserved_word_set_id = 1}, + [495] = {.lex_state = 0, .reserved_word_set_id = 1}, [496] = {.lex_state = 22, .reserved_word_set_id = 12}, - [497] = {.lex_state = 22, .reserved_word_set_id = 12}, - [498] = {.lex_state = 22, .reserved_word_set_id = 12}, - [499] = {.lex_state = 22, .reserved_word_set_id = 1}, - [500] = {.lex_state = 0, .reserved_word_set_id = 1}, - [501] = {.lex_state = 0, .reserved_word_set_id = 1}, - [502] = {.lex_state = 22, .reserved_word_set_id = 12}, - [503] = {.lex_state = 22, .reserved_word_set_id = 1}, + [497] = {.lex_state = 0, .reserved_word_set_id = 1}, + [498] = {.lex_state = 22, .reserved_word_set_id = 1}, + [499] = {.lex_state = 22, .reserved_word_set_id = 12}, + [500] = {.lex_state = 22, .reserved_word_set_id = 1}, + [501] = {.lex_state = 22, .reserved_word_set_id = 1}, + [502] = {.lex_state = 0, .reserved_word_set_id = 1}, + [503] = {.lex_state = 0, .reserved_word_set_id = 1}, [504] = {.lex_state = 22, .reserved_word_set_id = 12}, - [505] = {.lex_state = 22, .reserved_word_set_id = 1}, - [506] = {.lex_state = 22, .reserved_word_set_id = 1}, - [507] = {.lex_state = 22, .reserved_word_set_id = 1}, - [508] = {.lex_state = 22, .reserved_word_set_id = 12}, - [509] = {.lex_state = 0, .reserved_word_set_id = 13}, + [505] = {.lex_state = 22, .reserved_word_set_id = 12}, + [506] = {.lex_state = 22, .reserved_word_set_id = 12}, + [507] = {.lex_state = 0, .reserved_word_set_id = 1}, + [508] = {.lex_state = 0, .reserved_word_set_id = 1}, + [509] = {.lex_state = 22, .reserved_word_set_id = 1}, [510] = {.lex_state = 22, .reserved_word_set_id = 1}, - [511] = {.lex_state = 0, .reserved_word_set_id = 1}, - [512] = {.lex_state = 22, .reserved_word_set_id = 1}, + [511] = {.lex_state = 22, .reserved_word_set_id = 12}, + [512] = {.lex_state = 22, .reserved_word_set_id = 12}, [513] = {.lex_state = 22, .reserved_word_set_id = 12}, - [514] = {.lex_state = 22, .reserved_word_set_id = 1}, + [514] = {.lex_state = 22, .reserved_word_set_id = 12}, [515] = {.lex_state = 22, .reserved_word_set_id = 12}, [516] = {.lex_state = 22, .reserved_word_set_id = 12}, - [517] = {.lex_state = 22, .reserved_word_set_id = 12}, + [517] = {.lex_state = 22, .reserved_word_set_id = 1}, [518] = {.lex_state = 22, .reserved_word_set_id = 12}, [519] = {.lex_state = 22, .reserved_word_set_id = 12}, - [520] = {.lex_state = 22, .reserved_word_set_id = 1}, + [520] = {.lex_state = 22, .reserved_word_set_id = 12}, [521] = {.lex_state = 22, .reserved_word_set_id = 12}, - [522] = {.lex_state = 0, .reserved_word_set_id = 13}, + [522] = {.lex_state = 22, .reserved_word_set_id = 12}, [523] = {.lex_state = 22, .reserved_word_set_id = 12}, - [524] = {.lex_state = 22, .reserved_word_set_id = 12}, - [525] = {.lex_state = 0, .reserved_word_set_id = 13}, - [526] = {.lex_state = 0, .reserved_word_set_id = 13}, - [527] = {.lex_state = 0, .reserved_word_set_id = 1}, - [528] = {.lex_state = 0, .reserved_word_set_id = 13}, - [529] = {.lex_state = 0, .reserved_word_set_id = 13}, - [530] = {.lex_state = 0, .reserved_word_set_id = 13}, - [531] = {.lex_state = 0, .reserved_word_set_id = 14}, - [532] = {.lex_state = 0, .reserved_word_set_id = 13}, - [533] = {.lex_state = 0, .reserved_word_set_id = 13}, - [534] = {.lex_state = 0, .reserved_word_set_id = 1}, - [535] = {.lex_state = 0, .reserved_word_set_id = 13}, - [536] = {.lex_state = 0, .reserved_word_set_id = 14}, - [537] = {.lex_state = 0, .reserved_word_set_id = 13}, - [538] = {.lex_state = 0, .reserved_word_set_id = 13}, - [539] = {.lex_state = 0, .reserved_word_set_id = 1}, - [540] = {.lex_state = 0, .reserved_word_set_id = 15}, - [541] = {.lex_state = 0, .reserved_word_set_id = 1}, + [524] = {.lex_state = 22, .reserved_word_set_id = 1}, + [525] = {.lex_state = 22, .reserved_word_set_id = 1}, + [526] = {.lex_state = 22, .reserved_word_set_id = 1}, + [527] = {.lex_state = 22, .reserved_word_set_id = 1}, + [528] = {.lex_state = 22, .reserved_word_set_id = 12}, + [529] = {.lex_state = 22, .reserved_word_set_id = 12}, + [530] = {.lex_state = 22, .reserved_word_set_id = 12}, + [531] = {.lex_state = 22, .reserved_word_set_id = 12}, + [532] = {.lex_state = 22, .reserved_word_set_id = 12}, + [533] = {.lex_state = 22, .reserved_word_set_id = 1}, + [534] = {.lex_state = 22, .reserved_word_set_id = 12}, + [535] = {.lex_state = 0, .reserved_word_set_id = 1}, + [536] = {.lex_state = 22, .reserved_word_set_id = 1}, + [537] = {.lex_state = 22, .reserved_word_set_id = 12}, + [538] = {.lex_state = 22, .reserved_word_set_id = 1}, + [539] = {.lex_state = 22, .reserved_word_set_id = 1}, + [540] = {.lex_state = 22, .reserved_word_set_id = 12}, + [541] = {.lex_state = 22, .reserved_word_set_id = 1}, [542] = {.lex_state = 0, .reserved_word_set_id = 1}, - [543] = {.lex_state = 0, .reserved_word_set_id = 1}, - [544] = {.lex_state = 0, .reserved_word_set_id = 13}, - [545] = {.lex_state = 0, .reserved_word_set_id = 15}, - [546] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 1}, + [543] = {.lex_state = 22, .reserved_word_set_id = 1}, + [544] = {.lex_state = 22, .reserved_word_set_id = 12}, + [545] = {.lex_state = 22, .reserved_word_set_id = 12}, + [546] = {.lex_state = 0, .reserved_word_set_id = 13}, [547] = {.lex_state = 0, .reserved_word_set_id = 1}, - [548] = {.lex_state = 0, .reserved_word_set_id = 16}, - [549] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 1}, - [550] = {.lex_state = 0, .reserved_word_set_id = 1}, - [551] = {.lex_state = 0, .reserved_word_set_id = 1}, - [552] = {.lex_state = 0, .reserved_word_set_id = 1}, + [548] = {.lex_state = 0, .reserved_word_set_id = 13}, + [549] = {.lex_state = 22, .reserved_word_set_id = 12}, + [550] = {.lex_state = 22, .reserved_word_set_id = 12}, + [551] = {.lex_state = 22, .reserved_word_set_id = 12}, + [552] = {.lex_state = 0, .reserved_word_set_id = 13}, [553] = {.lex_state = 0, .reserved_word_set_id = 1}, [554] = {.lex_state = 0, .reserved_word_set_id = 1}, - [555] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 1}, - [556] = {.lex_state = 0, .reserved_word_set_id = 16}, - [557] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 1}, - [558] = {.lex_state = 0, .reserved_word_set_id = 16}, - [559] = {.lex_state = 159, .external_lex_state = 4, .reserved_word_set_id = 1}, - [560] = {.lex_state = 0, .reserved_word_set_id = 16}, - [561] = {.lex_state = 0, .reserved_word_set_id = 16}, - [562] = {.lex_state = 0, .reserved_word_set_id = 1}, - [563] = {.lex_state = 0, .reserved_word_set_id = 1}, - [564] = {.lex_state = 0, .reserved_word_set_id = 1}, - [565] = {.lex_state = 0, .reserved_word_set_id = 1}, - [566] = {.lex_state = 0, .reserved_word_set_id = 1}, - [567] = {.lex_state = 0, .reserved_word_set_id = 13}, - [568] = {.lex_state = 0, .reserved_word_set_id = 1}, - [569] = {.lex_state = 0, .reserved_word_set_id = 1}, - [570] = {.lex_state = 0, .reserved_word_set_id = 1}, - [571] = {.lex_state = 0, .reserved_word_set_id = 13}, - [572] = {.lex_state = 0, .reserved_word_set_id = 1}, - [573] = {.lex_state = 0, .reserved_word_set_id = 1}, - [574] = {.lex_state = 0, .reserved_word_set_id = 1}, + [555] = {.lex_state = 22, .reserved_word_set_id = 1}, + [556] = {.lex_state = 22, .reserved_word_set_id = 1}, + [557] = {.lex_state = 22, .reserved_word_set_id = 12}, + [558] = {.lex_state = 22, .reserved_word_set_id = 12}, + [559] = {.lex_state = 22, .reserved_word_set_id = 12}, + [560] = {.lex_state = 22, .reserved_word_set_id = 12}, + [561] = {.lex_state = 22, .reserved_word_set_id = 1}, + [562] = {.lex_state = 22, .reserved_word_set_id = 12}, + [563] = {.lex_state = 22, .reserved_word_set_id = 1}, + [564] = {.lex_state = 22, .reserved_word_set_id = 12}, + [565] = {.lex_state = 22, .reserved_word_set_id = 1}, + [566] = {.lex_state = 22, .reserved_word_set_id = 12}, + [567] = {.lex_state = 22, .reserved_word_set_id = 12}, + [568] = {.lex_state = 22, .reserved_word_set_id = 12}, + [569] = {.lex_state = 22, .reserved_word_set_id = 12}, + [570] = {.lex_state = 22, .reserved_word_set_id = 12}, + [571] = {.lex_state = 22, .reserved_word_set_id = 12}, + [572] = {.lex_state = 22, .reserved_word_set_id = 1}, + [573] = {.lex_state = 22, .reserved_word_set_id = 12}, + [574] = {.lex_state = 22, .reserved_word_set_id = 12}, [575] = {.lex_state = 0, .reserved_word_set_id = 13}, - [576] = {.lex_state = 0, .reserved_word_set_id = 16}, - [577] = {.lex_state = 0, .reserved_word_set_id = 1}, - [578] = {.lex_state = 0, .reserved_word_set_id = 1}, + [576] = {.lex_state = 22, .reserved_word_set_id = 1}, + [577] = {.lex_state = 0, .reserved_word_set_id = 14}, + [578] = {.lex_state = 0, .reserved_word_set_id = 15}, [579] = {.lex_state = 0, .reserved_word_set_id = 13}, - [580] = {.lex_state = 0, .reserved_word_set_id = 13}, + [580] = {.lex_state = 0, .reserved_word_set_id = 1}, [581] = {.lex_state = 0, .reserved_word_set_id = 13}, - [582] = {.lex_state = 0, .reserved_word_set_id = 1}, - [583] = {.lex_state = 0, .reserved_word_set_id = 1}, + [582] = {.lex_state = 0, .reserved_word_set_id = 14}, + [583] = {.lex_state = 0, .reserved_word_set_id = 13}, [584] = {.lex_state = 0, .reserved_word_set_id = 1}, - [585] = {.lex_state = 0, .reserved_word_set_id = 1}, - [586] = {.lex_state = 0, .reserved_word_set_id = 16}, - [587] = {.lex_state = 0, .reserved_word_set_id = 16}, - [588] = {.lex_state = 0, .reserved_word_set_id = 1}, - [589] = {.lex_state = 0, .reserved_word_set_id = 1}, - [590] = {.lex_state = 0, .reserved_word_set_id = 1}, + [585] = {.lex_state = 0, .reserved_word_set_id = 14}, + [586] = {.lex_state = 0, .reserved_word_set_id = 1}, + [587] = {.lex_state = 0, .reserved_word_set_id = 15}, + [588] = {.lex_state = 0, .reserved_word_set_id = 13}, + [589] = {.lex_state = 0, .reserved_word_set_id = 13}, + [590] = {.lex_state = 0, .reserved_word_set_id = 13}, [591] = {.lex_state = 0, .reserved_word_set_id = 1}, [592] = {.lex_state = 0, .reserved_word_set_id = 1}, - [593] = {.lex_state = 0, .reserved_word_set_id = 1}, - [594] = {.lex_state = 0, .reserved_word_set_id = 1}, + [593] = {.lex_state = 0, .reserved_word_set_id = 13}, + [594] = {.lex_state = 0, .reserved_word_set_id = 13}, [595] = {.lex_state = 0, .reserved_word_set_id = 1}, - [596] = {.lex_state = 0, .reserved_word_set_id = 1}, - [597] = {.lex_state = 0, .reserved_word_set_id = 1}, - [598] = {.lex_state = 0, .reserved_word_set_id = 1}, - [599] = {.lex_state = 0, .reserved_word_set_id = 1}, - [600] = {.lex_state = 0, .reserved_word_set_id = 1}, - [601] = {.lex_state = 0, .reserved_word_set_id = 1}, + [596] = {.lex_state = 0, .reserved_word_set_id = 13}, + [597] = {.lex_state = 0, .reserved_word_set_id = 13}, + [598] = {.lex_state = 0, .reserved_word_set_id = 13}, + [599] = {.lex_state = 0, .reserved_word_set_id = 13}, + [600] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 1}, + [601] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 1}, [602] = {.lex_state = 0, .reserved_word_set_id = 1}, - [603] = {.lex_state = 0, .reserved_word_set_id = 17}, - [604] = {.lex_state = 0, .reserved_word_set_id = 1}, - [605] = {.lex_state = 0, .reserved_word_set_id = 1}, - [606] = {.lex_state = 0, .reserved_word_set_id = 1}, - [607] = {.lex_state = 0, .reserved_word_set_id = 17}, - [608] = {.lex_state = 0, .reserved_word_set_id = 17}, + [603] = {.lex_state = 0, .reserved_word_set_id = 1}, + [604] = {.lex_state = 0, .reserved_word_set_id = 16}, + [605] = {.lex_state = 0, .reserved_word_set_id = 16}, + [606] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 1}, + [607] = {.lex_state = 0, .reserved_word_set_id = 16}, + [608] = {.lex_state = 0, .reserved_word_set_id = 16}, [609] = {.lex_state = 0, .reserved_word_set_id = 1}, [610] = {.lex_state = 0, .reserved_word_set_id = 1}, - [611] = {.lex_state = 0, .reserved_word_set_id = 1}, + [611] = {.lex_state = 0, .reserved_word_set_id = 16}, [612] = {.lex_state = 0, .reserved_word_set_id = 1}, [613] = {.lex_state = 0, .reserved_word_set_id = 1}, - [614] = {.lex_state = 8, .external_lex_state = 5}, - [615] = {.lex_state = 8, .external_lex_state = 6}, - [616] = {.lex_state = 6, .external_lex_state = 7}, - [617] = {.lex_state = 8}, - [618] = {.lex_state = 23, .external_lex_state = 8}, - [619] = {.lex_state = 25, .external_lex_state = 9}, - [620] = {.lex_state = 23, .external_lex_state = 8}, - [621] = {.lex_state = 25, .external_lex_state = 9}, - [622] = {.lex_state = 8, .external_lex_state = 5}, - [623] = {.lex_state = 30, .external_lex_state = 10}, - [624] = {.lex_state = 37, .external_lex_state = 11}, - [625] = {.lex_state = 39, .external_lex_state = 12}, - [626] = {.lex_state = 0, .external_lex_state = 13}, - [627] = {.lex_state = 23, .external_lex_state = 14}, - [628] = {.lex_state = 30, .external_lex_state = 10}, - [629] = {.lex_state = 25, .external_lex_state = 15}, - [630] = {.lex_state = 30, .external_lex_state = 16}, - [631] = {.lex_state = 37, .external_lex_state = 17}, - [632] = {.lex_state = 6, .external_lex_state = 7}, - [633] = {.lex_state = 23, .external_lex_state = 8}, - [634] = {.lex_state = 25, .external_lex_state = 9}, - [635] = {.lex_state = 8, .external_lex_state = 5}, - [636] = {.lex_state = 30, .external_lex_state = 10}, - [637] = {.lex_state = 37, .external_lex_state = 11}, - [638] = {.lex_state = 39, .external_lex_state = 12}, - [639] = {.lex_state = 0, .external_lex_state = 13}, - [640] = {.lex_state = 23, .external_lex_state = 14}, - [641] = {.lex_state = 25, .external_lex_state = 15}, - [642] = {.lex_state = 30, .external_lex_state = 16}, - [643] = {.lex_state = 37, .external_lex_state = 17}, - [644] = {.lex_state = 39, .external_lex_state = 18}, - [645] = {.lex_state = 8, .external_lex_state = 6}, - [646] = {.lex_state = 39, .external_lex_state = 18}, - [647] = {.lex_state = 6, .external_lex_state = 7}, - [648] = {.lex_state = 23, .external_lex_state = 8}, - [649] = {.lex_state = 25, .external_lex_state = 9}, - [650] = {.lex_state = 8, .external_lex_state = 5}, - [651] = {.lex_state = 30, .external_lex_state = 10}, - [652] = {.lex_state = 37, .external_lex_state = 11}, - [653] = {.lex_state = 39, .external_lex_state = 12}, - [654] = {.lex_state = 0, .external_lex_state = 13}, - [655] = {.lex_state = 23, .external_lex_state = 14}, - [656] = {.lex_state = 25, .external_lex_state = 15}, - [657] = {.lex_state = 30, .external_lex_state = 16}, - [658] = {.lex_state = 37, .external_lex_state = 17}, - [659] = {.lex_state = 39, .external_lex_state = 18}, - [660] = {.lex_state = 8, .external_lex_state = 6}, - [661] = {.lex_state = 8, .external_lex_state = 6}, - [662] = {.lex_state = 37, .external_lex_state = 11}, - [663] = {.lex_state = 39, .external_lex_state = 12}, - [664] = {.lex_state = 6, .external_lex_state = 7}, - [665] = {.lex_state = 23, .external_lex_state = 8}, - [666] = {.lex_state = 25, .external_lex_state = 9}, - [667] = {.lex_state = 8, .external_lex_state = 5}, - [668] = {.lex_state = 30, .external_lex_state = 10}, - [669] = {.lex_state = 37, .external_lex_state = 11}, - [670] = {.lex_state = 39, .external_lex_state = 12}, - [671] = {.lex_state = 0, .external_lex_state = 13}, - [672] = {.lex_state = 6, .external_lex_state = 7}, - [673] = {.lex_state = 23, .external_lex_state = 8}, - [674] = {.lex_state = 25, .external_lex_state = 9}, - [675] = {.lex_state = 8, .external_lex_state = 5}, - [676] = {.lex_state = 30, .external_lex_state = 10}, - [677] = {.lex_state = 37, .external_lex_state = 11}, - [678] = {.lex_state = 39, .external_lex_state = 12}, - [679] = {.lex_state = 0, .external_lex_state = 13}, - [680] = {.lex_state = 23, .external_lex_state = 14}, - [681] = {.lex_state = 25, .external_lex_state = 15}, - [682] = {.lex_state = 30, .external_lex_state = 16}, - [683] = {.lex_state = 37, .external_lex_state = 17}, - [684] = {.lex_state = 39, .external_lex_state = 18}, - [685] = {.lex_state = 8, .external_lex_state = 6}, - [686] = {.lex_state = 23, .external_lex_state = 14}, - [687] = {.lex_state = 25, .external_lex_state = 15}, - [688] = {.lex_state = 30, .external_lex_state = 16}, - [689] = {.lex_state = 37, .external_lex_state = 17}, - [690] = {.lex_state = 6, .external_lex_state = 7}, - [691] = {.lex_state = 23, .external_lex_state = 8}, - [692] = {.lex_state = 25, .external_lex_state = 9}, - [693] = {.lex_state = 8, .external_lex_state = 5}, - [694] = {.lex_state = 30, .external_lex_state = 10}, - [695] = {.lex_state = 37, .external_lex_state = 11}, - [696] = {.lex_state = 39, .external_lex_state = 12}, - [697] = {.lex_state = 0, .external_lex_state = 13}, - [698] = {.lex_state = 23, .external_lex_state = 14}, - [699] = {.lex_state = 25, .external_lex_state = 15}, - [700] = {.lex_state = 30, .external_lex_state = 16}, - [701] = {.lex_state = 37, .external_lex_state = 17}, - [702] = {.lex_state = 39, .external_lex_state = 18}, - [703] = {.lex_state = 8, .external_lex_state = 6}, - [704] = {.lex_state = 39, .external_lex_state = 18}, - [705] = {.lex_state = 8, .external_lex_state = 6}, - [706] = {.lex_state = 0, .external_lex_state = 13}, - [707] = {.lex_state = 23, .external_lex_state = 14}, - [708] = {.lex_state = 25, .external_lex_state = 15}, - [709] = {.lex_state = 30, .external_lex_state = 16}, - [710] = {.lex_state = 37, .external_lex_state = 17}, - [711] = {.lex_state = 39, .external_lex_state = 18}, - [712] = {.lex_state = 6, .external_lex_state = 7}, - [713] = {.lex_state = 0}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 159, .external_lex_state = 4}, - [716] = {.lex_state = 159, .external_lex_state = 4}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 159, .external_lex_state = 4}, - [719] = {.lex_state = 159, .external_lex_state = 4}, - [720] = {.lex_state = 159, .external_lex_state = 4}, - [721] = {.lex_state = 159, .external_lex_state = 4}, - [722] = {.lex_state = 159, .external_lex_state = 4}, - [723] = {.lex_state = 159, .external_lex_state = 4}, - [724] = {.lex_state = 159, .external_lex_state = 4}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 159, .external_lex_state = 4}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 6, .external_lex_state = 7}, - [729] = {.lex_state = 8}, - [730] = {.lex_state = 159, .external_lex_state = 4}, - [731] = {.lex_state = 6, .external_lex_state = 7}, - [732] = {.lex_state = 8}, - [733] = {.lex_state = 23, .external_lex_state = 8}, - [734] = {.lex_state = 23, .external_lex_state = 8}, - [735] = {.lex_state = 23, .external_lex_state = 8}, - [736] = {.lex_state = 6, .external_lex_state = 7}, - [737] = {.lex_state = 23, .external_lex_state = 8}, - [738] = {.lex_state = 6, .external_lex_state = 7}, - [739] = {.lex_state = 23, .external_lex_state = 8}, - [740] = {.lex_state = 6, .external_lex_state = 7}, - [741] = {.lex_state = 6, .external_lex_state = 7}, - [742] = {.lex_state = 6, .external_lex_state = 7}, - [743] = {.lex_state = 23, .external_lex_state = 8}, - [744] = {.lex_state = 6, .external_lex_state = 7}, - [745] = {.lex_state = 23, .external_lex_state = 8}, - [746] = {.lex_state = 159, .external_lex_state = 4}, - [747] = {.lex_state = 23, .external_lex_state = 8}, - [748] = {.lex_state = 6, .external_lex_state = 7}, - [749] = {.lex_state = 23, .external_lex_state = 8}, - [750] = {.lex_state = 159, .external_lex_state = 4}, - [751] = {.lex_state = 23, .external_lex_state = 8}, - [752] = {.lex_state = 6, .external_lex_state = 7}, - [753] = {.lex_state = 6, .external_lex_state = 7}, - [754] = {.lex_state = 0, .reserved_word_set_id = 18}, - [755] = {.lex_state = 23, .external_lex_state = 8}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 23, .external_lex_state = 14}, - [758] = {.lex_state = 25, .external_lex_state = 15}, - [759] = {.lex_state = 25, .external_lex_state = 15}, - [760] = {.lex_state = 0, .reserved_word_set_id = 1}, - [761] = {.lex_state = 30, .external_lex_state = 16}, - [762] = {.lex_state = 30, .external_lex_state = 16}, - [763] = {.lex_state = 37, .external_lex_state = 17}, - [764] = {.lex_state = 37, .external_lex_state = 17}, - [765] = {.lex_state = 39, .external_lex_state = 18}, - [766] = {.lex_state = 23, .external_lex_state = 14}, - [767] = {.lex_state = 0}, - [768] = {.lex_state = 6, .external_lex_state = 7}, - [769] = {.lex_state = 6, .external_lex_state = 7}, - [770] = {.lex_state = 23, .external_lex_state = 8}, - [771] = {.lex_state = 0, .reserved_word_set_id = 19}, - [772] = {.lex_state = 25, .external_lex_state = 9}, - [773] = {.lex_state = 25, .external_lex_state = 9}, - [774] = {.lex_state = 8, .external_lex_state = 5}, - [775] = {.lex_state = 0, .reserved_word_set_id = 1}, - [776] = {.lex_state = 8, .external_lex_state = 5}, - [777] = {.lex_state = 39, .external_lex_state = 18}, - [778] = {.lex_state = 8, .external_lex_state = 6}, - [779] = {.lex_state = 8, .external_lex_state = 6}, - [780] = {.lex_state = 23, .external_lex_state = 14}, - [781] = {.lex_state = 23, .external_lex_state = 8}, - [782] = {.lex_state = 25, .external_lex_state = 9}, - [783] = {.lex_state = 8, .external_lex_state = 5}, - [784] = {.lex_state = 30, .external_lex_state = 10}, + [614] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 1}, + [615] = {.lex_state = 158, .external_lex_state = 4, .reserved_word_set_id = 1}, + [616] = {.lex_state = 0, .reserved_word_set_id = 13}, + [617] = {.lex_state = 0, .reserved_word_set_id = 1}, + [618] = {.lex_state = 0, .reserved_word_set_id = 1}, + [619] = {.lex_state = 0, .reserved_word_set_id = 1}, + [620] = {.lex_state = 0, .reserved_word_set_id = 13}, + [621] = {.lex_state = 0, .reserved_word_set_id = 1}, + [622] = {.lex_state = 0, .reserved_word_set_id = 1}, + [623] = {.lex_state = 0, .reserved_word_set_id = 16}, + [624] = {.lex_state = 0, .reserved_word_set_id = 1}, + [625] = {.lex_state = 0, .reserved_word_set_id = 13}, + [626] = {.lex_state = 0, .reserved_word_set_id = 13}, + [627] = {.lex_state = 0, .reserved_word_set_id = 1}, + [628] = {.lex_state = 0, .reserved_word_set_id = 1}, + [629] = {.lex_state = 0, .reserved_word_set_id = 1}, + [630] = {.lex_state = 0, .reserved_word_set_id = 13}, + [631] = {.lex_state = 0, .reserved_word_set_id = 1}, + [632] = {.lex_state = 0, .reserved_word_set_id = 1}, + [633] = {.lex_state = 0, .reserved_word_set_id = 13}, + [634] = {.lex_state = 0, .reserved_word_set_id = 1}, + [635] = {.lex_state = 0, .reserved_word_set_id = 1}, + [636] = {.lex_state = 0, .reserved_word_set_id = 16}, + [637] = {.lex_state = 0, .reserved_word_set_id = 1}, + [638] = {.lex_state = 0, .reserved_word_set_id = 1}, + [639] = {.lex_state = 0, .reserved_word_set_id = 1}, + [640] = {.lex_state = 0, .reserved_word_set_id = 1}, + [641] = {.lex_state = 0, .reserved_word_set_id = 1}, + [642] = {.lex_state = 0, .reserved_word_set_id = 1}, + [643] = {.lex_state = 0, .reserved_word_set_id = 1}, + [644] = {.lex_state = 0, .reserved_word_set_id = 16}, + [645] = {.lex_state = 0, .reserved_word_set_id = 1}, + [646] = {.lex_state = 0, .reserved_word_set_id = 1}, + [647] = {.lex_state = 0, .reserved_word_set_id = 1}, + [648] = {.lex_state = 0, .reserved_word_set_id = 1}, + [649] = {.lex_state = 0, .reserved_word_set_id = 1}, + [650] = {.lex_state = 0, .reserved_word_set_id = 1}, + [651] = {.lex_state = 0, .reserved_word_set_id = 1}, + [652] = {.lex_state = 0, .reserved_word_set_id = 1}, + [653] = {.lex_state = 0, .reserved_word_set_id = 1}, + [654] = {.lex_state = 0, .reserved_word_set_id = 1}, + [655] = {.lex_state = 0, .reserved_word_set_id = 17}, + [656] = {.lex_state = 0, .reserved_word_set_id = 1}, + [657] = {.lex_state = 0, .reserved_word_set_id = 1}, + [658] = {.lex_state = 0, .reserved_word_set_id = 1}, + [659] = {.lex_state = 0, .reserved_word_set_id = 1}, + [660] = {.lex_state = 0, .reserved_word_set_id = 1}, + [661] = {.lex_state = 0, .reserved_word_set_id = 1}, + [662] = {.lex_state = 0, .reserved_word_set_id = 17}, + [663] = {.lex_state = 0, .reserved_word_set_id = 1}, + [664] = {.lex_state = 0, .reserved_word_set_id = 17}, + [665] = {.lex_state = 0, .reserved_word_set_id = 1}, + [666] = {.lex_state = 0, .reserved_word_set_id = 1}, + [667] = {.lex_state = 0, .reserved_word_set_id = 1}, + [668] = {.lex_state = 0, .reserved_word_set_id = 1}, + [669] = {.lex_state = 6, .external_lex_state = 5}, + [670] = {.lex_state = 8, .external_lex_state = 6}, + [671] = {.lex_state = 25, .external_lex_state = 7}, + [672] = {.lex_state = 27, .external_lex_state = 8}, + [673] = {.lex_state = 33, .external_lex_state = 9}, + [674] = {.lex_state = 37, .external_lex_state = 10}, + [675] = {.lex_state = 41, .external_lex_state = 11}, + [676] = {.lex_state = 25, .external_lex_state = 7}, + [677] = {.lex_state = 41, .external_lex_state = 11}, + [678] = {.lex_state = 6, .external_lex_state = 5}, + [679] = {.lex_state = 8, .external_lex_state = 12}, + [680] = {.lex_state = 25, .external_lex_state = 13}, + [681] = {.lex_state = 27, .external_lex_state = 14}, + [682] = {.lex_state = 33, .external_lex_state = 15}, + [683] = {.lex_state = 37, .external_lex_state = 16}, + [684] = {.lex_state = 41, .external_lex_state = 17}, + [685] = {.lex_state = 0, .external_lex_state = 18}, + [686] = {.lex_state = 8, .external_lex_state = 6}, + [687] = {.lex_state = 25, .external_lex_state = 7}, + [688] = {.lex_state = 27, .external_lex_state = 8}, + [689] = {.lex_state = 33, .external_lex_state = 9}, + [690] = {.lex_state = 37, .external_lex_state = 10}, + [691] = {.lex_state = 41, .external_lex_state = 11}, + [692] = {.lex_state = 0, .external_lex_state = 18}, + [693] = {.lex_state = 8, .external_lex_state = 6}, + [694] = {.lex_state = 25, .external_lex_state = 7}, + [695] = {.lex_state = 27, .external_lex_state = 8}, + [696] = {.lex_state = 25, .external_lex_state = 13}, + [697] = {.lex_state = 33, .external_lex_state = 9}, + [698] = {.lex_state = 37, .external_lex_state = 10}, + [699] = {.lex_state = 33, .external_lex_state = 9}, + [700] = {.lex_state = 41, .external_lex_state = 11}, + [701] = {.lex_state = 27, .external_lex_state = 8}, + [702] = {.lex_state = 6, .external_lex_state = 5}, + [703] = {.lex_state = 8, .external_lex_state = 12}, + [704] = {.lex_state = 25, .external_lex_state = 13}, + [705] = {.lex_state = 27, .external_lex_state = 14}, + [706] = {.lex_state = 33, .external_lex_state = 15}, + [707] = {.lex_state = 37, .external_lex_state = 16}, + [708] = {.lex_state = 41, .external_lex_state = 17}, + [709] = {.lex_state = 0, .external_lex_state = 18}, + [710] = {.lex_state = 8, .external_lex_state = 6}, + [711] = {.lex_state = 25, .external_lex_state = 7}, + [712] = {.lex_state = 27, .external_lex_state = 8}, + [713] = {.lex_state = 33, .external_lex_state = 9}, + [714] = {.lex_state = 37, .external_lex_state = 10}, + [715] = {.lex_state = 41, .external_lex_state = 11}, + [716] = {.lex_state = 33, .external_lex_state = 9}, + [717] = {.lex_state = 37, .external_lex_state = 16}, + [718] = {.lex_state = 37, .external_lex_state = 10}, + [719] = {.lex_state = 6, .external_lex_state = 5}, + [720] = {.lex_state = 8, .external_lex_state = 12}, + [721] = {.lex_state = 25, .external_lex_state = 13}, + [722] = {.lex_state = 27, .external_lex_state = 14}, + [723] = {.lex_state = 33, .external_lex_state = 15}, + [724] = {.lex_state = 37, .external_lex_state = 16}, + [725] = {.lex_state = 41, .external_lex_state = 17}, + [726] = {.lex_state = 0, .external_lex_state = 18}, + [727] = {.lex_state = 8, .external_lex_state = 6}, + [728] = {.lex_state = 27, .external_lex_state = 8}, + [729] = {.lex_state = 33, .external_lex_state = 9}, + [730] = {.lex_state = 37, .external_lex_state = 10}, + [731] = {.lex_state = 41, .external_lex_state = 11}, + [732] = {.lex_state = 6, .external_lex_state = 5}, + [733] = {.lex_state = 37, .external_lex_state = 10}, + [734] = {.lex_state = 27, .external_lex_state = 14}, + [735] = {.lex_state = 41, .external_lex_state = 11}, + [736] = {.lex_state = 33, .external_lex_state = 15}, + [737] = {.lex_state = 41, .external_lex_state = 17}, + [738] = {.lex_state = 0, .external_lex_state = 18}, + [739] = {.lex_state = 37, .external_lex_state = 16}, + [740] = {.lex_state = 6, .external_lex_state = 5}, + [741] = {.lex_state = 8, .external_lex_state = 12}, + [742] = {.lex_state = 8, .external_lex_state = 6}, + [743] = {.lex_state = 41, .external_lex_state = 17}, + [744] = {.lex_state = 8, .external_lex_state = 12}, + [745] = {.lex_state = 25, .external_lex_state = 13}, + [746] = {.lex_state = 8, .external_lex_state = 12}, + [747] = {.lex_state = 25, .external_lex_state = 7}, + [748] = {.lex_state = 6, .external_lex_state = 5}, + [749] = {.lex_state = 8, .external_lex_state = 12}, + [750] = {.lex_state = 27, .external_lex_state = 14}, + [751] = {.lex_state = 25, .external_lex_state = 13}, + [752] = {.lex_state = 27, .external_lex_state = 14}, + [753] = {.lex_state = 33, .external_lex_state = 15}, + [754] = {.lex_state = 25, .external_lex_state = 13}, + [755] = {.lex_state = 37, .external_lex_state = 16}, + [756] = {.lex_state = 27, .external_lex_state = 8}, + [757] = {.lex_state = 41, .external_lex_state = 17}, + [758] = {.lex_state = 0, .external_lex_state = 18}, + [759] = {.lex_state = 0, .external_lex_state = 18}, + [760] = {.lex_state = 8, .external_lex_state = 6}, + [761] = {.lex_state = 33, .external_lex_state = 15}, + [762] = {.lex_state = 27, .external_lex_state = 14}, + [763] = {.lex_state = 33, .external_lex_state = 15}, + [764] = {.lex_state = 37, .external_lex_state = 16}, + [765] = {.lex_state = 6}, + [766] = {.lex_state = 41, .external_lex_state = 17}, + [767] = {.lex_state = 25, .external_lex_state = 7}, + [768] = {.lex_state = 0}, + [769] = {.lex_state = 158, .external_lex_state = 4}, + [770] = {.lex_state = 158, .external_lex_state = 4}, + [771] = {.lex_state = 158, .external_lex_state = 4}, + [772] = {.lex_state = 158, .external_lex_state = 4}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 158, .external_lex_state = 4}, + [775] = {.lex_state = 0}, + [776] = {.lex_state = 158, .external_lex_state = 4}, + [777] = {.lex_state = 158, .external_lex_state = 4}, + [778] = {.lex_state = 158, .external_lex_state = 4}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 158, .external_lex_state = 4}, + [781] = {.lex_state = 158, .external_lex_state = 4}, + [782] = {.lex_state = 0}, + [783] = {.lex_state = 6, .external_lex_state = 5}, + [784] = {.lex_state = 158, .external_lex_state = 4}, [785] = {.lex_state = 0, .reserved_word_set_id = 18}, - [786] = {.lex_state = 37, .external_lex_state = 11}, - [787] = {.lex_state = 39, .external_lex_state = 12}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 30, .external_lex_state = 10}, - [790] = {.lex_state = 30, .external_lex_state = 10}, - [791] = {.lex_state = 37, .external_lex_state = 11}, - [792] = {.lex_state = 37, .external_lex_state = 11}, - [793] = {.lex_state = 39, .external_lex_state = 12}, - [794] = {.lex_state = 39, .external_lex_state = 12}, - [795] = {.lex_state = 0, .external_lex_state = 13}, - [796] = {.lex_state = 0, .external_lex_state = 13}, - [797] = {.lex_state = 159}, - [798] = {.lex_state = 30, .external_lex_state = 16}, - [799] = {.lex_state = 0, .reserved_word_set_id = 18}, - [800] = {.lex_state = 37, .external_lex_state = 17}, - [801] = {.lex_state = 0}, - [802] = {.lex_state = 0, .external_lex_state = 13}, - [803] = {.lex_state = 23, .external_lex_state = 8}, - [804] = {.lex_state = 25, .external_lex_state = 15}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 39, .external_lex_state = 18}, - [807] = {.lex_state = 8, .external_lex_state = 6}, + [786] = {.lex_state = 6, .external_lex_state = 5}, + [787] = {.lex_state = 158, .external_lex_state = 4}, + [788] = {.lex_state = 158, .external_lex_state = 4}, + [789] = {.lex_state = 6, .external_lex_state = 5}, + [790] = {.lex_state = 8, .external_lex_state = 12}, + [791] = {.lex_state = 8, .external_lex_state = 12}, + [792] = {.lex_state = 0, .reserved_word_set_id = 18}, + [793] = {.lex_state = 6, .external_lex_state = 5}, + [794] = {.lex_state = 8, .external_lex_state = 12}, + [795] = {.lex_state = 0, .reserved_word_set_id = 1}, + [796] = {.lex_state = 6, .external_lex_state = 5}, + [797] = {.lex_state = 6, .external_lex_state = 5}, + [798] = {.lex_state = 8, .external_lex_state = 12}, + [799] = {.lex_state = 6, .external_lex_state = 5}, + [800] = {.lex_state = 6, .external_lex_state = 5}, + [801] = {.lex_state = 0, .reserved_word_set_id = 1}, + [802] = {.lex_state = 158, .reserved_word_set_id = 19}, + [803] = {.lex_state = 6, .external_lex_state = 5}, + [804] = {.lex_state = 8, .external_lex_state = 12}, + [805] = {.lex_state = 8, .external_lex_state = 12}, + [806] = {.lex_state = 6}, + [807] = {.lex_state = 6}, [808] = {.lex_state = 0, .reserved_word_set_id = 18}, - [809] = {.lex_state = 0, .reserved_word_set_id = 1}, - [810] = {.lex_state = 0, .reserved_word_set_id = 1}, - [811] = {.lex_state = 6, .external_lex_state = 7}, - [812] = {.lex_state = 159}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 159}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 6}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 159}, - [823] = {.lex_state = 6, .external_lex_state = 7}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 6}, - [826] = {.lex_state = 159}, - [827] = {.lex_state = 6}, - [828] = {.lex_state = 0}, + [809] = {.lex_state = 8, .external_lex_state = 12}, + [810] = {.lex_state = 158, .reserved_word_set_id = 19}, + [811] = {.lex_state = 6, .external_lex_state = 5}, + [812] = {.lex_state = 8, .external_lex_state = 12}, + [813] = {.lex_state = 8, .external_lex_state = 12}, + [814] = {.lex_state = 6, .external_lex_state = 5}, + [815] = {.lex_state = 8, .external_lex_state = 12}, + [816] = {.lex_state = 8, .external_lex_state = 12}, + [817] = {.lex_state = 0, .external_lex_state = 18}, + [818] = {.lex_state = 0, .reserved_word_set_id = 1}, + [819] = {.lex_state = 6, .external_lex_state = 5}, + [820] = {.lex_state = 8, .external_lex_state = 12}, + [821] = {.lex_state = 25, .external_lex_state = 13}, + [822] = {.lex_state = 27, .external_lex_state = 14}, + [823] = {.lex_state = 33, .external_lex_state = 15}, + [824] = {.lex_state = 37, .external_lex_state = 16}, + [825] = {.lex_state = 41, .external_lex_state = 17}, + [826] = {.lex_state = 0, .reserved_word_set_id = 1}, + [827] = {.lex_state = 37, .external_lex_state = 10}, + [828] = {.lex_state = 33, .external_lex_state = 15}, [829] = {.lex_state = 0}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 6}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 23, .external_lex_state = 8}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 6}, - [838] = {.lex_state = 0}, - [839] = {.lex_state = 159}, - [840] = {.lex_state = 0}, - [841] = {.lex_state = 159}, - [842] = {.lex_state = 0}, - [843] = {.lex_state = 0}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 159}, - [847] = {.lex_state = 159}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 6}, - [850] = {.lex_state = 0, .external_lex_state = 19}, - [851] = {.lex_state = 159}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0, .reserved_word_set_id = 1}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0, .external_lex_state = 19}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, + [830] = {.lex_state = 41, .external_lex_state = 11}, + [831] = {.lex_state = 41, .external_lex_state = 11}, + [832] = {.lex_state = 33, .external_lex_state = 15}, + [833] = {.lex_state = 8, .external_lex_state = 12}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0, .reserved_word_set_id = 18}, + [836] = {.lex_state = 37, .external_lex_state = 16}, + [837] = {.lex_state = 6, .external_lex_state = 5}, + [838] = {.lex_state = 37, .external_lex_state = 16}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 0, .reserved_word_set_id = 18}, + [841] = {.lex_state = 8, .external_lex_state = 12}, + [842] = {.lex_state = 158}, + [843] = {.lex_state = 41, .external_lex_state = 17}, + [844] = {.lex_state = 0, .external_lex_state = 18}, + [845] = {.lex_state = 0, .reserved_word_set_id = 1}, + [846] = {.lex_state = 25, .external_lex_state = 7}, + [847] = {.lex_state = 27, .external_lex_state = 8}, + [848] = {.lex_state = 33, .external_lex_state = 9}, + [849] = {.lex_state = 37, .external_lex_state = 10}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 41, .external_lex_state = 11}, + [853] = {.lex_state = 41, .external_lex_state = 17}, + [854] = {.lex_state = 0, .reserved_word_set_id = 19}, + [855] = {.lex_state = 25, .external_lex_state = 13}, + [856] = {.lex_state = 25, .external_lex_state = 13}, + [857] = {.lex_state = 0, .external_lex_state = 18}, [858] = {.lex_state = 0, .reserved_word_set_id = 1}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 159}, - [861] = {.lex_state = 0, .reserved_word_set_id = 1}, - [862] = {.lex_state = 0, .external_lex_state = 19}, - [863] = {.lex_state = 159}, - [864] = {.lex_state = 0, .reserved_word_set_id = 1}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 8}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 8}, - [872] = {.lex_state = 0, .reserved_word_set_id = 1}, - [873] = {.lex_state = 167}, - [874] = {.lex_state = 0, .reserved_word_set_id = 1}, - [875] = {.lex_state = 0, .reserved_word_set_id = 1}, - [876] = {.lex_state = 0, .reserved_word_set_id = 1}, + [859] = {.lex_state = 8, .external_lex_state = 6}, + [860] = {.lex_state = 8, .external_lex_state = 6}, + [861] = {.lex_state = 6, .external_lex_state = 5}, + [862] = {.lex_state = 25, .external_lex_state = 7}, + [863] = {.lex_state = 25, .external_lex_state = 7}, + [864] = {.lex_state = 27, .external_lex_state = 14}, + [865] = {.lex_state = 27, .external_lex_state = 8}, + [866] = {.lex_state = 27, .external_lex_state = 8}, + [867] = {.lex_state = 27, .external_lex_state = 14}, + [868] = {.lex_state = 33, .external_lex_state = 9}, + [869] = {.lex_state = 33, .external_lex_state = 9}, + [870] = {.lex_state = 0, .reserved_word_set_id = 18}, + [871] = {.lex_state = 37, .external_lex_state = 10}, + [872] = {.lex_state = 8, .external_lex_state = 6}, + [873] = {.lex_state = 6}, + [874] = {.lex_state = 158}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, [878] = {.lex_state = 0}, - [879] = {.lex_state = 0, .reserved_word_set_id = 1}, + [879] = {.lex_state = 158}, [880] = {.lex_state = 0}, [881] = {.lex_state = 0}, - [882] = {.lex_state = 0, .reserved_word_set_id = 1}, - [883] = {.lex_state = 0, .reserved_word_set_id = 1}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0, .reserved_word_set_id = 1}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 6, .external_lex_state = 5}, + [884] = {.lex_state = 158}, + [885] = {.lex_state = 6}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 0, .reserved_word_set_id = 1}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 167}, - [891] = {.lex_state = 0, .reserved_word_set_id = 1}, - [892] = {.lex_state = 0, .reserved_word_set_id = 1}, - [893] = {.lex_state = 0, .reserved_word_set_id = 1}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 0}, + [887] = {.lex_state = 6}, + [888] = {.lex_state = 6}, + [889] = {.lex_state = 158}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 0}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0}, + [894] = {.lex_state = 8, .external_lex_state = 12}, + [895] = {.lex_state = 158}, + [896] = {.lex_state = 6}, + [897] = {.lex_state = 158}, [898] = {.lex_state = 0}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, + [900] = {.lex_state = 158}, [901] = {.lex_state = 0}, [902] = {.lex_state = 0}, - [903] = {.lex_state = 0, .reserved_word_set_id = 1}, - [904] = {.lex_state = 0, .reserved_word_set_id = 1}, - [905] = {.lex_state = 0, .reserved_word_set_id = 1}, - [906] = {.lex_state = 0, .reserved_word_set_id = 1}, - [907] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 6}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 158}, [908] = {.lex_state = 0}, - [909] = {.lex_state = 0, .reserved_word_set_id = 1}, + [909] = {.lex_state = 0}, [910] = {.lex_state = 0}, [911] = {.lex_state = 0, .reserved_word_set_id = 1}, [912] = {.lex_state = 0}, [913] = {.lex_state = 0}, - [914] = {.lex_state = 0, .reserved_word_set_id = 1}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0, .reserved_word_set_id = 1}, - [917] = {.lex_state = 0, .reserved_word_set_id = 1}, - [918] = {.lex_state = 0}, + [914] = {.lex_state = 0, .external_lex_state = 19}, + [915] = {.lex_state = 0, .reserved_word_set_id = 1}, + [916] = {.lex_state = 6}, + [917] = {.lex_state = 158}, + [918] = {.lex_state = 158}, [919] = {.lex_state = 0}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, + [921] = {.lex_state = 0, .reserved_word_set_id = 1}, [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, + [923] = {.lex_state = 158}, + [924] = {.lex_state = 0, .external_lex_state = 19}, + [925] = {.lex_state = 0, .external_lex_state = 19}, + [926] = {.lex_state = 0, .reserved_word_set_id = 1}, [927] = {.lex_state = 0}, - [928] = {.lex_state = 0, .reserved_word_set_id = 1}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, - [930] = {.lex_state = 0}, + [930] = {.lex_state = 0, .reserved_word_set_id = 1}, [931] = {.lex_state = 0, .reserved_word_set_id = 1}, - [932] = {.lex_state = 0}, + [932] = {.lex_state = 0, .reserved_word_set_id = 1}, [933] = {.lex_state = 0}, [934] = {.lex_state = 0}, [935] = {.lex_state = 0}, [936] = {.lex_state = 0}, [937] = {.lex_state = 0}, [938] = {.lex_state = 0, .reserved_word_set_id = 1}, - [939] = {(TSStateId)(-1),}, - [940] = {(TSStateId)(-1),}, + [939] = {.lex_state = 0}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 0, .reserved_word_set_id = 1}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0, .reserved_word_set_id = 1}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 166}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 0, .reserved_word_set_id = 1}, + [952] = {.lex_state = 0, .reserved_word_set_id = 1}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 6}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 0}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 0, .reserved_word_set_id = 1}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 166}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 0, .reserved_word_set_id = 1}, + [964] = {.lex_state = 0, .reserved_word_set_id = 1}, + [965] = {.lex_state = 0, .reserved_word_set_id = 1}, + [966] = {.lex_state = 0, .reserved_word_set_id = 1}, + [967] = {.lex_state = 0, .reserved_word_set_id = 1}, + [968] = {.lex_state = 0, .reserved_word_set_id = 1}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0, .reserved_word_set_id = 1}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 0, .reserved_word_set_id = 1}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0, .reserved_word_set_id = 1}, + [980] = {.lex_state = 0, .reserved_word_set_id = 1}, + [981] = {.lex_state = 0, .reserved_word_set_id = 1}, + [982] = {.lex_state = 0}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0, .reserved_word_set_id = 1}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0, .reserved_word_set_id = 1}, + [996] = {.lex_state = 0, .reserved_word_set_id = 1}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 0, .reserved_word_set_id = 1}, + [1004] = {(TSStateId)(-1),}, + [1005] = {(TSStateId)(-1),}, }; static const TSSymbol ts_reserved_words[20][MAX_RESERVED_WORD_SET_SIZE] = { @@ -6598,27 +6705,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_minus] = ACTIONS(1), }, [STATE(1)] = { - [sym_module] = STATE(896), + [sym_module] = STATE(940), [sym_shebangComment] = STATE(1), - [sym_moduleHeader] = STATE(303), - [sym_moduleClause] = STATE(480), - [sym_extendsOrAmendsClause] = STATE(573), - [sym_importClause] = STATE(577), - [sym_importGlobClause] = STATE(577), - [sym__moduleMember] = STATE(601), - [sym_clazz] = STATE(592), - [sym_typeAlias] = STATE(592), - [sym_classProperty] = STATE(592), - [sym_classMethod] = STATE(592), - [sym_methodHeader] = STATE(579), - [sym_annotation] = STATE(586), - [sym_modifier] = STATE(608), + [sym_moduleHeader] = STATE(326), + [sym_moduleClause] = STATE(553), + [sym_extendsOrAmendsClause] = STATE(627), + [sym_importClause] = STATE(618), + [sym_importGlobClause] = STATE(618), + [sym__moduleMember] = STATE(648), + [sym_clazz] = STATE(645), + [sym_typeAlias] = STATE(645), + [sym_classProperty] = STATE(645), + [sym_classMethod] = STATE(645), + [sym_methodHeader] = STATE(626), + [sym_annotation] = STATE(636), + [sym_modifier] = STATE(662), [sym_lineComment] = STATE(1), - [sym_docComment] = STATE(461), - [aux_sym_module_repeat1] = STATE(301), - [aux_sym_module_repeat2] = STATE(336), - [aux_sym_moduleHeader_repeat1] = STATE(463), - [aux_sym_moduleClause_repeat1] = STATE(595), + [sym_docComment] = STATE(491), + [aux_sym_module_repeat1] = STATE(325), + [aux_sym_module_repeat2] = STATE(362), + [aux_sym_moduleHeader_repeat1] = STATE(493), + [aux_sym_moduleClause_repeat1] = STATE(649), [ts_builtin_sym_end] = ACTIONS(11), [sym_identifier] = ACTIONS(13), [anon_sym_POUND_BANG] = ACTIONS(15), @@ -6645,57 +6752,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(2)] = { [sym_shebangComment] = STATE(2), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), [sym_objectBodyParameters] = STATE(18), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(828), - [sym_typedIdentifier] = STATE(732), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(880), + [sym_typedIdentifier] = STATE(807), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(2), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(8), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6756,57 +6863,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(3)] = { [sym_shebangComment] = STATE(3), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_objectBodyParameters] = STATE(9), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(828), - [sym_typedIdentifier] = STATE(732), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_objectBodyParameters] = STATE(15), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(880), + [sym_typedIdentifier] = STATE(807), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(3), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(10), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(16), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6867,57 +6974,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(4)] = { [sym_shebangComment] = STATE(4), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_objectBodyParameters] = STATE(11), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(828), - [sym_typedIdentifier] = STATE(732), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_objectBodyParameters] = STATE(10), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(880), + [sym_typedIdentifier] = STATE(807), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(4), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(12), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(14), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6978,57 +7085,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(5)] = { [sym_shebangComment] = STATE(5), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_objectBodyParameters] = STATE(6), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(828), - [sym_typedIdentifier] = STATE(732), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_objectBodyParameters] = STATE(11), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(880), + [sym_typedIdentifier] = STATE(807), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(5), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(15), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(12), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7089,60 +7196,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(6)] = { [sym_shebangComment] = STATE(6), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(6), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(14), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), [sym_identifier] = ACTIONS(121), [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(124), + [anon_sym_import] = ACTIONS(127), + [anon_sym_import_STAR] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_function] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(141), + [anon_sym_for] = ACTIONS(144), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_when] = ACTIONS(150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(156), + [anon_sym_external] = ACTIONS(159), + [anon_sym_abstract] = ACTIONS(159), + [anon_sym_open] = ACTIONS(159), + [anon_sym_local] = ACTIONS(159), + [anon_sym_hidden] = ACTIONS(159), + [anon_sym_fixed] = ACTIONS(159), + [anon_sym_const] = ACTIONS(159), + [sym_thisExpr] = ACTIONS(162), + [sym_outerExpr] = ACTIONS(162), + [sym_nullLiteralExpr] = ACTIONS(162), + [sym_trueLiteralExpr] = ACTIONS(162), + [sym_falseLiteralExpr] = ACTIONS(162), + [sym_intLiteralExpr] = ACTIONS(162), + [sym_floatLiteralExpr] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(168), + [anon_sym_POUND_DQUOTE] = ACTIONS(171), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(174), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(177), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(180), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(183), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(189), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(192), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(195), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(198), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(204), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(207), + [anon_sym_new] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_BANG] = ACTIONS(216), + [anon_sym_if] = ACTIONS(219), + [anon_sym_let] = ACTIONS(222), + [anon_sym_throw] = ACTIONS(225), + [anon_sym_trace] = ACTIONS(228), + [anon_sym_read] = ACTIONS(231), + [anon_sym_read_QMARK] = ACTIONS(234), + [anon_sym_read_STAR] = ACTIONS(234), + [anon_sym_super] = ACTIONS(237), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(7)] = { + [sym_shebangComment] = STATE(7), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(7), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), + [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(242), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -7194,62 +7408,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(7)] = { - [sym_shebangComment] = STATE(7), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(7), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [STATE(8)] = { + [sym_shebangComment] = STATE(8), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(8), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(244), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -7301,164 +7515,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(8)] = { - [sym_shebangComment] = STATE(8), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(8), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(127), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(130), - [anon_sym_import] = ACTIONS(133), - [anon_sym_import_STAR] = ACTIONS(136), - [anon_sym_RBRACE] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_for] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_when] = ACTIONS(156), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(162), - [anon_sym_external] = ACTIONS(165), - [anon_sym_abstract] = ACTIONS(165), - [anon_sym_open] = ACTIONS(165), - [anon_sym_local] = ACTIONS(165), - [anon_sym_hidden] = ACTIONS(165), - [anon_sym_fixed] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [sym_thisExpr] = ACTIONS(168), - [sym_outerExpr] = ACTIONS(168), - [sym_nullLiteralExpr] = ACTIONS(168), - [sym_trueLiteralExpr] = ACTIONS(168), - [sym_falseLiteralExpr] = ACTIONS(168), - [sym_intLiteralExpr] = ACTIONS(168), - [sym_floatLiteralExpr] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(174), - [anon_sym_POUND_DQUOTE] = ACTIONS(177), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(180), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(183), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(186), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(189), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(192), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(195), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(198), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(204), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(207), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(210), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(216), - [anon_sym_DASH] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_if] = ACTIONS(225), - [anon_sym_let] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(231), - [anon_sym_trace] = ACTIONS(234), - [anon_sym_read] = ACTIONS(237), - [anon_sym_read_QMARK] = ACTIONS(240), - [anon_sym_read_STAR] = ACTIONS(240), - [anon_sym_super] = ACTIONS(243), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, [STATE(9)] = { [sym_shebangComment] = STATE(9), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(9), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -7517,60 +7624,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(10)] = { [sym_shebangComment] = STATE(10), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(10), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(9), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(246), + [anon_sym_RBRACE] = ACTIONS(248), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -7624,60 +7731,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(11)] = { [sym_shebangComment] = STATE(11), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(11), - [aux_sym_moduleClause_repeat1] = STATE(612), + [aux_sym_moduleClause_repeat1] = STATE(666), [aux_sym_objectBody_repeat1] = STATE(13), - [sym_identifier] = ACTIONS(121), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(248), + [anon_sym_RBRACE] = ACTIONS(250), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -7731,60 +7838,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(12)] = { [sym_shebangComment] = STATE(12), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(12), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(248), + [anon_sym_RBRACE] = ACTIONS(250), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -7838,60 +7945,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(13)] = { [sym_shebangComment] = STATE(13), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(13), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(252), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -7945,60 +8052,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(14)] = { [sym_shebangComment] = STATE(14), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(14), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(248), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -8052,60 +8159,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(15)] = { [sym_shebangComment] = STATE(15), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(15), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(254), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -8159,55 +8266,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(16)] = { [sym_shebangComment] = STATE(16), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(16), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -8266,55 +8373,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(17)] = { [sym_shebangComment] = STATE(17), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(17), - [aux_sym_moduleClause_repeat1] = STATE(612), - [aux_sym_objectBody_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(121), + [aux_sym_moduleClause_repeat1] = STATE(666), + [aux_sym_objectBody_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -8373,60 +8480,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(18)] = { [sym_shebangComment] = STATE(18), - [sym_methodHeader] = STATE(930), - [sym__objectMember] = STATE(219), - [sym_objectProperty] = STATE(222), - [sym_objectMethod] = STATE(222), - [sym_objectEntry] = STATE(222), - [sym_objectElement] = STATE(222), - [sym_memberPredicate] = STATE(222), - [sym_forGenerator] = STATE(222), - [sym_whenGenerator] = STATE(222), - [sym_objectSpread] = STATE(222), - [sym_parameterList] = STATE(880), - [sym_modifier] = STATE(608), - [sym__expr] = STATE(93), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_methodHeader] = STATE(953), + [sym__objectMember] = STATE(243), + [sym_objectProperty] = STATE(241), + [sym_objectMethod] = STATE(241), + [sym_objectEntry] = STATE(241), + [sym_objectElement] = STATE(241), + [sym_memberPredicate] = STATE(241), + [sym_forGenerator] = STATE(241), + [sym_whenGenerator] = STATE(241), + [sym_objectSpread] = STATE(241), + [sym_parameterList] = STATE(972), + [sym_modifier] = STATE(662), + [sym__expr] = STATE(103), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(18), - [aux_sym_moduleClause_repeat1] = STATE(612), + [aux_sym_moduleClause_repeat1] = STATE(666), [aux_sym_objectBody_repeat1] = STATE(7), - [sym_identifier] = ACTIONS(121), + [sym_identifier] = ACTIONS(240), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(256), + [anon_sym_RBRACE] = ACTIONS(244), [anon_sym_function] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), @@ -8480,11 +8587,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(19)] = { [sym_shebangComment] = STATE(19), - [sym_objectBody] = STATE(212), - [sym_typeAnnotation] = STATE(845), - [sym_argumentList] = STATE(82), + [sym_objectBody] = STATE(230), + [sym_typeAnnotation] = STATE(910), + [sym_argumentList] = STATE(62), [sym_lineComment] = STATE(19), - [aux_sym_classProperty_repeat1] = STATE(214), + [aux_sym_classProperty_repeat1] = STATE(231), [sym_identifier] = ACTIONS(258), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(258), @@ -8573,99 +8680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(20)] = { [sym_shebangComment] = STATE(20), - [sym_objectBody] = STATE(212), - [sym_typeAnnotation] = STATE(869), - [sym_argumentList] = STATE(82), + [sym_typeArgumentList] = STATE(39), [sym_lineComment] = STATE(20), - [aux_sym_classProperty_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(258), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_as] = ACTIONS(258), - [anon_sym_import_STAR] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(262), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(264), - [anon_sym_function] = ACTIONS(258), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(260), - [anon_sym_for] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_when] = ACTIONS(258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(258), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_external] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_open] = ACTIONS(258), - [anon_sym_local] = ACTIONS(258), - [anon_sym_hidden] = ACTIONS(258), - [anon_sym_fixed] = ACTIONS(258), - [anon_sym_const] = ACTIONS(258), - [sym_thisExpr] = ACTIONS(258), - [sym_outerExpr] = ACTIONS(258), - [sym_nullLiteralExpr] = ACTIONS(258), - [sym_trueLiteralExpr] = ACTIONS(258), - [sym_falseLiteralExpr] = ACTIONS(258), - [sym_intLiteralExpr] = ACTIONS(258), - [sym_floatLiteralExpr] = ACTIONS(260), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_POUND_DQUOTE] = ACTIONS(258), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(258), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), - [anon_sym_new] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_BANG_BANG] = ACTIONS(260), - [anon_sym_QMARK_QMARK] = ACTIONS(260), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_TILDE_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_PIPE_GT] = ACTIONS(260), - [anon_sym_is] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_let] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_trace] = ACTIONS(258), - [anon_sym_read] = ACTIONS(258), - [anon_sym_read_QMARK] = ACTIONS(260), - [anon_sym_read_STAR] = ACTIONS(260), - [anon_sym_super] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_QMARK_DOT] = ACTIONS(260), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(260), - [sym__open_argument_paren] = ACTIONS(270), - [sym__binary_minus] = ACTIONS(260), - }, - [STATE(21)] = { - [sym_shebangComment] = STATE(21), - [sym_typeArgumentList] = STATE(27), - [sym_lineComment] = STATE(21), [sym_identifier] = ACTIONS(272), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(272), @@ -8753,9 +8769,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(274), [sym__binary_minus] = ACTIONS(274), }, - [STATE(22)] = { - [sym_shebangComment] = STATE(22), - [sym_lineComment] = STATE(22), + [STATE(21)] = { + [sym_shebangComment] = STATE(21), + [sym_lineComment] = STATE(21), [sym_identifier] = ACTIONS(278), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(278), @@ -8844,10 +8860,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(280), [sym__binary_minus] = ACTIONS(280), }, - [STATE(23)] = { - [sym_shebangComment] = STATE(23), - [sym_lineComment] = STATE(23), - [aux_sym_qualifiedIdentifier_repeat1] = STATE(24), + [STATE(22)] = { + [sym_shebangComment] = STATE(22), + [sym_lineComment] = STATE(22), + [aux_sym_qualifiedIdentifier_repeat1] = STATE(23), [sym_identifier] = ACTIONS(284), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(284), @@ -8935,10 +8951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(286), [sym__binary_minus] = ACTIONS(286), }, - [STATE(24)] = { - [sym_shebangComment] = STATE(24), - [sym_lineComment] = STATE(24), - [aux_sym_qualifiedIdentifier_repeat1] = STATE(25), + [STATE(23)] = { + [sym_shebangComment] = STATE(23), + [sym_lineComment] = STATE(23), + [aux_sym_qualifiedIdentifier_repeat1] = STATE(24), [sym_identifier] = ACTIONS(291), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(291), @@ -9026,10 +9042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(293), [sym__binary_minus] = ACTIONS(293), }, - [STATE(25)] = { - [sym_shebangComment] = STATE(25), - [sym_lineComment] = STATE(25), - [aux_sym_qualifiedIdentifier_repeat1] = STATE(25), + [STATE(24)] = { + [sym_shebangComment] = STATE(24), + [sym_lineComment] = STATE(24), + [aux_sym_qualifiedIdentifier_repeat1] = STATE(24), [sym_identifier] = ACTIONS(298), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(298), @@ -9117,6 +9133,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(300), [sym__binary_minus] = ACTIONS(300), }, + [STATE(25)] = { + [sym_shebangComment] = STATE(25), + [sym_objectBody] = STATE(230), + [sym_typeAnnotation] = STATE(957), + [sym_argumentList] = STATE(62), + [sym_lineComment] = STATE(25), + [aux_sym_classProperty_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(258), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(258), + [anon_sym_import] = ACTIONS(258), + [anon_sym_as] = ACTIONS(258), + [anon_sym_import_STAR] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_function] = ACTIONS(258), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(260), + [anon_sym_for] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(260), + [anon_sym_when] = ACTIONS(258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_external] = ACTIONS(258), + [anon_sym_abstract] = ACTIONS(258), + [anon_sym_open] = ACTIONS(258), + [anon_sym_local] = ACTIONS(258), + [anon_sym_hidden] = ACTIONS(258), + [anon_sym_fixed] = ACTIONS(258), + [anon_sym_const] = ACTIONS(258), + [sym_thisExpr] = ACTIONS(258), + [sym_outerExpr] = ACTIONS(258), + [sym_nullLiteralExpr] = ACTIONS(258), + [sym_trueLiteralExpr] = ACTIONS(258), + [sym_falseLiteralExpr] = ACTIONS(258), + [sym_intLiteralExpr] = ACTIONS(258), + [sym_floatLiteralExpr] = ACTIONS(260), + [anon_sym_DQUOTE] = ACTIONS(258), + [anon_sym_POUND_DQUOTE] = ACTIONS(258), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(258), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(258), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(260), + [anon_sym_new] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_BANG_BANG] = ACTIONS(260), + [anon_sym_QMARK_QMARK] = ACTIONS(260), + [anon_sym_STAR_STAR] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_TILDE_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(260), + [anon_sym_GT_EQ] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(260), + [anon_sym_BANG_EQ] = ACTIONS(260), + [anon_sym_AMP_AMP] = ACTIONS(260), + [anon_sym_PIPE_PIPE] = ACTIONS(260), + [anon_sym_PIPE_GT] = ACTIONS(260), + [anon_sym_is] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_let] = ACTIONS(258), + [anon_sym_throw] = ACTIONS(258), + [anon_sym_trace] = ACTIONS(258), + [anon_sym_read] = ACTIONS(258), + [anon_sym_read_QMARK] = ACTIONS(260), + [anon_sym_read_STAR] = ACTIONS(260), + [anon_sym_super] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_QMARK_DOT] = ACTIONS(260), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(260), + [sym__open_argument_paren] = ACTIONS(270), + [sym__binary_minus] = ACTIONS(260), + }, [STATE(26)] = { [sym_shebangComment] = STATE(26), [sym_lineComment] = STATE(26), @@ -9204,372 +9311,462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(307), - [sym__open_argument_paren] = ACTIONS(309), + [sym__open_argument_paren] = ACTIONS(307), [sym__binary_minus] = ACTIONS(307), }, [STATE(27)] = { [sym_shebangComment] = STATE(27), [sym_lineComment] = STATE(27), - [sym_identifier] = ACTIONS(311), + [sym_identifier] = ACTIONS(298), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(311), - [anon_sym_import] = ACTIONS(311), - [anon_sym_as] = ACTIONS(311), - [anon_sym_import_STAR] = ACTIONS(313), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_function] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_for] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_RPAREN] = ACTIONS(313), - [anon_sym_when] = ACTIONS(311), - [anon_sym_else] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_external] = ACTIONS(311), - [anon_sym_abstract] = ACTIONS(311), - [anon_sym_open] = ACTIONS(311), - [anon_sym_local] = ACTIONS(311), - [anon_sym_hidden] = ACTIONS(311), - [anon_sym_fixed] = ACTIONS(311), - [anon_sym_const] = ACTIONS(311), - [sym_thisExpr] = ACTIONS(311), - [sym_outerExpr] = ACTIONS(311), - [sym_nullLiteralExpr] = ACTIONS(311), - [sym_trueLiteralExpr] = ACTIONS(311), - [sym_falseLiteralExpr] = ACTIONS(311), - [sym_intLiteralExpr] = ACTIONS(311), - [sym_floatLiteralExpr] = ACTIONS(313), - [anon_sym_DQUOTE] = ACTIONS(311), - [anon_sym_POUND_DQUOTE] = ACTIONS(311), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(311), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(311), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(311), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(311), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_new] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(313), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_BANG_BANG] = ACTIONS(313), - [anon_sym_QMARK_QMARK] = ACTIONS(313), - [anon_sym_STAR_STAR] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(311), - [anon_sym_TILDE_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_LT_EQ] = ACTIONS(313), - [anon_sym_GT_EQ] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(313), - [anon_sym_BANG_EQ] = ACTIONS(313), - [anon_sym_AMP_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(313), - [anon_sym_PIPE_GT] = ACTIONS(313), - [anon_sym_is] = ACTIONS(311), - [anon_sym_if] = ACTIONS(311), - [anon_sym_let] = ACTIONS(311), - [anon_sym_throw] = ACTIONS(311), - [anon_sym_trace] = ACTIONS(311), - [anon_sym_read] = ACTIONS(311), - [anon_sym_read_QMARK] = ACTIONS(313), - [anon_sym_read_STAR] = ACTIONS(313), - [anon_sym_super] = ACTIONS(311), - [anon_sym_DOT] = ACTIONS(311), - [anon_sym_QMARK_DOT] = ACTIONS(313), + [anon_sym_module] = ACTIONS(298), + [anon_sym_import] = ACTIONS(298), + [anon_sym_as] = ACTIONS(298), + [anon_sym_import_STAR] = ACTIONS(300), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_function] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(298), + [anon_sym_RBRACK] = ACTIONS(300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(300), + [anon_sym_for] = ACTIONS(298), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_when] = ACTIONS(298), + [anon_sym_else] = ACTIONS(298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(298), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(298), + [anon_sym_LT] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(298), + [anon_sym_external] = ACTIONS(298), + [anon_sym_abstract] = ACTIONS(298), + [anon_sym_open] = ACTIONS(298), + [anon_sym_local] = ACTIONS(298), + [anon_sym_hidden] = ACTIONS(298), + [anon_sym_fixed] = ACTIONS(298), + [anon_sym_const] = ACTIONS(298), + [sym_thisExpr] = ACTIONS(298), + [sym_outerExpr] = ACTIONS(298), + [sym_nullLiteralExpr] = ACTIONS(298), + [sym_trueLiteralExpr] = ACTIONS(298), + [sym_falseLiteralExpr] = ACTIONS(298), + [sym_intLiteralExpr] = ACTIONS(298), + [sym_floatLiteralExpr] = ACTIONS(300), + [anon_sym_DQUOTE] = ACTIONS(298), + [anon_sym_POUND_DQUOTE] = ACTIONS(298), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(298), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), + [anon_sym_new] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG_BANG] = ACTIONS(300), + [anon_sym_QMARK_QMARK] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_TILDE_SLASH] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_AMP_AMP] = ACTIONS(300), + [anon_sym_PIPE_PIPE] = ACTIONS(300), + [anon_sym_PIPE_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(298), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(298), + [anon_sym_throw] = ACTIONS(298), + [anon_sym_trace] = ACTIONS(298), + [anon_sym_read] = ACTIONS(298), + [anon_sym_read_QMARK] = ACTIONS(300), + [anon_sym_read_STAR] = ACTIONS(300), + [anon_sym_super] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(298), + [anon_sym_QMARK_DOT] = ACTIONS(300), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(313), - [sym__open_argument_paren] = ACTIONS(313), - [sym__binary_minus] = ACTIONS(313), + [sym__open_subscript_bracket] = ACTIONS(300), + [sym__open_argument_paren] = ACTIONS(300), + [sym__binary_minus] = ACTIONS(300), }, [STATE(28)] = { [sym_shebangComment] = STATE(28), [sym_lineComment] = STATE(28), - [sym_identifier] = ACTIONS(315), + [sym_identifier] = ACTIONS(309), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(315), - [anon_sym_import] = ACTIONS(315), - [anon_sym_as] = ACTIONS(315), - [anon_sym_import_STAR] = ACTIONS(317), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_function] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(317), - [anon_sym_LBRACK_LBRACK] = ACTIONS(317), - [anon_sym_for] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_RPAREN] = ACTIONS(317), - [anon_sym_when] = ACTIONS(315), - [anon_sym_else] = ACTIONS(315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(317), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_external] = ACTIONS(315), - [anon_sym_abstract] = ACTIONS(315), - [anon_sym_open] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_hidden] = ACTIONS(315), - [anon_sym_fixed] = ACTIONS(315), - [anon_sym_const] = ACTIONS(315), - [sym_thisExpr] = ACTIONS(315), - [sym_outerExpr] = ACTIONS(315), - [sym_nullLiteralExpr] = ACTIONS(315), - [sym_trueLiteralExpr] = ACTIONS(315), - [sym_falseLiteralExpr] = ACTIONS(315), - [sym_intLiteralExpr] = ACTIONS(315), - [sym_floatLiteralExpr] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(315), - [anon_sym_POUND_DQUOTE] = ACTIONS(315), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(315), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(315), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(315), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(315), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(315), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(317), - [anon_sym_new] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_BANG_BANG] = ACTIONS(317), - [anon_sym_QMARK_QMARK] = ACTIONS(317), - [anon_sym_STAR_STAR] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(315), - [anon_sym_TILDE_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_LT_EQ] = ACTIONS(317), - [anon_sym_GT_EQ] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(317), - [anon_sym_BANG_EQ] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_PIPE_PIPE] = ACTIONS(317), - [anon_sym_PIPE_GT] = ACTIONS(317), - [anon_sym_is] = ACTIONS(315), - [anon_sym_if] = ACTIONS(315), - [anon_sym_let] = ACTIONS(315), - [anon_sym_throw] = ACTIONS(315), - [anon_sym_trace] = ACTIONS(315), - [anon_sym_read] = ACTIONS(315), - [anon_sym_read_QMARK] = ACTIONS(317), - [anon_sym_read_STAR] = ACTIONS(317), - [anon_sym_super] = ACTIONS(315), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_QMARK_DOT] = ACTIONS(317), + [anon_sym_module] = ACTIONS(309), + [anon_sym_import] = ACTIONS(309), + [anon_sym_as] = ACTIONS(309), + [anon_sym_import_STAR] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(311), + [anon_sym_for] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_when] = ACTIONS(309), + [anon_sym_else] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_external] = ACTIONS(309), + [anon_sym_abstract] = ACTIONS(309), + [anon_sym_open] = ACTIONS(309), + [anon_sym_local] = ACTIONS(309), + [anon_sym_hidden] = ACTIONS(309), + [anon_sym_fixed] = ACTIONS(309), + [anon_sym_const] = ACTIONS(309), + [sym_thisExpr] = ACTIONS(309), + [sym_outerExpr] = ACTIONS(309), + [sym_nullLiteralExpr] = ACTIONS(309), + [sym_trueLiteralExpr] = ACTIONS(309), + [sym_falseLiteralExpr] = ACTIONS(309), + [sym_intLiteralExpr] = ACTIONS(309), + [sym_floatLiteralExpr] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_POUND_DQUOTE] = ACTIONS(309), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(309), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(309), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(309), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(309), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(309), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(311), + [anon_sym_new] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_BANG_BANG] = ACTIONS(311), + [anon_sym_QMARK_QMARK] = ACTIONS(311), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(309), + [anon_sym_TILDE_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE_GT] = ACTIONS(311), + [anon_sym_is] = ACTIONS(309), + [anon_sym_if] = ACTIONS(309), + [anon_sym_let] = ACTIONS(309), + [anon_sym_throw] = ACTIONS(309), + [anon_sym_trace] = ACTIONS(309), + [anon_sym_read] = ACTIONS(309), + [anon_sym_read_QMARK] = ACTIONS(311), + [anon_sym_read_STAR] = ACTIONS(311), + [anon_sym_super] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_QMARK_DOT] = ACTIONS(311), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(317), - [sym__open_argument_paren] = ACTIONS(317), - [sym__binary_minus] = ACTIONS(317), + [sym__open_subscript_bracket] = ACTIONS(311), + [sym__open_argument_paren] = ACTIONS(315), + [sym__binary_minus] = ACTIONS(311), }, [STATE(29)] = { [sym_shebangComment] = STATE(29), [sym_lineComment] = STATE(29), - [sym_identifier] = ACTIONS(319), + [sym_identifier] = ACTIONS(317), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(319), - [anon_sym_import] = ACTIONS(319), - [anon_sym_as] = ACTIONS(319), - [anon_sym_import_STAR] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_function] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_RBRACK] = ACTIONS(321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(321), - [anon_sym_for] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_when] = ACTIONS(319), - [anon_sym_else] = ACTIONS(319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_external] = ACTIONS(319), - [anon_sym_abstract] = ACTIONS(319), - [anon_sym_open] = ACTIONS(319), - [anon_sym_local] = ACTIONS(319), - [anon_sym_hidden] = ACTIONS(319), - [anon_sym_fixed] = ACTIONS(319), - [anon_sym_const] = ACTIONS(319), - [sym_thisExpr] = ACTIONS(319), - [sym_outerExpr] = ACTIONS(319), - [sym_nullLiteralExpr] = ACTIONS(319), - [sym_trueLiteralExpr] = ACTIONS(319), - [sym_falseLiteralExpr] = ACTIONS(319), - [sym_intLiteralExpr] = ACTIONS(319), - [sym_floatLiteralExpr] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(319), - [anon_sym_POUND_DQUOTE] = ACTIONS(319), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(319), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(319), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(319), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(319), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(319), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_BANG_BANG] = ACTIONS(321), - [anon_sym_QMARK_QMARK] = ACTIONS(321), - [anon_sym_STAR_STAR] = ACTIONS(321), - [anon_sym_SLASH] = ACTIONS(319), - [anon_sym_TILDE_SLASH] = ACTIONS(321), - [anon_sym_PERCENT] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(321), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_PIPE_GT] = ACTIONS(321), - [anon_sym_is] = ACTIONS(319), - [anon_sym_if] = ACTIONS(319), - [anon_sym_let] = ACTIONS(319), - [anon_sym_throw] = ACTIONS(319), - [anon_sym_trace] = ACTIONS(319), - [anon_sym_read] = ACTIONS(319), - [anon_sym_read_QMARK] = ACTIONS(321), - [anon_sym_read_STAR] = ACTIONS(321), - [anon_sym_super] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(319), - [anon_sym_QMARK_DOT] = ACTIONS(321), + [anon_sym_module] = ACTIONS(317), + [anon_sym_import] = ACTIONS(317), + [anon_sym_as] = ACTIONS(317), + [anon_sym_import_STAR] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_function] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(319), + [anon_sym_for] = ACTIONS(317), + [anon_sym_LPAREN] = ACTIONS(319), + [anon_sym_COMMA] = ACTIONS(319), + [anon_sym_RPAREN] = ACTIONS(319), + [anon_sym_when] = ACTIONS(317), + [anon_sym_else] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(319), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_external] = ACTIONS(317), + [anon_sym_abstract] = ACTIONS(317), + [anon_sym_open] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_hidden] = ACTIONS(317), + [anon_sym_fixed] = ACTIONS(317), + [anon_sym_const] = ACTIONS(317), + [sym_thisExpr] = ACTIONS(317), + [sym_outerExpr] = ACTIONS(317), + [sym_nullLiteralExpr] = ACTIONS(317), + [sym_trueLiteralExpr] = ACTIONS(317), + [sym_falseLiteralExpr] = ACTIONS(317), + [sym_intLiteralExpr] = ACTIONS(317), + [sym_floatLiteralExpr] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(317), + [anon_sym_POUND_DQUOTE] = ACTIONS(317), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(317), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(317), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(317), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(317), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(317), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(319), + [anon_sym_new] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(317), + [anon_sym_BANG_BANG] = ACTIONS(319), + [anon_sym_QMARK_QMARK] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(319), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_TILDE_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_LT_EQ] = ACTIONS(319), + [anon_sym_GT_EQ] = ACTIONS(319), + [anon_sym_EQ_EQ] = ACTIONS(319), + [anon_sym_BANG_EQ] = ACTIONS(319), + [anon_sym_AMP_AMP] = ACTIONS(319), + [anon_sym_PIPE_PIPE] = ACTIONS(319), + [anon_sym_PIPE_GT] = ACTIONS(319), + [anon_sym_is] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_let] = ACTIONS(317), + [anon_sym_throw] = ACTIONS(317), + [anon_sym_trace] = ACTIONS(317), + [anon_sym_read] = ACTIONS(317), + [anon_sym_read_QMARK] = ACTIONS(319), + [anon_sym_read_STAR] = ACTIONS(319), + [anon_sym_super] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(317), + [anon_sym_QMARK_DOT] = ACTIONS(319), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(321), - [sym__open_argument_paren] = ACTIONS(309), - [sym__binary_minus] = ACTIONS(321), + [sym__open_subscript_bracket] = ACTIONS(319), + [sym__open_argument_paren] = ACTIONS(315), + [sym__binary_minus] = ACTIONS(319), }, [STATE(30)] = { [sym_shebangComment] = STATE(30), [sym_lineComment] = STATE(30), - [sym_identifier] = ACTIONS(325), + [sym_identifier] = ACTIONS(323), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(325), - [anon_sym_import] = ACTIONS(325), - [anon_sym_as] = ACTIONS(325), - [anon_sym_import_STAR] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_function] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_RBRACK] = ACTIONS(327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(327), - [anon_sym_for] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_RPAREN] = ACTIONS(327), - [anon_sym_when] = ACTIONS(325), - [anon_sym_else] = ACTIONS(325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(327), + [anon_sym_module] = ACTIONS(323), + [anon_sym_import] = ACTIONS(323), + [anon_sym_as] = ACTIONS(323), + [anon_sym_import_STAR] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_function] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_RBRACK] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(325), + [anon_sym_for] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_COMMA] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(325), + [anon_sym_when] = ACTIONS(323), + [anon_sym_else] = ACTIONS(323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(325), [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_external] = ACTIONS(325), - [anon_sym_abstract] = ACTIONS(325), - [anon_sym_open] = ACTIONS(325), - [anon_sym_local] = ACTIONS(325), - [anon_sym_hidden] = ACTIONS(325), - [anon_sym_fixed] = ACTIONS(325), - [anon_sym_const] = ACTIONS(325), - [sym_thisExpr] = ACTIONS(325), - [sym_outerExpr] = ACTIONS(325), - [sym_nullLiteralExpr] = ACTIONS(325), - [sym_trueLiteralExpr] = ACTIONS(325), - [sym_falseLiteralExpr] = ACTIONS(325), - [sym_intLiteralExpr] = ACTIONS(325), - [sym_floatLiteralExpr] = ACTIONS(327), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_POUND_DQUOTE] = ACTIONS(325), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(325), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(325), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(325), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(325), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(325), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_BANG_BANG] = ACTIONS(327), - [anon_sym_QMARK_QMARK] = ACTIONS(327), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_TILDE_SLASH] = ACTIONS(327), - [anon_sym_PERCENT] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE_GT] = ACTIONS(327), - [anon_sym_is] = ACTIONS(325), - [anon_sym_if] = ACTIONS(325), - [anon_sym_let] = ACTIONS(325), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_trace] = ACTIONS(325), - [anon_sym_read] = ACTIONS(325), - [anon_sym_read_QMARK] = ACTIONS(327), - [anon_sym_read_STAR] = ACTIONS(327), - [anon_sym_super] = ACTIONS(325), - [anon_sym_DOT] = ACTIONS(325), - [anon_sym_QMARK_DOT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(323), + [anon_sym_GT] = ACTIONS(323), + [anon_sym_external] = ACTIONS(323), + [anon_sym_abstract] = ACTIONS(323), + [anon_sym_open] = ACTIONS(323), + [anon_sym_local] = ACTIONS(323), + [anon_sym_hidden] = ACTIONS(323), + [anon_sym_fixed] = ACTIONS(323), + [anon_sym_const] = ACTIONS(323), + [sym_thisExpr] = ACTIONS(323), + [sym_outerExpr] = ACTIONS(323), + [sym_nullLiteralExpr] = ACTIONS(323), + [sym_trueLiteralExpr] = ACTIONS(323), + [sym_falseLiteralExpr] = ACTIONS(323), + [sym_intLiteralExpr] = ACTIONS(323), + [sym_floatLiteralExpr] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(323), + [anon_sym_POUND_DQUOTE] = ACTIONS(323), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(323), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(323), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(323), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(323), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(323), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(325), + [anon_sym_new] = ACTIONS(323), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_BANG_BANG] = ACTIONS(325), + [anon_sym_QMARK_QMARK] = ACTIONS(325), + [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_TILDE_SLASH] = ACTIONS(325), + [anon_sym_PERCENT] = ACTIONS(325), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_LT_EQ] = ACTIONS(325), + [anon_sym_GT_EQ] = ACTIONS(325), + [anon_sym_EQ_EQ] = ACTIONS(325), + [anon_sym_BANG_EQ] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_PIPE_GT] = ACTIONS(325), + [anon_sym_is] = ACTIONS(323), + [anon_sym_if] = ACTIONS(323), + [anon_sym_let] = ACTIONS(323), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_trace] = ACTIONS(323), + [anon_sym_read] = ACTIONS(323), + [anon_sym_read_QMARK] = ACTIONS(325), + [anon_sym_read_STAR] = ACTIONS(325), + [anon_sym_super] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(323), + [anon_sym_QMARK_DOT] = ACTIONS(325), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(327), - [sym__open_argument_paren] = ACTIONS(309), - [sym__binary_minus] = ACTIONS(327), + [sym__open_subscript_bracket] = ACTIONS(325), + [sym__open_argument_paren] = ACTIONS(325), + [sym__binary_minus] = ACTIONS(325), }, [STATE(31)] = { [sym_shebangComment] = STATE(31), [sym_lineComment] = STATE(31), + [sym_identifier] = ACTIONS(327), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(327), + [anon_sym_import] = ACTIONS(327), + [anon_sym_as] = ACTIONS(327), + [anon_sym_import_STAR] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_function] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_RBRACK] = ACTIONS(329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(329), + [anon_sym_for] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(329), + [anon_sym_RPAREN] = ACTIONS(329), + [anon_sym_when] = ACTIONS(327), + [anon_sym_else] = ACTIONS(327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_external] = ACTIONS(327), + [anon_sym_abstract] = ACTIONS(327), + [anon_sym_open] = ACTIONS(327), + [anon_sym_local] = ACTIONS(327), + [anon_sym_hidden] = ACTIONS(327), + [anon_sym_fixed] = ACTIONS(327), + [anon_sym_const] = ACTIONS(327), + [sym_thisExpr] = ACTIONS(327), + [sym_outerExpr] = ACTIONS(327), + [sym_nullLiteralExpr] = ACTIONS(327), + [sym_trueLiteralExpr] = ACTIONS(327), + [sym_falseLiteralExpr] = ACTIONS(327), + [sym_intLiteralExpr] = ACTIONS(327), + [sym_floatLiteralExpr] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_POUND_DQUOTE] = ACTIONS(327), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(327), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(327), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(327), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(327), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(329), + [anon_sym_new] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_BANG_BANG] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(327), + [anon_sym_TILDE_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_PIPE_GT] = ACTIONS(329), + [anon_sym_is] = ACTIONS(327), + [anon_sym_if] = ACTIONS(327), + [anon_sym_let] = ACTIONS(327), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_trace] = ACTIONS(327), + [anon_sym_read] = ACTIONS(327), + [anon_sym_read_QMARK] = ACTIONS(329), + [anon_sym_read_STAR] = ACTIONS(329), + [anon_sym_super] = ACTIONS(327), + [anon_sym_DOT] = ACTIONS(327), + [anon_sym_QMARK_DOT] = ACTIONS(329), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(329), + [sym__open_argument_paren] = ACTIONS(315), + [sym__binary_minus] = ACTIONS(329), + }, + [STATE(32)] = { + [sym_shebangComment] = STATE(32), + [sym_lineComment] = STATE(32), [sym_identifier] = ACTIONS(331), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(331), @@ -9657,9 +9854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(333), [sym__binary_minus] = ACTIONS(333), }, - [STATE(32)] = { - [sym_shebangComment] = STATE(32), - [sym_lineComment] = STATE(32), + [STATE(33)] = { + [sym_shebangComment] = STATE(33), + [sym_lineComment] = STATE(33), [sym_identifier] = ACTIONS(335), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(335), @@ -9679,8 +9876,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(335), [anon_sym_DOT_DOT_DOT] = ACTIONS(335), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(337), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(335), [anon_sym_LT] = ACTIONS(335), [anon_sym_GT] = ACTIONS(335), @@ -9744,12 +9941,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(337), - [sym__open_argument_paren] = ACTIONS(309), + [sym__open_argument_paren] = ACTIONS(315), [sym__binary_minus] = ACTIONS(337), }, - [STATE(33)] = { - [sym_shebangComment] = STATE(33), - [sym_lineComment] = STATE(33), + [STATE(34)] = { + [sym_shebangComment] = STATE(34), + [sym_lineComment] = STATE(34), [sym_identifier] = ACTIONS(339), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(339), @@ -9837,9 +10034,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(341), [sym__binary_minus] = ACTIONS(341), }, - [STATE(34)] = { - [sym_shebangComment] = STATE(34), - [sym_lineComment] = STATE(34), + [STATE(35)] = { + [sym_shebangComment] = STATE(35), + [sym_lineComment] = STATE(35), [sym_identifier] = ACTIONS(343), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(343), @@ -9859,8 +10056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(343), [anon_sym_DOT_DOT_DOT] = ACTIONS(343), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(343), [anon_sym_LT] = ACTIONS(343), [anon_sym_GT] = ACTIONS(343), @@ -9924,99 +10121,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(345), - [sym__open_argument_paren] = ACTIONS(309), + [sym__open_argument_paren] = ACTIONS(315), [sym__binary_minus] = ACTIONS(345), }, - [STATE(35)] = { - [sym_shebangComment] = STATE(35), - [sym_lineComment] = STATE(35), - [sym_identifier] = ACTIONS(298), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(298), - [anon_sym_import] = ACTIONS(298), - [anon_sym_as] = ACTIONS(298), - [anon_sym_import_STAR] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_function] = ACTIONS(298), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_RBRACK] = ACTIONS(300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(300), - [anon_sym_for] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_RPAREN] = ACTIONS(300), - [anon_sym_when] = ACTIONS(298), - [anon_sym_else] = ACTIONS(298), - [anon_sym_DOT_DOT_DOT] = ACTIONS(298), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(300), - [anon_sym_QMARK] = ACTIONS(298), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(298), - [anon_sym_LT] = ACTIONS(298), - [anon_sym_GT] = ACTIONS(298), - [anon_sym_external] = ACTIONS(298), - [anon_sym_abstract] = ACTIONS(298), - [anon_sym_open] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_hidden] = ACTIONS(298), - [anon_sym_fixed] = ACTIONS(298), - [anon_sym_const] = ACTIONS(298), - [sym_thisExpr] = ACTIONS(298), - [sym_outerExpr] = ACTIONS(298), - [sym_nullLiteralExpr] = ACTIONS(298), - [sym_trueLiteralExpr] = ACTIONS(298), - [sym_falseLiteralExpr] = ACTIONS(298), - [sym_intLiteralExpr] = ACTIONS(298), - [sym_floatLiteralExpr] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_new] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_BANG] = ACTIONS(298), - [anon_sym_BANG_BANG] = ACTIONS(300), - [anon_sym_QMARK_QMARK] = ACTIONS(300), - [anon_sym_STAR_STAR] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(298), - [anon_sym_TILDE_SLASH] = ACTIONS(300), - [anon_sym_PERCENT] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(300), - [anon_sym_BANG_EQ] = ACTIONS(300), - [anon_sym_AMP_AMP] = ACTIONS(300), - [anon_sym_PIPE_PIPE] = ACTIONS(300), - [anon_sym_PIPE_GT] = ACTIONS(300), - [anon_sym_is] = ACTIONS(298), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(298), - [anon_sym_throw] = ACTIONS(298), - [anon_sym_trace] = ACTIONS(298), - [anon_sym_read] = ACTIONS(298), - [anon_sym_read_QMARK] = ACTIONS(300), - [anon_sym_read_STAR] = ACTIONS(300), - [anon_sym_super] = ACTIONS(298), - [anon_sym_DOT] = ACTIONS(298), - [anon_sym_QMARK_DOT] = ACTIONS(300), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(300), - [sym__open_argument_paren] = ACTIONS(300), - [sym__binary_minus] = ACTIONS(300), - }, [STATE(36)] = { [sym_shebangComment] = STATE(36), [sym_lineComment] = STATE(36), @@ -10104,7 +10211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(349), - [sym__open_argument_paren] = ACTIONS(349), + [sym__open_argument_paren] = ACTIONS(315), [sym__binary_minus] = ACTIONS(349), }, [STATE(37)] = { @@ -10399,8 +10506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(363), [anon_sym_DOT_DOT_DOT] = ACTIONS(363), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(363), [anon_sym_LT] = ACTIONS(363), [anon_sym_GT] = ACTIONS(363), @@ -10464,7 +10571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(365), - [sym__open_argument_paren] = ACTIONS(309), + [sym__open_argument_paren] = ACTIONS(365), [sym__binary_minus] = ACTIONS(365), }, [STATE(41)] = { @@ -10489,8 +10596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(367), [anon_sym_DOT_DOT_DOT] = ACTIONS(367), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(367), [anon_sym_STAR] = ACTIONS(367), [anon_sym_LT] = ACTIONS(367), [anon_sym_GT] = ACTIONS(367), @@ -10554,7 +10661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(369), - [sym__open_argument_paren] = ACTIONS(309), + [sym__open_argument_paren] = ACTIONS(369), [sym__binary_minus] = ACTIONS(369), }, [STATE(42)] = { @@ -10759,8 +10866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(379), [anon_sym_DOT_DOT_DOT] = ACTIONS(379), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(379), [anon_sym_LT] = ACTIONS(379), [anon_sym_GT] = ACTIONS(379), @@ -10824,12 +10931,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(381), - [sym__open_argument_paren] = ACTIONS(381), + [sym__open_argument_paren] = ACTIONS(315), [sym__binary_minus] = ACTIONS(381), }, [STATE(45)] = { [sym_shebangComment] = STATE(45), - [sym_argumentList] = STATE(86), [sym_lineComment] = STATE(45), [sym_identifier] = ACTIONS(383), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -10850,6 +10956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(383), [anon_sym_DOT_DOT_DOT] = ACTIONS(383), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LT] = ACTIONS(383), [anon_sym_GT] = ACTIONS(383), @@ -10913,12 +11021,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(385), - [sym__open_argument_paren] = ACTIONS(270), + [sym__open_argument_paren] = ACTIONS(315), [sym__binary_minus] = ACTIONS(385), }, [STATE(46)] = { [sym_shebangComment] = STATE(46), - [sym_objectBody] = STATE(50), [sym_lineComment] = STATE(46), [sym_identifier] = ACTIONS(387), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -10926,7 +11033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(387), [anon_sym_as] = ACTIONS(387), [anon_sym_import_STAR] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(391), [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_function] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(387), @@ -10940,6 +11046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(387), [anon_sym_DOT_DOT_DOT] = ACTIONS(387), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), [anon_sym_STAR] = ACTIONS(387), [anon_sym_LT] = ACTIONS(387), [anon_sym_GT] = ACTIONS(387), @@ -11003,12 +11111,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(389), + [sym__open_argument_paren] = ACTIONS(389), [sym__binary_minus] = ACTIONS(389), }, [STATE(47)] = { [sym_shebangComment] = STATE(47), - [sym_argumentList] = STATE(82), [sym_lineComment] = STATE(47), + [sym_identifier] = ACTIONS(391), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(391), + [anon_sym_import] = ACTIONS(391), + [anon_sym_as] = ACTIONS(391), + [anon_sym_import_STAR] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_function] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(393), + [anon_sym_for] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_when] = ACTIONS(391), + [anon_sym_else] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_external] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(391), + [anon_sym_open] = ACTIONS(391), + [anon_sym_local] = ACTIONS(391), + [anon_sym_hidden] = ACTIONS(391), + [anon_sym_fixed] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [sym_thisExpr] = ACTIONS(391), + [sym_outerExpr] = ACTIONS(391), + [sym_nullLiteralExpr] = ACTIONS(391), + [sym_trueLiteralExpr] = ACTIONS(391), + [sym_falseLiteralExpr] = ACTIONS(391), + [sym_intLiteralExpr] = ACTIONS(391), + [sym_floatLiteralExpr] = ACTIONS(393), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_POUND_DQUOTE] = ACTIONS(391), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(391), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(391), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(391), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(391), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(393), + [anon_sym_new] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_BANG_BANG] = ACTIONS(393), + [anon_sym_QMARK_QMARK] = ACTIONS(393), + [anon_sym_STAR_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_TILDE_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_PIPE_GT] = ACTIONS(393), + [anon_sym_is] = ACTIONS(391), + [anon_sym_if] = ACTIONS(391), + [anon_sym_let] = ACTIONS(391), + [anon_sym_throw] = ACTIONS(391), + [anon_sym_trace] = ACTIONS(391), + [anon_sym_read] = ACTIONS(391), + [anon_sym_read_QMARK] = ACTIONS(393), + [anon_sym_read_STAR] = ACTIONS(393), + [anon_sym_super] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_QMARK_DOT] = ACTIONS(393), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(393), + [sym__open_argument_paren] = ACTIONS(393), + [sym__binary_minus] = ACTIONS(393), + }, + [STATE(48)] = { + [sym_shebangComment] = STATE(48), + [sym_argumentList] = STATE(88), + [sym_lineComment] = STATE(48), + [sym_identifier] = ACTIONS(395), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(395), + [anon_sym_import] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_import_STAR] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_function] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(397), + [anon_sym_for] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_when] = ACTIONS(395), + [anon_sym_else] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_external] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_open] = ACTIONS(395), + [anon_sym_local] = ACTIONS(395), + [anon_sym_hidden] = ACTIONS(395), + [anon_sym_fixed] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [sym_thisExpr] = ACTIONS(395), + [sym_outerExpr] = ACTIONS(395), + [sym_nullLiteralExpr] = ACTIONS(395), + [sym_trueLiteralExpr] = ACTIONS(395), + [sym_falseLiteralExpr] = ACTIONS(395), + [sym_intLiteralExpr] = ACTIONS(395), + [sym_floatLiteralExpr] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND_DQUOTE] = ACTIONS(395), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(395), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(395), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(395), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(395), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(397), + [anon_sym_new] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_BANG_BANG] = ACTIONS(397), + [anon_sym_QMARK_QMARK] = ACTIONS(397), + [anon_sym_STAR_STAR] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_TILDE_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE_GT] = ACTIONS(397), + [anon_sym_is] = ACTIONS(395), + [anon_sym_if] = ACTIONS(395), + [anon_sym_let] = ACTIONS(395), + [anon_sym_throw] = ACTIONS(395), + [anon_sym_trace] = ACTIONS(395), + [anon_sym_read] = ACTIONS(395), + [anon_sym_read_QMARK] = ACTIONS(397), + [anon_sym_read_STAR] = ACTIONS(397), + [anon_sym_super] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_QMARK_DOT] = ACTIONS(397), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(397), + [sym__open_argument_paren] = ACTIONS(270), + [sym__binary_minus] = ACTIONS(397), + }, + [STATE(49)] = { + [sym_shebangComment] = STATE(49), + [sym_argumentList] = STATE(91), + [sym_lineComment] = STATE(49), + [sym_identifier] = ACTIONS(399), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(399), + [anon_sym_import] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_import_STAR] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_function] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(401), + [anon_sym_for] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_when] = ACTIONS(399), + [anon_sym_else] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_external] = ACTIONS(399), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_open] = ACTIONS(399), + [anon_sym_local] = ACTIONS(399), + [anon_sym_hidden] = ACTIONS(399), + [anon_sym_fixed] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [sym_thisExpr] = ACTIONS(399), + [sym_outerExpr] = ACTIONS(399), + [sym_nullLiteralExpr] = ACTIONS(399), + [sym_trueLiteralExpr] = ACTIONS(399), + [sym_falseLiteralExpr] = ACTIONS(399), + [sym_intLiteralExpr] = ACTIONS(399), + [sym_floatLiteralExpr] = ACTIONS(401), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_POUND_DQUOTE] = ACTIONS(399), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(399), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(399), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(399), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(399), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(399), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(401), + [anon_sym_new] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_BANG_BANG] = ACTIONS(401), + [anon_sym_QMARK_QMARK] = ACTIONS(401), + [anon_sym_STAR_STAR] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_TILDE_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_PIPE_GT] = ACTIONS(401), + [anon_sym_is] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_let] = ACTIONS(399), + [anon_sym_throw] = ACTIONS(399), + [anon_sym_trace] = ACTIONS(399), + [anon_sym_read] = ACTIONS(399), + [anon_sym_read_QMARK] = ACTIONS(401), + [anon_sym_read_STAR] = ACTIONS(401), + [anon_sym_super] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_QMARK_DOT] = ACTIONS(401), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(401), + [sym__open_argument_paren] = ACTIONS(270), + [sym__binary_minus] = ACTIONS(401), + }, + [STATE(50)] = { + [sym_shebangComment] = STATE(50), + [sym_argumentList] = STATE(62), + [sym_lineComment] = STATE(50), [sym_identifier] = ACTIONS(258), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(258), @@ -11094,358 +11471,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(270), [sym__binary_minus] = ACTIONS(260), }, - [STATE(48)] = { - [sym_shebangComment] = STATE(48), - [sym_argumentList] = STATE(83), - [sym_lineComment] = STATE(48), - [sym_identifier] = ACTIONS(393), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(393), - [anon_sym_import] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_import_STAR] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_function] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(395), - [anon_sym_for] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_COMMA] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_when] = ACTIONS(393), - [anon_sym_else] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_external] = ACTIONS(393), - [anon_sym_abstract] = ACTIONS(393), - [anon_sym_open] = ACTIONS(393), - [anon_sym_local] = ACTIONS(393), - [anon_sym_hidden] = ACTIONS(393), - [anon_sym_fixed] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [sym_thisExpr] = ACTIONS(393), - [sym_outerExpr] = ACTIONS(393), - [sym_nullLiteralExpr] = ACTIONS(393), - [sym_trueLiteralExpr] = ACTIONS(393), - [sym_falseLiteralExpr] = ACTIONS(393), - [sym_intLiteralExpr] = ACTIONS(393), - [sym_floatLiteralExpr] = ACTIONS(395), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_POUND_DQUOTE] = ACTIONS(393), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(393), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(393), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(393), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(393), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(395), - [anon_sym_new] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_BANG_BANG] = ACTIONS(395), - [anon_sym_QMARK_QMARK] = ACTIONS(395), - [anon_sym_STAR_STAR] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_TILDE_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE_GT] = ACTIONS(395), - [anon_sym_is] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_throw] = ACTIONS(393), - [anon_sym_trace] = ACTIONS(393), - [anon_sym_read] = ACTIONS(393), - [anon_sym_read_QMARK] = ACTIONS(395), - [anon_sym_read_STAR] = ACTIONS(395), - [anon_sym_super] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_QMARK_DOT] = ACTIONS(395), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(395), - [sym__open_argument_paren] = ACTIONS(270), - [sym__binary_minus] = ACTIONS(395), - }, - [STATE(49)] = { - [sym_shebangComment] = STATE(49), - [sym_lineComment] = STATE(49), - [sym_identifier] = ACTIONS(397), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(397), - [anon_sym_import] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_import_STAR] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_function] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_LBRACK_LBRACK] = ACTIONS(399), - [anon_sym_for] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_when] = ACTIONS(397), - [anon_sym_else] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_external] = ACTIONS(397), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_open] = ACTIONS(397), - [anon_sym_local] = ACTIONS(397), - [anon_sym_hidden] = ACTIONS(397), - [anon_sym_fixed] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [sym_thisExpr] = ACTIONS(397), - [sym_outerExpr] = ACTIONS(397), - [sym_nullLiteralExpr] = ACTIONS(397), - [sym_trueLiteralExpr] = ACTIONS(397), - [sym_falseLiteralExpr] = ACTIONS(397), - [sym_intLiteralExpr] = ACTIONS(397), - [sym_floatLiteralExpr] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_POUND_DQUOTE] = ACTIONS(397), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(397), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(397), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(397), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(397), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(399), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_BANG_BANG] = ACTIONS(399), - [anon_sym_QMARK_QMARK] = ACTIONS(399), - [anon_sym_STAR_STAR] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_TILDE_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE_GT] = ACTIONS(399), - [anon_sym_is] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_throw] = ACTIONS(397), - [anon_sym_trace] = ACTIONS(397), - [anon_sym_read] = ACTIONS(397), - [anon_sym_read_QMARK] = ACTIONS(399), - [anon_sym_read_STAR] = ACTIONS(399), - [anon_sym_super] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_QMARK_DOT] = ACTIONS(399), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(399), - [sym__binary_minus] = ACTIONS(399), - }, - [STATE(50)] = { - [sym_shebangComment] = STATE(50), - [sym_lineComment] = STATE(50), - [sym_identifier] = ACTIONS(401), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(401), - [anon_sym_import] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_import_STAR] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_function] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(403), - [anon_sym_for] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(403), - [anon_sym_when] = ACTIONS(401), - [anon_sym_else] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_external] = ACTIONS(401), - [anon_sym_abstract] = ACTIONS(401), - [anon_sym_open] = ACTIONS(401), - [anon_sym_local] = ACTIONS(401), - [anon_sym_hidden] = ACTIONS(401), - [anon_sym_fixed] = ACTIONS(401), - [anon_sym_const] = ACTIONS(401), - [sym_thisExpr] = ACTIONS(401), - [sym_outerExpr] = ACTIONS(401), - [sym_nullLiteralExpr] = ACTIONS(401), - [sym_trueLiteralExpr] = ACTIONS(401), - [sym_falseLiteralExpr] = ACTIONS(401), - [sym_intLiteralExpr] = ACTIONS(401), - [sym_floatLiteralExpr] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(401), - [anon_sym_POUND_DQUOTE] = ACTIONS(401), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(401), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(401), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(401), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(401), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), - [anon_sym_new] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_BANG_BANG] = ACTIONS(403), - [anon_sym_QMARK_QMARK] = ACTIONS(403), - [anon_sym_STAR_STAR] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_TILDE_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_LT_EQ] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(403), - [anon_sym_BANG_EQ] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE_GT] = ACTIONS(403), - [anon_sym_is] = ACTIONS(401), - [anon_sym_if] = ACTIONS(401), - [anon_sym_let] = ACTIONS(401), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_trace] = ACTIONS(401), - [anon_sym_read] = ACTIONS(401), - [anon_sym_read_QMARK] = ACTIONS(403), - [anon_sym_read_STAR] = ACTIONS(403), - [anon_sym_super] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_QMARK_DOT] = ACTIONS(403), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(403), - [sym__binary_minus] = ACTIONS(403), - }, [STATE(51)] = { [sym_shebangComment] = STATE(51), + [sym_objectBody] = STATE(57), [sym_lineComment] = STATE(51), - [sym_identifier] = ACTIONS(405), + [sym_identifier] = ACTIONS(403), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(405), - [anon_sym_import] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_import_STAR] = ACTIONS(407), + [anon_sym_module] = ACTIONS(403), + [anon_sym_import] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_import_STAR] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_function] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(407), - [anon_sym_for] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_when] = ACTIONS(405), - [anon_sym_else] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_external] = ACTIONS(405), - [anon_sym_abstract] = ACTIONS(405), - [anon_sym_open] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_hidden] = ACTIONS(405), - [anon_sym_fixed] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [sym_thisExpr] = ACTIONS(405), - [sym_outerExpr] = ACTIONS(405), - [sym_nullLiteralExpr] = ACTIONS(405), - [sym_trueLiteralExpr] = ACTIONS(405), - [sym_falseLiteralExpr] = ACTIONS(405), - [sym_intLiteralExpr] = ACTIONS(405), - [sym_floatLiteralExpr] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_new] = ACTIONS(405), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_BANG_BANG] = ACTIONS(407), - [anon_sym_QMARK_QMARK] = ACTIONS(407), - [anon_sym_STAR_STAR] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_TILDE_SLASH] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_LT_EQ] = ACTIONS(407), - [anon_sym_GT_EQ] = ACTIONS(407), - [anon_sym_EQ_EQ] = ACTIONS(407), - [anon_sym_BANG_EQ] = ACTIONS(407), - [anon_sym_AMP_AMP] = ACTIONS(407), - [anon_sym_PIPE_PIPE] = ACTIONS(407), - [anon_sym_PIPE_GT] = ACTIONS(407), - [anon_sym_is] = ACTIONS(405), - [anon_sym_if] = ACTIONS(405), - [anon_sym_let] = ACTIONS(405), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_trace] = ACTIONS(405), - [anon_sym_read] = ACTIONS(405), - [anon_sym_read_QMARK] = ACTIONS(407), - [anon_sym_read_STAR] = ACTIONS(407), - [anon_sym_super] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(405), - [anon_sym_QMARK_DOT] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_function] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(405), + [anon_sym_for] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_when] = ACTIONS(403), + [anon_sym_else] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_external] = ACTIONS(403), + [anon_sym_abstract] = ACTIONS(403), + [anon_sym_open] = ACTIONS(403), + [anon_sym_local] = ACTIONS(403), + [anon_sym_hidden] = ACTIONS(403), + [anon_sym_fixed] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [sym_thisExpr] = ACTIONS(403), + [sym_outerExpr] = ACTIONS(403), + [sym_nullLiteralExpr] = ACTIONS(403), + [sym_trueLiteralExpr] = ACTIONS(403), + [sym_falseLiteralExpr] = ACTIONS(403), + [sym_intLiteralExpr] = ACTIONS(403), + [sym_floatLiteralExpr] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_new] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG_BANG] = ACTIONS(405), + [anon_sym_QMARK_QMARK] = ACTIONS(405), + [anon_sym_STAR_STAR] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_TILDE_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_PIPE_GT] = ACTIONS(405), + [anon_sym_is] = ACTIONS(403), + [anon_sym_if] = ACTIONS(403), + [anon_sym_let] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(403), + [anon_sym_trace] = ACTIONS(403), + [anon_sym_read] = ACTIONS(403), + [anon_sym_read_QMARK] = ACTIONS(405), + [anon_sym_read_STAR] = ACTIONS(405), + [anon_sym_super] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(405), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(407), - [sym__binary_minus] = ACTIONS(407), + [sym__open_subscript_bracket] = ACTIONS(405), + [sym__binary_minus] = ACTIONS(405), }, [STATE(52)] = { [sym_shebangComment] = STATE(52), @@ -11808,6 +11921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(425), [anon_sym_as] = ACTIONS(425), [anon_sym_import_STAR] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_function] = ACTIONS(425), [anon_sym_LBRACK] = ACTIONS(425), @@ -11893,24 +12007,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(429), [anon_sym_import] = ACTIONS(429), - [anon_sym_as] = ACTIONS(431), - [anon_sym_import_STAR] = ACTIONS(433), - [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_as] = ACTIONS(429), + [anon_sym_import_STAR] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_function] = ACTIONS(429), [anon_sym_LBRACK] = ACTIONS(429), - [anon_sym_RBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(433), + [anon_sym_RBRACK] = ACTIONS(431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(431), [anon_sym_for] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(433), - [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_when] = ACTIONS(429), [anon_sym_else] = ACTIONS(429), [anon_sym_DOT_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), [anon_sym_external] = ACTIONS(429), [anon_sym_abstract] = ACTIONS(429), [anon_sym_open] = ACTIONS(429), @@ -11924,7 +12039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_trueLiteralExpr] = ACTIONS(429), [sym_falseLiteralExpr] = ACTIONS(429), [sym_intLiteralExpr] = ACTIONS(429), - [sym_floatLiteralExpr] = ACTIONS(433), + [sym_floatLiteralExpr] = ACTIONS(431), [anon_sym_DQUOTE] = ACTIONS(429), [anon_sym_POUND_DQUOTE] = ACTIONS(429), [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(429), @@ -11932,311 +12047,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), [anon_sym_new] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), [anon_sym_BANG] = ACTIONS(429), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(431), + [anon_sym_QMARK_QMARK] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_TILDE_SLASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE_GT] = ACTIONS(431), + [anon_sym_is] = ACTIONS(429), [anon_sym_if] = ACTIONS(429), [anon_sym_let] = ACTIONS(429), [anon_sym_throw] = ACTIONS(429), [anon_sym_trace] = ACTIONS(429), [anon_sym_read] = ACTIONS(429), - [anon_sym_read_QMARK] = ACTIONS(433), - [anon_sym_read_STAR] = ACTIONS(433), + [anon_sym_read_QMARK] = ACTIONS(431), + [anon_sym_read_STAR] = ACTIONS(431), [anon_sym_super] = ACTIONS(429), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_QMARK_DOT] = ACTIONS(431), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(431), + [sym__binary_minus] = ACTIONS(431), }, [STATE(58)] = { [sym_shebangComment] = STATE(58), [sym_lineComment] = STATE(58), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(433), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(467), - [anon_sym_import] = ACTIONS(467), - [anon_sym_as] = ACTIONS(431), - [anon_sym_import_STAR] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_RBRACK] = ACTIONS(469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(469), - [anon_sym_for] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_COMMA] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(469), - [anon_sym_when] = ACTIONS(467), - [anon_sym_else] = ACTIONS(467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(467), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_external] = ACTIONS(467), - [anon_sym_abstract] = ACTIONS(467), - [anon_sym_open] = ACTIONS(467), - [anon_sym_local] = ACTIONS(467), - [anon_sym_hidden] = ACTIONS(467), - [anon_sym_fixed] = ACTIONS(467), - [anon_sym_const] = ACTIONS(467), - [sym_thisExpr] = ACTIONS(467), - [sym_outerExpr] = ACTIONS(467), - [sym_nullLiteralExpr] = ACTIONS(467), - [sym_trueLiteralExpr] = ACTIONS(467), - [sym_falseLiteralExpr] = ACTIONS(467), - [sym_intLiteralExpr] = ACTIONS(467), - [sym_floatLiteralExpr] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_new] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(467), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), - [anon_sym_if] = ACTIONS(467), - [anon_sym_let] = ACTIONS(467), - [anon_sym_throw] = ACTIONS(467), - [anon_sym_trace] = ACTIONS(467), - [anon_sym_read] = ACTIONS(467), - [anon_sym_read_QMARK] = ACTIONS(469), - [anon_sym_read_STAR] = ACTIONS(469), - [anon_sym_super] = ACTIONS(467), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_module] = ACTIONS(433), + [anon_sym_import] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_import_STAR] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_function] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_RBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(435), + [anon_sym_for] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_when] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_external] = ACTIONS(433), + [anon_sym_abstract] = ACTIONS(433), + [anon_sym_open] = ACTIONS(433), + [anon_sym_local] = ACTIONS(433), + [anon_sym_hidden] = ACTIONS(433), + [anon_sym_fixed] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [sym_thisExpr] = ACTIONS(433), + [sym_outerExpr] = ACTIONS(433), + [sym_nullLiteralExpr] = ACTIONS(433), + [sym_trueLiteralExpr] = ACTIONS(433), + [sym_falseLiteralExpr] = ACTIONS(433), + [sym_intLiteralExpr] = ACTIONS(433), + [sym_floatLiteralExpr] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_new] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_BANG_BANG] = ACTIONS(435), + [anon_sym_QMARK_QMARK] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_TILDE_SLASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE_GT] = ACTIONS(435), + [anon_sym_is] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_let] = ACTIONS(433), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_trace] = ACTIONS(433), + [anon_sym_read] = ACTIONS(433), + [anon_sym_read_QMARK] = ACTIONS(435), + [anon_sym_read_STAR] = ACTIONS(435), + [anon_sym_super] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(433), + [anon_sym_QMARK_DOT] = ACTIONS(435), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(435), + [sym__binary_minus] = ACTIONS(435), }, [STATE(59)] = { [sym_shebangComment] = STATE(59), [sym_lineComment] = STATE(59), - [sym_identifier] = ACTIONS(387), + [sym_identifier] = ACTIONS(437), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(387), - [anon_sym_import] = ACTIONS(387), - [anon_sym_as] = ACTIONS(387), - [anon_sym_import_STAR] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_function] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(389), - [anon_sym_for] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_when] = ACTIONS(387), - [anon_sym_else] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_external] = ACTIONS(387), - [anon_sym_abstract] = ACTIONS(387), - [anon_sym_open] = ACTIONS(387), - [anon_sym_local] = ACTIONS(387), - [anon_sym_hidden] = ACTIONS(387), - [anon_sym_fixed] = ACTIONS(387), - [anon_sym_const] = ACTIONS(387), - [sym_thisExpr] = ACTIONS(387), - [sym_outerExpr] = ACTIONS(387), - [sym_nullLiteralExpr] = ACTIONS(387), - [sym_trueLiteralExpr] = ACTIONS(387), - [sym_falseLiteralExpr] = ACTIONS(387), - [sym_intLiteralExpr] = ACTIONS(387), - [sym_floatLiteralExpr] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_POUND_DQUOTE] = ACTIONS(387), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(387), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(387), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(387), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(387), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_BANG_BANG] = ACTIONS(389), - [anon_sym_QMARK_QMARK] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_TILDE_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_PIPE_GT] = ACTIONS(389), - [anon_sym_is] = ACTIONS(387), - [anon_sym_if] = ACTIONS(387), - [anon_sym_let] = ACTIONS(387), - [anon_sym_throw] = ACTIONS(387), - [anon_sym_trace] = ACTIONS(387), - [anon_sym_read] = ACTIONS(387), - [anon_sym_read_QMARK] = ACTIONS(389), - [anon_sym_read_STAR] = ACTIONS(389), - [anon_sym_super] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_QMARK_DOT] = ACTIONS(389), + [anon_sym_module] = ACTIONS(437), + [anon_sym_import] = ACTIONS(437), + [anon_sym_as] = ACTIONS(439), + [anon_sym_import_STAR] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_function] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_RBRACK] = ACTIONS(441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(441), + [anon_sym_for] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_when] = ACTIONS(437), + [anon_sym_else] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_external] = ACTIONS(437), + [anon_sym_abstract] = ACTIONS(437), + [anon_sym_open] = ACTIONS(437), + [anon_sym_local] = ACTIONS(437), + [anon_sym_hidden] = ACTIONS(437), + [anon_sym_fixed] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [sym_thisExpr] = ACTIONS(437), + [sym_outerExpr] = ACTIONS(437), + [sym_nullLiteralExpr] = ACTIONS(437), + [sym_trueLiteralExpr] = ACTIONS(437), + [sym_falseLiteralExpr] = ACTIONS(437), + [sym_intLiteralExpr] = ACTIONS(437), + [sym_floatLiteralExpr] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_new] = ACTIONS(437), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), + [anon_sym_if] = ACTIONS(437), + [anon_sym_let] = ACTIONS(437), + [anon_sym_throw] = ACTIONS(437), + [anon_sym_trace] = ACTIONS(437), + [anon_sym_read] = ACTIONS(437), + [anon_sym_read_QMARK] = ACTIONS(441), + [anon_sym_read_STAR] = ACTIONS(441), + [anon_sym_super] = ACTIONS(437), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(389), - [sym__binary_minus] = ACTIONS(389), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(60)] = { [sym_shebangComment] = STATE(60), [sym_lineComment] = STATE(60), - [sym_identifier] = ACTIONS(471), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(471), - [anon_sym_import] = ACTIONS(471), - [anon_sym_as] = ACTIONS(471), - [anon_sym_import_STAR] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_function] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(473), - [anon_sym_for] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_COMMA] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_when] = ACTIONS(471), - [anon_sym_else] = ACTIONS(471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(471), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_external] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_open] = ACTIONS(471), - [anon_sym_local] = ACTIONS(471), - [anon_sym_hidden] = ACTIONS(471), - [anon_sym_fixed] = ACTIONS(471), - [anon_sym_const] = ACTIONS(471), - [sym_thisExpr] = ACTIONS(471), - [sym_outerExpr] = ACTIONS(471), - [sym_nullLiteralExpr] = ACTIONS(471), - [sym_trueLiteralExpr] = ACTIONS(471), - [sym_falseLiteralExpr] = ACTIONS(471), - [sym_intLiteralExpr] = ACTIONS(471), - [sym_floatLiteralExpr] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(473), - [anon_sym_new] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_BANG_BANG] = ACTIONS(473), - [anon_sym_QMARK_QMARK] = ACTIONS(473), - [anon_sym_STAR_STAR] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_TILDE_SLASH] = ACTIONS(473), - [anon_sym_PERCENT] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_LT_EQ] = ACTIONS(473), - [anon_sym_GT_EQ] = ACTIONS(473), - [anon_sym_EQ_EQ] = ACTIONS(473), - [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(473), - [anon_sym_PIPE_PIPE] = ACTIONS(473), - [anon_sym_PIPE_GT] = ACTIONS(473), - [anon_sym_is] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_let] = ACTIONS(471), - [anon_sym_throw] = ACTIONS(471), - [anon_sym_trace] = ACTIONS(471), - [anon_sym_read] = ACTIONS(471), - [anon_sym_read_QMARK] = ACTIONS(473), - [anon_sym_read_STAR] = ACTIONS(473), - [anon_sym_super] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_QMARK_DOT] = ACTIONS(473), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(473), - [sym__binary_minus] = ACTIONS(473), - }, - [STATE(61)] = { - [sym_shebangComment] = STATE(61), - [sym_lineComment] = STATE(61), [sym_identifier] = ACTIONS(475), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(475), @@ -12321,14 +12350,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_subscript_bracket] = ACTIONS(477), [sym__binary_minus] = ACTIONS(477), }, - [STATE(62)] = { - [sym_shebangComment] = STATE(62), - [sym_lineComment] = STATE(62), + [STATE(61)] = { + [sym_shebangComment] = STATE(61), + [sym_lineComment] = STATE(61), [sym_identifier] = ACTIONS(479), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(479), [anon_sym_import] = ACTIONS(479), - [anon_sym_as] = ACTIONS(479), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_function] = ACTIONS(479), @@ -12343,9 +12372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(479), [anon_sym_DOT_DOT_DOT] = ACTIONS(479), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(479), [anon_sym_abstract] = ACTIONS(479), [anon_sym_open] = ACTIONS(479), @@ -12377,21 +12406,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(479), [anon_sym_DASH] = ACTIONS(481), [anon_sym_BANG] = ACTIONS(479), - [anon_sym_BANG_BANG] = ACTIONS(481), - [anon_sym_QMARK_QMARK] = ACTIONS(481), - [anon_sym_STAR_STAR] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_TILDE_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE_GT] = ACTIONS(481), - [anon_sym_is] = ACTIONS(479), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(479), [anon_sym_let] = ACTIONS(479), [anon_sym_throw] = ACTIONS(479), @@ -12400,17 +12429,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(481), [anon_sym_read_STAR] = ACTIONS(481), [anon_sym_super] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(479), - [anon_sym_QMARK_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(481), - [sym__binary_minus] = ACTIONS(481), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, - [STATE(63)] = { - [sym_shebangComment] = STATE(63), - [sym_lineComment] = STATE(63), + [STATE(62)] = { + [sym_shebangComment] = STATE(62), + [sym_lineComment] = STATE(62), [sym_identifier] = ACTIONS(483), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(483), @@ -12495,6 +12524,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_subscript_bracket] = ACTIONS(485), [sym__binary_minus] = ACTIONS(485), }, + [STATE(63)] = { + [sym_shebangComment] = STATE(63), + [sym_lineComment] = STATE(63), + [sym_identifier] = ACTIONS(403), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(403), + [anon_sym_import] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_import_STAR] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_function] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(405), + [anon_sym_for] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_when] = ACTIONS(403), + [anon_sym_else] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_external] = ACTIONS(403), + [anon_sym_abstract] = ACTIONS(403), + [anon_sym_open] = ACTIONS(403), + [anon_sym_local] = ACTIONS(403), + [anon_sym_hidden] = ACTIONS(403), + [anon_sym_fixed] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [sym_thisExpr] = ACTIONS(403), + [sym_outerExpr] = ACTIONS(403), + [sym_nullLiteralExpr] = ACTIONS(403), + [sym_trueLiteralExpr] = ACTIONS(403), + [sym_falseLiteralExpr] = ACTIONS(403), + [sym_intLiteralExpr] = ACTIONS(403), + [sym_floatLiteralExpr] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(403), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(405), + [anon_sym_new] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG_BANG] = ACTIONS(405), + [anon_sym_QMARK_QMARK] = ACTIONS(405), + [anon_sym_STAR_STAR] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_TILDE_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_PIPE_GT] = ACTIONS(405), + [anon_sym_is] = ACTIONS(403), + [anon_sym_if] = ACTIONS(403), + [anon_sym_let] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(403), + [anon_sym_trace] = ACTIONS(403), + [anon_sym_read] = ACTIONS(403), + [anon_sym_read_QMARK] = ACTIONS(405), + [anon_sym_read_STAR] = ACTIONS(405), + [anon_sym_super] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_QMARK_DOT] = ACTIONS(405), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(405), + [sym__binary_minus] = ACTIONS(405), + }, [STATE(64)] = { [sym_shebangComment] = STATE(64), [sym_lineComment] = STATE(64), @@ -12763,7 +12879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(499), [anon_sym_import] = ACTIONS(499), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(499), [anon_sym_import_STAR] = ACTIONS(501), [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_function] = ACTIONS(499), @@ -12778,9 +12894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(499), [anon_sym_DOT_DOT_DOT] = ACTIONS(499), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), [anon_sym_external] = ACTIONS(499), [anon_sym_abstract] = ACTIONS(499), [anon_sym_open] = ACTIONS(499), @@ -12812,21 +12928,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(499), [anon_sym_DASH] = ACTIONS(501), [anon_sym_BANG] = ACTIONS(499), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(501), + [anon_sym_QMARK_QMARK] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_TILDE_SLASH] = ACTIONS(501), + [anon_sym_PERCENT] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_LT_EQ] = ACTIONS(501), + [anon_sym_GT_EQ] = ACTIONS(501), + [anon_sym_EQ_EQ] = ACTIONS(501), + [anon_sym_BANG_EQ] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE_GT] = ACTIONS(501), + [anon_sym_is] = ACTIONS(499), [anon_sym_if] = ACTIONS(499), [anon_sym_let] = ACTIONS(499), [anon_sym_throw] = ACTIONS(499), @@ -12835,13 +12951,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(501), [anon_sym_read_STAR] = ACTIONS(501), [anon_sym_super] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(499), + [anon_sym_QMARK_DOT] = ACTIONS(501), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(501), + [sym__binary_minus] = ACTIONS(501), }, [STATE(68)] = { [sym_shebangComment] = STATE(68), @@ -12865,7 +12981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(503), [anon_sym_DOT_DOT_DOT] = ACTIONS(503), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(503), [anon_sym_LT] = ACTIONS(503), [anon_sym_GT] = ACTIONS(503), [anon_sym_external] = ACTIONS(503), @@ -12899,12 +13015,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(503), [anon_sym_DASH] = ACTIONS(505), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(505), [anon_sym_QMARK_QMARK] = ACTIONS(505), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_STAR_STAR] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_TILDE_SLASH] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), [anon_sym_PLUS] = ACTIONS(505), [anon_sym_LT_EQ] = ACTIONS(505), [anon_sym_GT_EQ] = ACTIONS(505), @@ -12922,12 +13038,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(505), [anon_sym_read_STAR] = ACTIONS(505), [anon_sym_super] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_QMARK_DOT] = ACTIONS(505), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), + [sym__open_subscript_bracket] = ACTIONS(505), [sym__binary_minus] = ACTIONS(505), }, [STATE(69)] = { @@ -12986,7 +13102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(507), [anon_sym_DASH] = ACTIONS(509), [anon_sym_BANG] = ACTIONS(507), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(509), [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_SLASH] = ACTIONS(507), @@ -13009,12 +13125,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(509), [anon_sym_read_STAR] = ACTIONS(509), [anon_sym_super] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_QMARK_DOT] = ACTIONS(509), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), + [sym__open_subscript_bracket] = ACTIONS(509), [sym__binary_minus] = ACTIONS(509), }, [STATE(70)] = { @@ -13073,9 +13189,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(511), [anon_sym_DASH] = ACTIONS(513), [anon_sym_BANG] = ACTIONS(511), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(513), [anon_sym_QMARK_QMARK] = ACTIONS(513), - [anon_sym_STAR_STAR] = ACTIONS(443), + [anon_sym_STAR_STAR] = ACTIONS(513), [anon_sym_SLASH] = ACTIONS(511), [anon_sym_TILDE_SLASH] = ACTIONS(513), [anon_sym_PERCENT] = ACTIONS(513), @@ -13096,12 +13212,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(513), [anon_sym_read_STAR] = ACTIONS(513), [anon_sym_super] = ACTIONS(511), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(511), + [anon_sym_QMARK_DOT] = ACTIONS(513), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), + [sym__open_subscript_bracket] = ACTIONS(513), [sym__binary_minus] = ACTIONS(513), }, [STATE(71)] = { @@ -13111,7 +13227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(515), [anon_sym_import] = ACTIONS(515), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(517), [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_function] = ACTIONS(515), @@ -13126,9 +13242,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(515), [anon_sym_DOT_DOT_DOT] = ACTIONS(515), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(515), [anon_sym_abstract] = ACTIONS(515), [anon_sym_open] = ACTIONS(515), @@ -13160,21 +13276,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(515), [anon_sym_DASH] = ACTIONS(517), [anon_sym_BANG] = ACTIONS(515), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(515), [anon_sym_let] = ACTIONS(515), [anon_sym_throw] = ACTIONS(515), @@ -13183,13 +13299,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(517), [anon_sym_read_STAR] = ACTIONS(517), [anon_sym_super] = ACTIONS(515), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(72)] = { [sym_shebangComment] = STATE(72), @@ -13213,7 +13329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(519), [anon_sym_DOT_DOT_DOT] = ACTIONS(519), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(519), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LT] = ACTIONS(519), [anon_sym_GT] = ACTIONS(519), [anon_sym_external] = ACTIONS(519), @@ -13247,12 +13363,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(519), [anon_sym_DASH] = ACTIONS(521), [anon_sym_BANG] = ACTIONS(519), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(519), - [anon_sym_TILDE_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), [anon_sym_PLUS] = ACTIONS(521), [anon_sym_LT_EQ] = ACTIONS(521), [anon_sym_GT_EQ] = ACTIONS(521), @@ -13270,12 +13386,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(521), [anon_sym_read_STAR] = ACTIONS(521), [anon_sym_super] = ACTIONS(519), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), + [sym__open_subscript_bracket] = ACTIONS(473), [sym__binary_minus] = ACTIONS(521), }, [STATE(73)] = { @@ -13285,7 +13401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(523), [anon_sym_import] = ACTIONS(523), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(523), [anon_sym_import_STAR] = ACTIONS(525), [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_function] = ACTIONS(523), @@ -13300,9 +13416,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(523), [anon_sym_DOT_DOT_DOT] = ACTIONS(523), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), [anon_sym_external] = ACTIONS(523), [anon_sym_abstract] = ACTIONS(523), [anon_sym_open] = ACTIONS(523), @@ -13334,21 +13450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(523), [anon_sym_DASH] = ACTIONS(525), [anon_sym_BANG] = ACTIONS(523), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(525), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(525), + [anon_sym_SLASH] = ACTIONS(523), + [anon_sym_TILDE_SLASH] = ACTIONS(525), + [anon_sym_PERCENT] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), [anon_sym_EQ_EQ] = ACTIONS(525), [anon_sym_BANG_EQ] = ACTIONS(525), [anon_sym_AMP_AMP] = ACTIONS(525), [anon_sym_PIPE_PIPE] = ACTIONS(525), [anon_sym_PIPE_GT] = ACTIONS(525), - [anon_sym_is] = ACTIONS(459), + [anon_sym_is] = ACTIONS(523), [anon_sym_if] = ACTIONS(523), [anon_sym_let] = ACTIONS(523), [anon_sym_throw] = ACTIONS(523), @@ -13357,13 +13473,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(525), [anon_sym_read_STAR] = ACTIONS(525), [anon_sym_super] = ACTIONS(523), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(525), }, [STATE(74)] = { [sym_shebangComment] = STATE(74), @@ -13372,7 +13488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(527), [anon_sym_import] = ACTIONS(527), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(527), [anon_sym_import_STAR] = ACTIONS(529), [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_function] = ACTIONS(527), @@ -13387,9 +13503,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(527), [anon_sym_DOT_DOT_DOT] = ACTIONS(527), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), [anon_sym_external] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(527), [anon_sym_open] = ACTIONS(527), @@ -13421,21 +13537,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(527), [anon_sym_DASH] = ACTIONS(529), [anon_sym_BANG] = ACTIONS(527), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(529), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_TILDE_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_GT_EQ] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ] = ACTIONS(529), [anon_sym_AMP_AMP] = ACTIONS(529), [anon_sym_PIPE_PIPE] = ACTIONS(529), [anon_sym_PIPE_GT] = ACTIONS(529), - [anon_sym_is] = ACTIONS(459), + [anon_sym_is] = ACTIONS(527), [anon_sym_if] = ACTIONS(527), [anon_sym_let] = ACTIONS(527), [anon_sym_throw] = ACTIONS(527), @@ -13444,13 +13560,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(529), [anon_sym_read_STAR] = ACTIONS(529), [anon_sym_super] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(529), }, [STATE(75)] = { [sym_shebangComment] = STATE(75), @@ -13459,7 +13575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(531), [anon_sym_import] = ACTIONS(531), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(531), [anon_sym_import_STAR] = ACTIONS(533), [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_function] = ACTIONS(531), @@ -13474,9 +13590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(531), [anon_sym_DOT_DOT_DOT] = ACTIONS(531), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(531), [anon_sym_external] = ACTIONS(531), [anon_sym_abstract] = ACTIONS(531), [anon_sym_open] = ACTIONS(531), @@ -13508,21 +13624,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(531), [anon_sym_DASH] = ACTIONS(533), [anon_sym_BANG] = ACTIONS(531), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(533), [anon_sym_QMARK_QMARK] = ACTIONS(533), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_STAR_STAR] = ACTIONS(533), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_TILDE_SLASH] = ACTIONS(533), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(533), [anon_sym_PIPE_PIPE] = ACTIONS(533), [anon_sym_PIPE_GT] = ACTIONS(533), - [anon_sym_is] = ACTIONS(459), + [anon_sym_is] = ACTIONS(531), [anon_sym_if] = ACTIONS(531), [anon_sym_let] = ACTIONS(531), [anon_sym_throw] = ACTIONS(531), @@ -13531,13 +13647,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(533), [anon_sym_read_STAR] = ACTIONS(533), [anon_sym_super] = ACTIONS(531), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(533), + [sym__binary_minus] = ACTIONS(533), }, [STATE(76)] = { [sym_shebangComment] = STATE(76), @@ -13546,7 +13662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(535), [anon_sym_import] = ACTIONS(535), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(537), [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_function] = ACTIONS(535), @@ -13561,9 +13677,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(535), [anon_sym_DOT_DOT_DOT] = ACTIONS(535), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(535), [anon_sym_abstract] = ACTIONS(535), [anon_sym_open] = ACTIONS(535), @@ -13595,21 +13711,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(535), [anon_sym_DASH] = ACTIONS(537), [anon_sym_BANG] = ACTIONS(535), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(537), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(537), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(535), [anon_sym_let] = ACTIONS(535), [anon_sym_throw] = ACTIONS(535), @@ -13618,13 +13734,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(537), [anon_sym_read_STAR] = ACTIONS(537), [anon_sym_super] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(77)] = { [sym_shebangComment] = STATE(77), @@ -13682,9 +13798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(539), [anon_sym_DASH] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(539), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(541), - [anon_sym_STAR_STAR] = ACTIONS(541), + [anon_sym_STAR_STAR] = ACTIONS(451), [anon_sym_SLASH] = ACTIONS(539), [anon_sym_TILDE_SLASH] = ACTIONS(541), [anon_sym_PERCENT] = ACTIONS(541), @@ -13705,12 +13821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(541), [anon_sym_read_STAR] = ACTIONS(541), [anon_sym_super] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), + [sym__open_subscript_bracket] = ACTIONS(473), [sym__binary_minus] = ACTIONS(541), }, [STATE(78)] = { @@ -13720,7 +13836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(543), [anon_sym_import] = ACTIONS(543), - [anon_sym_as] = ACTIONS(543), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(545), [anon_sym_RBRACE] = ACTIONS(545), [anon_sym_function] = ACTIONS(543), @@ -13735,9 +13851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(543), [anon_sym_DOT_DOT_DOT] = ACTIONS(543), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(543), [anon_sym_abstract] = ACTIONS(543), [anon_sym_open] = ACTIONS(543), @@ -13769,21 +13885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), [anon_sym_BANG] = ACTIONS(543), - [anon_sym_BANG_BANG] = ACTIONS(545), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(545), - [anon_sym_STAR_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_TILDE_SLASH] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(545), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), [anon_sym_EQ_EQ] = ACTIONS(545), [anon_sym_BANG_EQ] = ACTIONS(545), [anon_sym_AMP_AMP] = ACTIONS(545), [anon_sym_PIPE_PIPE] = ACTIONS(545), [anon_sym_PIPE_GT] = ACTIONS(545), - [anon_sym_is] = ACTIONS(543), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(543), [anon_sym_let] = ACTIONS(543), [anon_sym_throw] = ACTIONS(543), @@ -13792,13 +13908,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(545), [anon_sym_read_STAR] = ACTIONS(545), [anon_sym_super] = ACTIONS(543), - [anon_sym_DOT] = ACTIONS(543), - [anon_sym_QMARK_DOT] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(545), - [sym__binary_minus] = ACTIONS(545), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(79)] = { [sym_shebangComment] = STATE(79), @@ -13807,7 +13923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(547), [anon_sym_import] = ACTIONS(547), - [anon_sym_as] = ACTIONS(547), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(549), [anon_sym_RBRACE] = ACTIONS(549), [anon_sym_function] = ACTIONS(547), @@ -13822,9 +13938,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(547), [anon_sym_DOT_DOT_DOT] = ACTIONS(547), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(547), [anon_sym_abstract] = ACTIONS(547), [anon_sym_open] = ACTIONS(547), @@ -13856,21 +13972,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(547), [anon_sym_DASH] = ACTIONS(549), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_BANG_BANG] = ACTIONS(549), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(549), - [anon_sym_STAR_STAR] = ACTIONS(549), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_TILDE_SLASH] = ACTIONS(549), - [anon_sym_PERCENT] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), [anon_sym_AMP_AMP] = ACTIONS(549), [anon_sym_PIPE_PIPE] = ACTIONS(549), [anon_sym_PIPE_GT] = ACTIONS(549), - [anon_sym_is] = ACTIONS(547), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(547), [anon_sym_let] = ACTIONS(547), [anon_sym_throw] = ACTIONS(547), @@ -13879,13 +13995,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(549), [anon_sym_read_STAR] = ACTIONS(549), [anon_sym_super] = ACTIONS(547), - [anon_sym_DOT] = ACTIONS(547), - [anon_sym_QMARK_DOT] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(549), - [sym__binary_minus] = ACTIONS(549), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(80)] = { [sym_shebangComment] = STATE(80), @@ -13894,7 +14010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(551), [anon_sym_import] = ACTIONS(551), - [anon_sym_as] = ACTIONS(551), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(553), [anon_sym_RBRACE] = ACTIONS(553), [anon_sym_function] = ACTIONS(551), @@ -13909,9 +14025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(551), [anon_sym_DOT_DOT_DOT] = ACTIONS(551), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(551), [anon_sym_abstract] = ACTIONS(551), [anon_sym_open] = ACTIONS(551), @@ -13943,21 +14059,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(551), [anon_sym_DASH] = ACTIONS(553), [anon_sym_BANG] = ACTIONS(551), - [anon_sym_BANG_BANG] = ACTIONS(553), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(553), - [anon_sym_STAR_STAR] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_TILDE_SLASH] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_LT_EQ] = ACTIONS(553), - [anon_sym_GT_EQ] = ACTIONS(553), - [anon_sym_EQ_EQ] = ACTIONS(553), - [anon_sym_BANG_EQ] = ACTIONS(553), - [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), [anon_sym_PIPE_PIPE] = ACTIONS(553), [anon_sym_PIPE_GT] = ACTIONS(553), - [anon_sym_is] = ACTIONS(551), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(551), [anon_sym_let] = ACTIONS(551), [anon_sym_throw] = ACTIONS(551), @@ -13966,13 +14082,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(553), [anon_sym_read_STAR] = ACTIONS(553), [anon_sym_super] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_QMARK_DOT] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(553), - [sym__binary_minus] = ACTIONS(553), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(81)] = { [sym_shebangComment] = STATE(81), @@ -13981,7 +14097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(555), [anon_sym_import] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(557), [anon_sym_RBRACE] = ACTIONS(557), [anon_sym_function] = ACTIONS(555), @@ -13996,9 +14112,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(555), [anon_sym_DOT_DOT_DOT] = ACTIONS(555), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(555), [anon_sym_abstract] = ACTIONS(555), [anon_sym_open] = ACTIONS(555), @@ -14030,21 +14146,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(555), [anon_sym_DASH] = ACTIONS(557), [anon_sym_BANG] = ACTIONS(555), - [anon_sym_BANG_BANG] = ACTIONS(557), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(557), - [anon_sym_STAR_STAR] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_TILDE_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), [anon_sym_PIPE_GT] = ACTIONS(557), - [anon_sym_is] = ACTIONS(555), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(555), [anon_sym_let] = ACTIONS(555), [anon_sym_throw] = ACTIONS(555), @@ -14053,13 +14169,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(557), [anon_sym_read_STAR] = ACTIONS(557), [anon_sym_super] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(557), - [sym__binary_minus] = ACTIONS(557), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(82)] = { [sym_shebangComment] = STATE(82), @@ -14117,7 +14233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(559), [anon_sym_DASH] = ACTIONS(561), [anon_sym_BANG] = ACTIONS(559), - [anon_sym_BANG_BANG] = ACTIONS(561), + [anon_sym_BANG_BANG] = ACTIONS(447), [anon_sym_QMARK_QMARK] = ACTIONS(561), [anon_sym_STAR_STAR] = ACTIONS(561), [anon_sym_SLASH] = ACTIONS(559), @@ -14140,12 +14256,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(561), [anon_sym_read_STAR] = ACTIONS(561), [anon_sym_super] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(561), + [sym__open_subscript_bracket] = ACTIONS(473), [sym__binary_minus] = ACTIONS(561), }, [STATE(83)] = { @@ -14605,7 +14721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(583), [anon_sym_DOT_DOT_DOT] = ACTIONS(583), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(583), [anon_sym_LT] = ACTIONS(583), [anon_sym_GT] = ACTIONS(583), [anon_sym_external] = ACTIONS(583), @@ -14639,13 +14755,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(583), [anon_sym_DASH] = ACTIONS(585), [anon_sym_BANG] = ACTIONS(583), - [anon_sym_BANG_BANG] = ACTIONS(439), + [anon_sym_BANG_BANG] = ACTIONS(585), [anon_sym_QMARK_QMARK] = ACTIONS(585), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR_STAR] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_TILDE_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_PLUS] = ACTIONS(585), [anon_sym_LT_EQ] = ACTIONS(585), [anon_sym_GT_EQ] = ACTIONS(585), [anon_sym_EQ_EQ] = ACTIONS(585), @@ -14662,13 +14778,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(585), [anon_sym_read_STAR] = ACTIONS(585), [anon_sym_super] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(583), + [anon_sym_QMARK_DOT] = ACTIONS(585), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(585), + [sym__binary_minus] = ACTIONS(585), }, [STATE(89)] = { [sym_shebangComment] = STATE(89), @@ -14677,20 +14793,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(587), [anon_sym_import] = ACTIONS(587), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(587), [anon_sym_import_STAR] = ACTIONS(589), [anon_sym_RBRACE] = ACTIONS(589), [anon_sym_function] = ACTIONS(587), [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_RBRACK] = ACTIONS(589), [anon_sym_LBRACK_LBRACK] = ACTIONS(589), [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(589), [anon_sym_when] = ACTIONS(587), + [anon_sym_else] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(587), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(587), [anon_sym_external] = ACTIONS(587), [anon_sym_abstract] = ACTIONS(587), [anon_sym_open] = ACTIONS(587), @@ -14722,21 +14842,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(589), [anon_sym_BANG] = ACTIONS(587), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(589), + [anon_sym_QMARK_QMARK] = ACTIONS(589), + [anon_sym_STAR_STAR] = ACTIONS(589), + [anon_sym_SLASH] = ACTIONS(587), + [anon_sym_TILDE_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_PIPE_GT] = ACTIONS(589), + [anon_sym_is] = ACTIONS(587), [anon_sym_if] = ACTIONS(587), [anon_sym_let] = ACTIONS(587), [anon_sym_throw] = ACTIONS(587), @@ -14745,13 +14865,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(589), [anon_sym_read_STAR] = ACTIONS(589), [anon_sym_super] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(587), + [anon_sym_QMARK_DOT] = ACTIONS(589), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(589), + [sym__binary_minus] = ACTIONS(589), }, [STATE(90)] = { [sym_shebangComment] = STATE(90), @@ -14760,20 +14880,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(591), [anon_sym_import] = ACTIONS(591), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(591), [anon_sym_import_STAR] = ACTIONS(593), [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_function] = ACTIONS(591), [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(593), [anon_sym_LBRACK_LBRACK] = ACTIONS(593), [anon_sym_for] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(593), [anon_sym_when] = ACTIONS(591), + [anon_sym_else] = ACTIONS(591), [anon_sym_DOT_DOT_DOT] = ACTIONS(591), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(591), [anon_sym_external] = ACTIONS(591), [anon_sym_abstract] = ACTIONS(591), [anon_sym_open] = ACTIONS(591), @@ -14805,21 +14929,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(591), [anon_sym_DASH] = ACTIONS(593), [anon_sym_BANG] = ACTIONS(591), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(593), + [anon_sym_QMARK_QMARK] = ACTIONS(593), + [anon_sym_STAR_STAR] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(591), + [anon_sym_TILDE_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_PIPE_GT] = ACTIONS(593), + [anon_sym_is] = ACTIONS(591), [anon_sym_if] = ACTIONS(591), [anon_sym_let] = ACTIONS(591), [anon_sym_throw] = ACTIONS(591), @@ -14828,13 +14952,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(593), [anon_sym_read_STAR] = ACTIONS(593), [anon_sym_super] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(591), + [anon_sym_QMARK_DOT] = ACTIONS(593), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(593), + [sym__binary_minus] = ACTIONS(593), }, [STATE(91)] = { [sym_shebangComment] = STATE(91), @@ -14843,20 +14967,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(595), [anon_sym_import] = ACTIONS(595), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(595), [anon_sym_import_STAR] = ACTIONS(597), [anon_sym_RBRACE] = ACTIONS(597), [anon_sym_function] = ACTIONS(595), [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(597), [anon_sym_LBRACK_LBRACK] = ACTIONS(597), [anon_sym_for] = ACTIONS(595), [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(597), [anon_sym_when] = ACTIONS(595), + [anon_sym_else] = ACTIONS(595), [anon_sym_DOT_DOT_DOT] = ACTIONS(595), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), [anon_sym_external] = ACTIONS(595), [anon_sym_abstract] = ACTIONS(595), [anon_sym_open] = ACTIONS(595), @@ -14888,21 +15016,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(595), [anon_sym_DASH] = ACTIONS(597), [anon_sym_BANG] = ACTIONS(595), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(597), + [anon_sym_QMARK_QMARK] = ACTIONS(597), + [anon_sym_STAR_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(595), + [anon_sym_TILDE_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_PIPE_GT] = ACTIONS(597), + [anon_sym_is] = ACTIONS(595), [anon_sym_if] = ACTIONS(595), [anon_sym_let] = ACTIONS(595), [anon_sym_throw] = ACTIONS(595), @@ -14911,13 +15039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(597), [anon_sym_read_STAR] = ACTIONS(597), [anon_sym_super] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_QMARK_DOT] = ACTIONS(597), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(597), + [sym__binary_minus] = ACTIONS(597), }, [STATE(92)] = { [sym_shebangComment] = STATE(92), @@ -14926,20 +15054,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(599), [anon_sym_import] = ACTIONS(599), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(599), [anon_sym_import_STAR] = ACTIONS(601), [anon_sym_RBRACE] = ACTIONS(601), [anon_sym_function] = ACTIONS(599), [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(601), [anon_sym_LBRACK_LBRACK] = ACTIONS(601), [anon_sym_for] = ACTIONS(599), [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RPAREN] = ACTIONS(601), [anon_sym_when] = ACTIONS(599), + [anon_sym_else] = ACTIONS(599), [anon_sym_DOT_DOT_DOT] = ACTIONS(599), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), [anon_sym_external] = ACTIONS(599), [anon_sym_abstract] = ACTIONS(599), [anon_sym_open] = ACTIONS(599), @@ -14971,21 +15103,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(601), [anon_sym_BANG] = ACTIONS(599), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(601), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_PIPE_GT] = ACTIONS(601), + [anon_sym_is] = ACTIONS(599), [anon_sym_if] = ACTIONS(599), [anon_sym_let] = ACTIONS(599), [anon_sym_throw] = ACTIONS(599), @@ -14994,13 +15126,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(601), [anon_sym_read_STAR] = ACTIONS(601), [anon_sym_super] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(93)] = { [sym_shebangComment] = STATE(93), @@ -15009,7 +15141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(603), [anon_sym_import] = ACTIONS(603), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(605), [anon_sym_RBRACE] = ACTIONS(605), [anon_sym_function] = ACTIONS(603), @@ -15020,9 +15152,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(603), [anon_sym_DOT_DOT_DOT] = ACTIONS(603), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(603), [anon_sym_abstract] = ACTIONS(603), [anon_sym_open] = ACTIONS(603), @@ -15054,21 +15186,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(603), [anon_sym_DASH] = ACTIONS(605), [anon_sym_BANG] = ACTIONS(603), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(603), [anon_sym_let] = ACTIONS(603), [anon_sym_throw] = ACTIONS(603), @@ -15077,13 +15209,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(605), [anon_sym_read_STAR] = ACTIONS(605), [anon_sym_super] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(94)] = { [sym_shebangComment] = STATE(94), @@ -15092,7 +15224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(607), [anon_sym_import] = ACTIONS(607), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(609), [anon_sym_RBRACE] = ACTIONS(609), [anon_sym_function] = ACTIONS(607), @@ -15103,9 +15235,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(607), [anon_sym_DOT_DOT_DOT] = ACTIONS(607), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(607), [anon_sym_abstract] = ACTIONS(607), [anon_sym_open] = ACTIONS(607), @@ -15137,21 +15269,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(607), [anon_sym_DASH] = ACTIONS(609), [anon_sym_BANG] = ACTIONS(607), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(607), [anon_sym_let] = ACTIONS(607), [anon_sym_throw] = ACTIONS(607), @@ -15160,52 +15292,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(609), [anon_sym_read_STAR] = ACTIONS(609), [anon_sym_super] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(95)] = { [sym_shebangComment] = STATE(95), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(817), - [sym_typedIdentifier] = STATE(732), - [sym__expr] = STATE(454), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(906), + [sym_typedIdentifier] = STATE(807), + [sym__expr] = STATE(437), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(95), [sym_identifier] = ACTIONS(611), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -15258,7 +15390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(615), [anon_sym_import] = ACTIONS(615), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(617), [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_function] = ACTIONS(615), @@ -15269,9 +15401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(615), [anon_sym_DOT_DOT_DOT] = ACTIONS(615), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(615), [anon_sym_abstract] = ACTIONS(615), [anon_sym_open] = ACTIONS(615), @@ -15303,21 +15435,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(615), [anon_sym_DASH] = ACTIONS(617), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(615), [anon_sym_let] = ACTIONS(615), [anon_sym_throw] = ACTIONS(615), @@ -15326,105 +15458,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(617), [anon_sym_read_STAR] = ACTIONS(617), [anon_sym_super] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(97)] = { [sym_shebangComment] = STATE(97), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(817), - [sym_typedIdentifier] = STATE(732), - [sym__expr] = STATE(417), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), [sym_lineComment] = STATE(97), - [sym_identifier] = ACTIONS(611), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(53), - [anon_sym_RPAREN] = ACTIONS(613), - [sym_blankIdentifier] = ACTIONS(61), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteralExpr] = ACTIONS(63), - [sym_trueLiteralExpr] = ACTIONS(63), - [sym_falseLiteralExpr] = ACTIONS(63), - [sym_intLiteralExpr] = ACTIONS(63), - [sym_floatLiteralExpr] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_if] = ACTIONS(101), - [anon_sym_let] = ACTIONS(103), - [anon_sym_throw] = ACTIONS(105), - [anon_sym_trace] = ACTIONS(107), - [anon_sym_read] = ACTIONS(109), - [anon_sym_read_QMARK] = ACTIONS(111), - [anon_sym_read_STAR] = ACTIONS(111), - [anon_sym_super] = ACTIONS(113), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(98)] = { - [sym_shebangComment] = STATE(98), - [sym_lineComment] = STATE(98), [sym_identifier] = ACTIONS(619), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(619), [anon_sym_import] = ACTIONS(619), - [anon_sym_as] = ACTIONS(431), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(621), [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_function] = ACTIONS(619), @@ -15435,9 +15484,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(619), [anon_sym_DOT_DOT_DOT] = ACTIONS(619), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), [anon_sym_external] = ACTIONS(619), [anon_sym_abstract] = ACTIONS(619), [anon_sym_open] = ACTIONS(619), @@ -15469,21 +15518,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(621), [anon_sym_BANG] = ACTIONS(619), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_TILDE_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(457), - [anon_sym_is] = ACTIONS(459), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), [anon_sym_if] = ACTIONS(619), [anon_sym_let] = ACTIONS(619), [anon_sym_throw] = ACTIONS(619), @@ -15492,221 +15541,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_read_QMARK] = ACTIONS(621), [anon_sym_read_STAR] = ACTIONS(621), [anon_sym_super] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), + }, + [STATE(98)] = { + [sym_shebangComment] = STATE(98), + [sym_lineComment] = STATE(98), + [sym_identifier] = ACTIONS(623), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_as] = ACTIONS(439), + [anon_sym_import_STAR] = ACTIONS(625), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_function] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(625), + [anon_sym_for] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_when] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_external] = ACTIONS(623), + [anon_sym_abstract] = ACTIONS(623), + [anon_sym_open] = ACTIONS(623), + [anon_sym_local] = ACTIONS(623), + [anon_sym_hidden] = ACTIONS(623), + [anon_sym_fixed] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [sym_thisExpr] = ACTIONS(623), + [sym_outerExpr] = ACTIONS(623), + [sym_nullLiteralExpr] = ACTIONS(623), + [sym_trueLiteralExpr] = ACTIONS(623), + [sym_falseLiteralExpr] = ACTIONS(623), + [sym_intLiteralExpr] = ACTIONS(623), + [sym_floatLiteralExpr] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_POUND_DQUOTE] = ACTIONS(623), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(623), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(623), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(623), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(623), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(625), + [anon_sym_new] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), + [anon_sym_if] = ACTIONS(623), + [anon_sym_let] = ACTIONS(623), + [anon_sym_throw] = ACTIONS(623), + [anon_sym_trace] = ACTIONS(623), + [anon_sym_read] = ACTIONS(623), + [anon_sym_read_QMARK] = ACTIONS(625), + [anon_sym_read_STAR] = ACTIONS(625), + [anon_sym_super] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(465), - [sym__binary_minus] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(99)] = { [sym_shebangComment] = STATE(99), - [sym_parameterList] = STATE(880), - [sym__parameter] = STATE(817), - [sym_typedIdentifier] = STATE(732), - [sym__expr] = STATE(433), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), [sym_lineComment] = STATE(99), - [sym_identifier] = ACTIONS(611), + [sym_identifier] = ACTIONS(627), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(53), - [anon_sym_RPAREN] = ACTIONS(613), - [sym_blankIdentifier] = ACTIONS(61), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteralExpr] = ACTIONS(63), - [sym_trueLiteralExpr] = ACTIONS(63), - [sym_falseLiteralExpr] = ACTIONS(63), - [sym_intLiteralExpr] = ACTIONS(63), - [sym_floatLiteralExpr] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_if] = ACTIONS(101), - [anon_sym_let] = ACTIONS(103), - [anon_sym_throw] = ACTIONS(105), - [anon_sym_trace] = ACTIONS(107), - [anon_sym_read] = ACTIONS(109), - [anon_sym_read_QMARK] = ACTIONS(111), - [anon_sym_read_STAR] = ACTIONS(111), - [anon_sym_super] = ACTIONS(113), + [anon_sym_module] = ACTIONS(627), + [anon_sym_import] = ACTIONS(627), + [anon_sym_as] = ACTIONS(439), + [anon_sym_import_STAR] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_function] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(627), + [anon_sym_LBRACK_LBRACK] = ACTIONS(629), + [anon_sym_for] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_when] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_external] = ACTIONS(627), + [anon_sym_abstract] = ACTIONS(627), + [anon_sym_open] = ACTIONS(627), + [anon_sym_local] = ACTIONS(627), + [anon_sym_hidden] = ACTIONS(627), + [anon_sym_fixed] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [sym_thisExpr] = ACTIONS(627), + [sym_outerExpr] = ACTIONS(627), + [sym_nullLiteralExpr] = ACTIONS(627), + [sym_trueLiteralExpr] = ACTIONS(627), + [sym_falseLiteralExpr] = ACTIONS(627), + [sym_intLiteralExpr] = ACTIONS(627), + [sym_floatLiteralExpr] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_POUND_DQUOTE] = ACTIONS(627), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(627), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(627), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(627), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(627), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_new] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), + [anon_sym_if] = ACTIONS(627), + [anon_sym_let] = ACTIONS(627), + [anon_sym_throw] = ACTIONS(627), + [anon_sym_trace] = ACTIONS(627), + [anon_sym_read] = ACTIONS(627), + [anon_sym_read_QMARK] = ACTIONS(629), + [anon_sym_read_STAR] = ACTIONS(629), + [anon_sym_super] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(100)] = { [sym_shebangComment] = STATE(100), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(343), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), [sym_lineComment] = STATE(100), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(631), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(53), - [anon_sym_RPAREN] = ACTIONS(625), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteralExpr] = ACTIONS(63), - [sym_trueLiteralExpr] = ACTIONS(63), - [sym_falseLiteralExpr] = ACTIONS(63), - [sym_intLiteralExpr] = ACTIONS(63), - [sym_floatLiteralExpr] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_if] = ACTIONS(101), - [anon_sym_let] = ACTIONS(103), - [anon_sym_throw] = ACTIONS(105), - [anon_sym_trace] = ACTIONS(107), - [anon_sym_read] = ACTIONS(109), - [anon_sym_read_QMARK] = ACTIONS(111), - [anon_sym_read_STAR] = ACTIONS(111), - [anon_sym_super] = ACTIONS(113), + [anon_sym_module] = ACTIONS(631), + [anon_sym_import] = ACTIONS(631), + [anon_sym_as] = ACTIONS(439), + [anon_sym_import_STAR] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_function] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(633), + [anon_sym_for] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_when] = ACTIONS(631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_external] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(631), + [anon_sym_open] = ACTIONS(631), + [anon_sym_local] = ACTIONS(631), + [anon_sym_hidden] = ACTIONS(631), + [anon_sym_fixed] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [sym_thisExpr] = ACTIONS(631), + [sym_outerExpr] = ACTIONS(631), + [sym_nullLiteralExpr] = ACTIONS(631), + [sym_trueLiteralExpr] = ACTIONS(631), + [sym_falseLiteralExpr] = ACTIONS(631), + [sym_intLiteralExpr] = ACTIONS(631), + [sym_floatLiteralExpr] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(631), + [anon_sym_POUND_DQUOTE] = ACTIONS(631), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(631), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(631), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(631), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(631), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(633), + [anon_sym_new] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), + [anon_sym_if] = ACTIONS(631), + [anon_sym_let] = ACTIONS(631), + [anon_sym_throw] = ACTIONS(631), + [anon_sym_trace] = ACTIONS(631), + [anon_sym_read] = ACTIONS(631), + [anon_sym_read_QMARK] = ACTIONS(633), + [anon_sym_read_STAR] = ACTIONS(633), + [anon_sym_super] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(101)] = { [sym_shebangComment] = STATE(101), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(345), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(906), + [sym_typedIdentifier] = STATE(807), + [sym__expr] = STATE(416), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(101), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(611), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), - [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_RPAREN] = ACTIONS(613), + [sym_blankIdentifier] = ACTIONS(61), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -15745,48 +15883,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(102)] = { [sym_shebangComment] = STATE(102), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(349), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__parameter] = STATE(906), + [sym_typedIdentifier] = STATE(807), + [sym__expr] = STATE(476), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(102), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(611), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), - [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(613), + [sym_blankIdentifier] = ACTIONS(61), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -15825,126 +15966,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(103)] = { [sym_shebangComment] = STATE(103), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(278), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), [sym_lineComment] = STATE(103), - [sym_identifier] = ACTIONS(631), + [sym_identifier] = ACTIONS(635), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), + [anon_sym_module] = ACTIONS(635), [anon_sym_import] = ACTIONS(635), + [anon_sym_as] = ACTIONS(439), [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_function] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(637), + [anon_sym_for] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_when] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_external] = ACTIONS(635), + [anon_sym_abstract] = ACTIONS(635), + [anon_sym_open] = ACTIONS(635), + [anon_sym_local] = ACTIONS(635), + [anon_sym_hidden] = ACTIONS(635), + [anon_sym_fixed] = ACTIONS(635), + [anon_sym_const] = ACTIONS(635), + [sym_thisExpr] = ACTIONS(635), + [sym_outerExpr] = ACTIONS(635), + [sym_nullLiteralExpr] = ACTIONS(635), + [sym_trueLiteralExpr] = ACTIONS(635), + [sym_falseLiteralExpr] = ACTIONS(635), + [sym_intLiteralExpr] = ACTIONS(635), + [sym_floatLiteralExpr] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_POUND_DQUOTE] = ACTIONS(635), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(635), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(635), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(635), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(635), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_BANG_BANG] = ACTIONS(447), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_STAR_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(467), + [anon_sym_if] = ACTIONS(635), + [anon_sym_let] = ACTIONS(635), + [anon_sym_throw] = ACTIONS(635), + [anon_sym_trace] = ACTIONS(635), + [anon_sym_read] = ACTIONS(635), + [anon_sym_read_QMARK] = ACTIONS(637), + [anon_sym_read_STAR] = ACTIONS(637), + [anon_sym_super] = ACTIONS(635), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_QMARK_DOT] = ACTIONS(471), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(473), + [sym__binary_minus] = ACTIONS(455), }, [STATE(104)] = { [sym_shebangComment] = STATE(104), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(89), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(363), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(104), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(641), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -15983,47 +16129,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(105)] = { [sym_shebangComment] = STATE(105), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(92), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(105), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(643), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16062,47 +16209,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(106)] = { [sym_shebangComment] = STATE(106), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(369), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(106), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(645), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16141,47 +16289,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(107)] = { [sym_shebangComment] = STATE(107), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(443), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(107), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(647), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16220,126 +16369,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(108)] = { [sym_shebangComment] = STATE(108), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(445), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(108), - [sym_identifier] = ACTIONS(693), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(649), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [STATE(109)] = { [sym_shebangComment] = STATE(109), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(67), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(109), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(651), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16378,47 +16529,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(110)] = { [sym_shebangComment] = STATE(110), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(91), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(375), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(110), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(653), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16457,126 +16609,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(111)] = { [sym_shebangComment] = STATE(111), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(294), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(111), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(112)] = { - [sym_shebangComment] = STATE(112), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(442), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(112), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(655), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16613,49 +16687,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(113)] = { - [sym_shebangComment] = STATE(113), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(68), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(113), - [sym_identifier] = ACTIONS(623), + [STATE(112)] = { + [sym_shebangComment] = STATE(112), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(366), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(112), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(657), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16692,49 +16767,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(114)] = { - [sym_shebangComment] = STATE(114), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(70), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(114), - [sym_identifier] = ACTIONS(623), + [STATE(113)] = { + [sym_shebangComment] = STATE(113), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(113), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(659), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(114)] = { + [sym_shebangComment] = STATE(114), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(114), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(661), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16773,47 +16929,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(115)] = { [sym_shebangComment] = STATE(115), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(88), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(115), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(663), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16852,47 +17009,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(116)] = { [sym_shebangComment] = STATE(116), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(380), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(116), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(665), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -16931,47 +17089,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(117)] = { [sym_shebangComment] = STATE(117), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(57), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(117), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(667), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -17010,47 +17169,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(118)] = { [sym_shebangComment] = STATE(118), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(58), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(118), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(669), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -17089,126 +17249,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(119)] = { [sym_shebangComment] = STATE(119), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(280), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(119), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(120)] = { - [sym_shebangComment] = STATE(120), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(71), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(120), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(671), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -17245,49 +17327,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(121)] = { - [sym_shebangComment] = STATE(121), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(72), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(121), - [sym_identifier] = ACTIONS(623), + [STATE(120)] = { + [sym_shebangComment] = STATE(120), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(120), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(673), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteralExpr] = ACTIONS(63), @@ -17324,202 +17407,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(122)] = { - [sym_shebangComment] = STATE(122), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(265), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(122), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(123)] = { - [sym_shebangComment] = STATE(123), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(266), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(123), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(124)] = { - [sym_shebangComment] = STATE(124), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(73), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(124), - [sym_identifier] = ACTIONS(623), + [STATE(121)] = { + [sym_shebangComment] = STATE(121), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(364), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(121), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -17561,44 +17486,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(125)] = { - [sym_shebangComment] = STATE(125), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(74), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(125), - [sym_identifier] = ACTIONS(623), + [STATE(122)] = { + [sym_shebangComment] = STATE(122), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(97), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(122), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -17640,44 +17565,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, + [STATE(123)] = { + [sym_shebangComment] = STATE(123), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(319), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(123), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(124)] = { + [sym_shebangComment] = STATE(124), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(309), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(124), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(125)] = { + [sym_shebangComment] = STATE(125), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(287), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(125), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, [STATE(126)] = { [sym_shebangComment] = STATE(126), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(75), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(100), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(126), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -17721,42 +17883,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(127)] = { [sym_shebangComment] = STATE(127), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(76), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(99), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(127), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -17800,358 +17962,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(128)] = { [sym_shebangComment] = STATE(128), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(268), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(412), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(128), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(129)] = { - [sym_shebangComment] = STATE(129), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(275), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(129), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(130)] = { - [sym_shebangComment] = STATE(130), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(276), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(130), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(131)] = { - [sym_shebangComment] = STATE(131), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(277), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(131), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(132)] = { - [sym_shebangComment] = STATE(132), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(378), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(132), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -18193,518 +18039,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(133)] = { - [sym_shebangComment] = STATE(133), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(279), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(133), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(134)] = { - [sym_shebangComment] = STATE(134), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(300), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(134), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(135)] = { - [sym_shebangComment] = STATE(135), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(281), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(135), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(136)] = { - [sym_shebangComment] = STATE(136), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(282), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(136), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(137)] = { - [sym_shebangComment] = STATE(137), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(283), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(137), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(138)] = { - [sym_shebangComment] = STATE(138), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(284), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(138), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(139)] = { - [sym_shebangComment] = STATE(139), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(339), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(139), - [sym_identifier] = ACTIONS(623), + [STATE(129)] = { + [sym_shebangComment] = STATE(129), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(413), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(129), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -18746,281 +18118,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(140)] = { - [sym_shebangComment] = STATE(140), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(297), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(140), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(141)] = { - [sym_shebangComment] = STATE(141), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(298), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(141), - [sym_identifier] = ACTIONS(631), + [STATE(130)] = { + [sym_shebangComment] = STATE(130), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(415), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(130), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(142)] = { - [sym_shebangComment] = STATE(142), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(270), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(142), - [sym_identifier] = ACTIONS(631), + [STATE(131)] = { + [sym_shebangComment] = STATE(131), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(310), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(131), + [sym_identifier] = ACTIONS(675), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(143)] = { - [sym_shebangComment] = STATE(143), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(408), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(143), - [sym_identifier] = ACTIONS(623), + [STATE(132)] = { + [sym_shebangComment] = STATE(132), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(438), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(132), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19062,44 +18355,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(144)] = { - [sym_shebangComment] = STATE(144), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(96), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(144), - [sym_identifier] = ACTIONS(623), + [STATE(133)] = { + [sym_shebangComment] = STATE(133), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(93), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(133), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19141,123 +18434,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(145)] = { - [sym_shebangComment] = STATE(145), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(271), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(145), - [sym_identifier] = ACTIONS(631), + [STATE(134)] = { + [sym_shebangComment] = STATE(134), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(315), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(134), + [sym_identifier] = ACTIONS(675), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(146)] = { - [sym_shebangComment] = STATE(146), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(409), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(146), - [sym_identifier] = ACTIONS(623), + [STATE(135)] = { + [sym_shebangComment] = STATE(135), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(444), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(135), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19299,44 +18592,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(147)] = { - [sym_shebangComment] = STATE(147), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(415), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(147), - [sym_identifier] = ACTIONS(623), + [STATE(136)] = { + [sym_shebangComment] = STATE(136), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(447), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(136), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19378,44 +18671,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(148)] = { - [sym_shebangComment] = STATE(148), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(94), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(148), - [sym_identifier] = ACTIONS(623), + [STATE(137)] = { + [sym_shebangComment] = STATE(137), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(448), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(137), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19457,202 +18750,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(149)] = { - [sym_shebangComment] = STATE(149), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(295), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(149), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(150)] = { - [sym_shebangComment] = STATE(150), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(296), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(150), - [sym_identifier] = ACTIONS(631), + [STATE(138)] = { + [sym_shebangComment] = STATE(138), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(449), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(138), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(151)] = { - [sym_shebangComment] = STATE(151), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(434), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(151), - [sym_identifier] = ACTIONS(623), + [STATE(139)] = { + [sym_shebangComment] = STATE(139), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(450), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(139), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19694,44 +18908,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(152)] = { - [sym_shebangComment] = STATE(152), - [sym_parameterList] = STATE(880), + [STATE(140)] = { + [sym_shebangComment] = STATE(140), + [sym_parameterList] = STATE(972), [sym__expr] = STATE(453), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(152), - [sym_identifier] = ACTIONS(623), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(140), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -19773,202 +18987,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(153)] = { - [sym_shebangComment] = STATE(153), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(450), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(153), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(154)] = { - [sym_shebangComment] = STATE(154), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(451), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(154), - [sym_identifier] = ACTIONS(693), + [STATE(141)] = { + [sym_shebangComment] = STATE(141), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(61), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(141), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(155)] = { - [sym_shebangComment] = STATE(155), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(382), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(155), - [sym_identifier] = ACTIONS(623), + [STATE(142)] = { + [sym_shebangComment] = STATE(142), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(59), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(142), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -20010,44 +19145,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(156)] = { - [sym_shebangComment] = STATE(156), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(384), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(156), - [sym_identifier] = ACTIONS(623), + [STATE(143)] = { + [sym_shebangComment] = STATE(143), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(451), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(143), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -20089,44 +19224,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(157)] = { - [sym_shebangComment] = STATE(157), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(395), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(157), - [sym_identifier] = ACTIONS(623), + [STATE(144)] = { + [sym_shebangComment] = STATE(144), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(397), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(144), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -20168,202 +19303,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(158)] = { - [sym_shebangComment] = STATE(158), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(385), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(158), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(159)] = { - [sym_shebangComment] = STATE(159), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(386), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(159), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(160)] = { - [sym_shebangComment] = STATE(160), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(377), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(160), - [sym_identifier] = ACTIONS(623), + [STATE(145)] = { + [sym_shebangComment] = STATE(145), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(452), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(145), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -20405,597 +19382,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(161)] = { - [sym_shebangComment] = STATE(161), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(388), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(161), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(162)] = { - [sym_shebangComment] = STATE(162), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(389), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(162), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(163)] = { - [sym_shebangComment] = STATE(163), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(390), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(163), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(164)] = { - [sym_shebangComment] = STATE(164), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(391), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(164), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(165)] = { - [sym_shebangComment] = STATE(165), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(392), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(165), - [sym_identifier] = ACTIONS(693), + [STATE(146)] = { + [sym_shebangComment] = STATE(146), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(318), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(146), + [sym_identifier] = ACTIONS(675), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(166)] = { - [sym_shebangComment] = STATE(166), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(393), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(166), - [sym_identifier] = ACTIONS(693), + [STATE(147)] = { + [sym_shebangComment] = STATE(147), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(282), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(147), + [sym_identifier] = ACTIONS(675), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(167)] = { - [sym_shebangComment] = STATE(167), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(394), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(167), - [sym_identifier] = ACTIONS(693), + [STATE(148)] = { + [sym_shebangComment] = STATE(148), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(316), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(148), + [sym_identifier] = ACTIONS(675), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(168)] = { - [sym_shebangComment] = STATE(168), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(69), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(168), - [sym_identifier] = ACTIONS(623), + [STATE(149)] = { + [sym_shebangComment] = STATE(149), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(455), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(149), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21037,44 +19698,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(169)] = { - [sym_shebangComment] = STATE(169), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(77), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(169), - [sym_identifier] = ACTIONS(623), + [STATE(150)] = { + [sym_shebangComment] = STATE(150), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(456), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(150), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21116,202 +19777,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(170)] = { - [sym_shebangComment] = STATE(170), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(406), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(170), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(171)] = { - [sym_shebangComment] = STATE(171), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(407), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(171), - [sym_identifier] = ACTIONS(693), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(172)] = { - [sym_shebangComment] = STATE(172), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(410), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(172), - [sym_identifier] = ACTIONS(623), + [STATE(151)] = { + [sym_shebangComment] = STATE(151), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(469), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(151), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21353,44 +19856,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(173)] = { - [sym_shebangComment] = STATE(173), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(411), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(173), - [sym_identifier] = ACTIONS(623), + [STATE(152)] = { + [sym_shebangComment] = STATE(152), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(406), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(152), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21432,44 +19935,834 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(174)] = { - [sym_shebangComment] = STATE(174), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(412), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(174), - [sym_identifier] = ACTIONS(623), + [STATE(153)] = { + [sym_shebangComment] = STATE(153), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(302), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(153), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(154)] = { + [sym_shebangComment] = STATE(154), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(304), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(154), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(155)] = { + [sym_shebangComment] = STATE(155), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(311), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(155), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(156)] = { + [sym_shebangComment] = STATE(156), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(312), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(156), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(157)] = { + [sym_shebangComment] = STATE(157), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(321), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(157), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(158)] = { + [sym_shebangComment] = STATE(158), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(322), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(158), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(159)] = { + [sym_shebangComment] = STATE(159), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(323), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(159), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(160)] = { + [sym_shebangComment] = STATE(160), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(283), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(160), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(161)] = { + [sym_shebangComment] = STATE(161), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(284), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(161), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(162)] = { + [sym_shebangComment] = STATE(162), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(286), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(162), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(163)] = { + [sym_shebangComment] = STATE(163), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(441), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(163), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21511,44 +20804,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(175)] = { - [sym_shebangComment] = STATE(175), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(413), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(175), - [sym_identifier] = ACTIONS(623), + [STATE(164)] = { + [sym_shebangComment] = STATE(164), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(96), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(164), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21590,44 +20883,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(176)] = { - [sym_shebangComment] = STATE(176), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(414), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(176), - [sym_identifier] = ACTIONS(623), + [STATE(165)] = { + [sym_shebangComment] = STATE(165), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(94), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(165), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21669,123 +20962,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(177)] = { - [sym_shebangComment] = STATE(177), - [sym_parameterList] = STATE(887), - [sym__expr] = STATE(299), - [sym_parenthesizedExpr] = STATE(251), - [sym_moduleExpr] = STATE(262), - [sym_slStringLiteralExpr] = STATE(262), - [sym_mlStringLiteralExpr] = STATE(262), - [sym_newExpr] = STATE(251), - [sym_amendExpr] = STATE(251), - [sym_subscriptExpr] = STATE(262), - [sym_unaryMinusExpr] = STATE(262), - [sym_logicalNotExpr] = STATE(262), - [sym_nonNullExpr] = STATE(262), - [sym_nullCoalesceExpr] = STATE(262), - [sym_exponentiationExpr] = STATE(262), - [sym_multiplicativeExpr] = STATE(262), - [sym_additiveExpr] = STATE(262), - [sym_comparisonExpr] = STATE(262), - [sym_equalityExpr] = STATE(262), - [sym_logicalAndExpr] = STATE(262), - [sym_logicalOrExpr] = STATE(262), - [sym_pipeExpr] = STATE(262), - [sym_typeTestExpr] = STATE(262), - [sym_typeCastExpr] = STATE(262), - [sym_ifExpr] = STATE(262), - [sym_letExpr] = STATE(262), - [sym_throwExpr] = STATE(262), - [sym_traceExpr] = STATE(262), - [sym_readExpr] = STATE(262), - [sym_importExpr] = STATE(262), - [sym_unqualifiedAccessExpr] = STATE(262), - [sym_superAccessExpr] = STATE(262), - [sym_superSubscriptExpr] = STATE(262), - [sym_qualifiedAccessExpr] = STATE(262), - [sym_functionLiteralExpr] = STATE(262), - [sym_lineComment] = STATE(177), - [sym_identifier] = ACTIONS(631), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(633), - [anon_sym_import] = ACTIONS(635), - [anon_sym_import_STAR] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [sym_thisExpr] = ACTIONS(641), - [sym_outerExpr] = ACTIONS(641), - [sym_nullLiteralExpr] = ACTIONS(641), - [sym_trueLiteralExpr] = ACTIONS(641), - [sym_falseLiteralExpr] = ACTIONS(641), - [sym_intLiteralExpr] = ACTIONS(641), - [sym_floatLiteralExpr] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_POUND_DQUOTE] = ACTIONS(647), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(649), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(651), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(653), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(655), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(661), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(665), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(669), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_if] = ACTIONS(679), - [anon_sym_let] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_trace] = ACTIONS(685), - [anon_sym_read] = ACTIONS(687), - [anon_sym_read_QMARK] = ACTIONS(689), - [anon_sym_read_STAR] = ACTIONS(689), - [anon_sym_super] = ACTIONS(691), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [STATE(178)] = { - [sym_shebangComment] = STATE(178), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(98), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(178), - [sym_identifier] = ACTIONS(623), + [STATE(166)] = { + [sym_shebangComment] = STATE(166), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(483), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(166), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21827,44 +21041,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(179)] = { - [sym_shebangComment] = STATE(179), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(90), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(179), - [sym_identifier] = ACTIONS(623), + [STATE(167)] = { + [sym_shebangComment] = STATE(167), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(454), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(167), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21906,44 +21120,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(180)] = { - [sym_shebangComment] = STATE(180), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(444), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(180), - [sym_identifier] = ACTIONS(623), + [STATE(168)] = { + [sym_shebangComment] = STATE(168), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(71), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(168), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -21985,44 +21199,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(181)] = { - [sym_shebangComment] = STATE(181), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(419), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(181), - [sym_identifier] = ACTIONS(623), + [STATE(169)] = { + [sym_shebangComment] = STATE(169), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(306), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(169), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(170)] = { + [sym_shebangComment] = STATE(170), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(307), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(170), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(171)] = { + [sym_shebangComment] = STATE(171), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(460), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(171), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22064,44 +21436,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(182)] = { - [sym_shebangComment] = STATE(182), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(420), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(182), - [sym_identifier] = ACTIONS(623), + [STATE(172)] = { + [sym_shebangComment] = STATE(172), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(72), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(172), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22143,44 +21515,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(183)] = { - [sym_shebangComment] = STATE(183), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(421), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(183), - [sym_identifier] = ACTIONS(623), + [STATE(173)] = { + [sym_shebangComment] = STATE(173), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(74), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(173), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22222,44 +21594,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(184)] = { - [sym_shebangComment] = STATE(184), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(422), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(184), - [sym_identifier] = ACTIONS(623), + [STATE(174)] = { + [sym_shebangComment] = STATE(174), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(92), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(174), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22301,44 +21673,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(185)] = { - [sym_shebangComment] = STATE(185), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(423), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(185), - [sym_identifier] = ACTIONS(623), + [STATE(175)] = { + [sym_shebangComment] = STATE(175), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(457), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(175), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(176)] = { + [sym_shebangComment] = STATE(176), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(477), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(176), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(177)] = { + [sym_shebangComment] = STATE(177), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(482), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(177), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22380,44 +21910,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(186)] = { - [sym_shebangComment] = STATE(186), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(424), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(186), - [sym_identifier] = ACTIONS(623), + [STATE(178)] = { + [sym_shebangComment] = STATE(178), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(76), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(178), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22459,44 +21989,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(187)] = { - [sym_shebangComment] = STATE(187), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(425), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(187), - [sym_identifier] = ACTIONS(623), + [STATE(179)] = { + [sym_shebangComment] = STATE(179), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(77), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(179), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22538,44 +22068,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(188)] = { - [sym_shebangComment] = STATE(188), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(426), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(188), - [sym_identifier] = ACTIONS(623), + [STATE(180)] = { + [sym_shebangComment] = STATE(180), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(78), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(180), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22617,202 +22147,834 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, + [STATE(181)] = { + [sym_shebangComment] = STATE(181), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(464), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(181), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(182)] = { + [sym_shebangComment] = STATE(182), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(465), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(182), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(183)] = { + [sym_shebangComment] = STATE(183), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(467), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(183), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(184)] = { + [sym_shebangComment] = STATE(184), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(468), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(184), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(185)] = { + [sym_shebangComment] = STATE(185), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(470), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(185), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(186)] = { + [sym_shebangComment] = STATE(186), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(471), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(186), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(187)] = { + [sym_shebangComment] = STATE(187), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(472), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(187), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(188)] = { + [sym_shebangComment] = STATE(188), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(473), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(188), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, [STATE(189)] = { [sym_shebangComment] = STATE(189), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(427), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(474), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), [sym_lineComment] = STATE(189), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(737), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(53), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteralExpr] = ACTIONS(63), - [sym_trueLiteralExpr] = ACTIONS(63), - [sym_falseLiteralExpr] = ACTIONS(63), - [sym_intLiteralExpr] = ACTIONS(63), - [sym_floatLiteralExpr] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_if] = ACTIONS(101), - [anon_sym_let] = ACTIONS(103), - [anon_sym_throw] = ACTIONS(105), - [anon_sym_trace] = ACTIONS(107), - [anon_sym_read] = ACTIONS(109), - [anon_sym_read_QMARK] = ACTIONS(111), - [anon_sym_read_STAR] = ACTIONS(111), - [anon_sym_super] = ACTIONS(113), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [STATE(190)] = { [sym_shebangComment] = STATE(190), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(428), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(475), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), [sym_lineComment] = STATE(190), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(737), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(53), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteralExpr] = ACTIONS(63), - [sym_trueLiteralExpr] = ACTIONS(63), - [sym_falseLiteralExpr] = ACTIONS(63), - [sym_intLiteralExpr] = ACTIONS(63), - [sym_floatLiteralExpr] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_if] = ACTIONS(101), - [anon_sym_let] = ACTIONS(103), - [anon_sym_throw] = ACTIONS(105), - [anon_sym_trace] = ACTIONS(107), - [anon_sym_read] = ACTIONS(109), - [anon_sym_read_QMARK] = ACTIONS(111), - [anon_sym_read_STAR] = ACTIONS(111), - [anon_sym_super] = ACTIONS(113), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [STATE(191)] = { [sym_shebangComment] = STATE(191), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(429), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(79), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(191), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22856,42 +23018,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(192)] = { [sym_shebangComment] = STATE(192), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(430), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(80), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), [sym_lineComment] = STATE(192), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -22935,42 +23097,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(193)] = { [sym_shebangComment] = STATE(193), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(344), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(435), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), [sym_lineComment] = STATE(193), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(194)] = { + [sym_shebangComment] = STATE(194), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(436), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(194), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(195)] = { + [sym_shebangComment] = STATE(195), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(81), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(195), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23012,44 +23332,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(194)] = { - [sym_shebangComment] = STATE(194), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(431), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(194), - [sym_identifier] = ACTIONS(623), + [STATE(196)] = { + [sym_shebangComment] = STATE(196), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(98), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(196), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23091,44 +23411,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(195)] = { - [sym_shebangComment] = STATE(195), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(432), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(195), - [sym_identifier] = ACTIONS(623), + [STATE(197)] = { + [sym_shebangComment] = STATE(197), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(371), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(197), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23170,44 +23490,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(196)] = { - [sym_shebangComment] = STATE(196), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(446), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(196), - [sym_identifier] = ACTIONS(623), + [STATE(198)] = { + [sym_shebangComment] = STATE(198), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(285), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(198), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(199)] = { + [sym_shebangComment] = STATE(199), + [sym_parameterList] = STATE(941), + [sym__expr] = STATE(289), + [sym_parenthesizedExpr] = STATE(272), + [sym_moduleExpr] = STATE(308), + [sym_slStringLiteralExpr] = STATE(308), + [sym_mlStringLiteralExpr] = STATE(308), + [sym_newExpr] = STATE(272), + [sym_amendExpr] = STATE(272), + [sym_subscriptExpr] = STATE(308), + [sym_unaryMinusExpr] = STATE(308), + [sym_logicalNotExpr] = STATE(308), + [sym_nonNullExpr] = STATE(308), + [sym_nullCoalesceExpr] = STATE(308), + [sym_exponentiationExpr] = STATE(308), + [sym_multiplicativeExpr] = STATE(308), + [sym_additiveExpr] = STATE(308), + [sym_comparisonExpr] = STATE(308), + [sym_equalityExpr] = STATE(308), + [sym_logicalAndExpr] = STATE(308), + [sym_logicalOrExpr] = STATE(308), + [sym_pipeExpr] = STATE(308), + [sym_typeTestExpr] = STATE(308), + [sym_typeCastExpr] = STATE(308), + [sym_ifExpr] = STATE(308), + [sym_letExpr] = STATE(308), + [sym_throwExpr] = STATE(308), + [sym_traceExpr] = STATE(308), + [sym_readExpr] = STATE(308), + [sym_importExpr] = STATE(308), + [sym_unqualifiedAccessExpr] = STATE(308), + [sym_superAccessExpr] = STATE(308), + [sym_superSubscriptExpr] = STATE(308), + [sym_qualifiedAccessExpr] = STATE(308), + [sym_functionLiteralExpr] = STATE(308), + [sym_lineComment] = STATE(199), + [sym_identifier] = ACTIONS(675), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(677), + [anon_sym_import] = ACTIONS(679), + [anon_sym_import_STAR] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [sym_thisExpr] = ACTIONS(685), + [sym_outerExpr] = ACTIONS(685), + [sym_nullLiteralExpr] = ACTIONS(685), + [sym_trueLiteralExpr] = ACTIONS(685), + [sym_falseLiteralExpr] = ACTIONS(685), + [sym_intLiteralExpr] = ACTIONS(685), + [sym_floatLiteralExpr] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND_DQUOTE] = ACTIONS(691), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(693), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(695), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(697), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(699), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(705), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(709), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(713), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_if] = ACTIONS(723), + [anon_sym_let] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_trace] = ACTIONS(729), + [anon_sym_read] = ACTIONS(731), + [anon_sym_read_QMARK] = ACTIONS(733), + [anon_sym_read_STAR] = ACTIONS(733), + [anon_sym_super] = ACTIONS(735), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(200)] = { + [sym_shebangComment] = STATE(200), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(73), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(200), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23249,44 +23727,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(197)] = { - [sym_shebangComment] = STATE(197), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(435), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(197), - [sym_identifier] = ACTIONS(623), + [STATE(201)] = { + [sym_shebangComment] = STATE(201), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(82), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(201), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23328,44 +23806,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(198)] = { - [sym_shebangComment] = STATE(198), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(436), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(198), - [sym_identifier] = ACTIONS(623), + [STATE(202)] = { + [sym_shebangComment] = STATE(202), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(419), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(202), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23407,44 +23885,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(199)] = { - [sym_shebangComment] = STATE(199), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(437), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(199), - [sym_identifier] = ACTIONS(623), + [STATE(203)] = { + [sym_shebangComment] = STATE(203), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(420), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(203), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23486,44 +23964,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(200)] = { - [sym_shebangComment] = STATE(200), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(438), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(200), - [sym_identifier] = ACTIONS(623), + [STATE(204)] = { + [sym_shebangComment] = STATE(204), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(421), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(204), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23565,44 +24043,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(201)] = { - [sym_shebangComment] = STATE(201), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(439), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(201), - [sym_identifier] = ACTIONS(623), + [STATE(205)] = { + [sym_shebangComment] = STATE(205), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(422), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(205), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23644,44 +24122,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(202)] = { - [sym_shebangComment] = STATE(202), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(346), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(202), - [sym_identifier] = ACTIONS(623), + [STATE(206)] = { + [sym_shebangComment] = STATE(206), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(423), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(206), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23723,44 +24201,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(203)] = { - [sym_shebangComment] = STATE(203), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(440), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(203), - [sym_identifier] = ACTIONS(623), + [STATE(207)] = { + [sym_shebangComment] = STATE(207), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(424), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(207), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23802,44 +24280,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(204)] = { - [sym_shebangComment] = STATE(204), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(441), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(204), - [sym_identifier] = ACTIONS(623), + [STATE(208)] = { + [sym_shebangComment] = STATE(208), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(425), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(208), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23881,44 +24359,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(205)] = { - [sym_shebangComment] = STATE(205), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(347), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(205), - [sym_identifier] = ACTIONS(623), + [STATE(209)] = { + [sym_shebangComment] = STATE(209), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(426), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(209), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -23960,44 +24438,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(206)] = { - [sym_shebangComment] = STATE(206), - [sym_parameterList] = STATE(880), - [sym__expr] = STATE(455), - [sym_parenthesizedExpr] = STATE(46), - [sym_moduleExpr] = STATE(59), - [sym_slStringLiteralExpr] = STATE(59), - [sym_mlStringLiteralExpr] = STATE(59), - [sym_newExpr] = STATE(46), - [sym_amendExpr] = STATE(46), - [sym_subscriptExpr] = STATE(59), - [sym_unaryMinusExpr] = STATE(59), - [sym_logicalNotExpr] = STATE(59), - [sym_nonNullExpr] = STATE(59), - [sym_nullCoalesceExpr] = STATE(59), - [sym_exponentiationExpr] = STATE(59), - [sym_multiplicativeExpr] = STATE(59), - [sym_additiveExpr] = STATE(59), - [sym_comparisonExpr] = STATE(59), - [sym_equalityExpr] = STATE(59), - [sym_logicalAndExpr] = STATE(59), - [sym_logicalOrExpr] = STATE(59), - [sym_pipeExpr] = STATE(59), - [sym_typeTestExpr] = STATE(59), - [sym_typeCastExpr] = STATE(59), - [sym_ifExpr] = STATE(59), - [sym_letExpr] = STATE(59), - [sym_throwExpr] = STATE(59), - [sym_traceExpr] = STATE(59), - [sym_readExpr] = STATE(59), - [sym_importExpr] = STATE(59), - [sym_unqualifiedAccessExpr] = STATE(59), - [sym_superAccessExpr] = STATE(59), - [sym_superSubscriptExpr] = STATE(59), - [sym_qualifiedAccessExpr] = STATE(59), - [sym_functionLiteralExpr] = STATE(59), - [sym_lineComment] = STATE(206), - [sym_identifier] = ACTIONS(623), + [STATE(210)] = { + [sym_shebangComment] = STATE(210), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(427), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(210), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), @@ -24039,406 +24517,1512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(207)] = { - [sym_shebangComment] = STATE(207), - [sym_parameterList] = STATE(915), - [sym__expr] = STATE(387), - [sym_parenthesizedExpr] = STATE(350), - [sym_moduleExpr] = STATE(418), - [sym_slStringLiteralExpr] = STATE(418), - [sym_mlStringLiteralExpr] = STATE(418), - [sym_newExpr] = STATE(350), - [sym_amendExpr] = STATE(350), - [sym_subscriptExpr] = STATE(418), - [sym_unaryMinusExpr] = STATE(418), - [sym_logicalNotExpr] = STATE(418), - [sym_nonNullExpr] = STATE(418), - [sym_nullCoalesceExpr] = STATE(418), - [sym_exponentiationExpr] = STATE(418), - [sym_multiplicativeExpr] = STATE(418), - [sym_additiveExpr] = STATE(418), - [sym_comparisonExpr] = STATE(418), - [sym_equalityExpr] = STATE(418), - [sym_logicalAndExpr] = STATE(418), - [sym_logicalOrExpr] = STATE(418), - [sym_pipeExpr] = STATE(418), - [sym_typeTestExpr] = STATE(418), - [sym_typeCastExpr] = STATE(418), - [sym_ifExpr] = STATE(418), - [sym_letExpr] = STATE(418), - [sym_throwExpr] = STATE(418), - [sym_traceExpr] = STATE(418), - [sym_readExpr] = STATE(418), - [sym_importExpr] = STATE(418), - [sym_unqualifiedAccessExpr] = STATE(418), - [sym_superAccessExpr] = STATE(418), - [sym_superSubscriptExpr] = STATE(418), - [sym_qualifiedAccessExpr] = STATE(418), - [sym_functionLiteralExpr] = STATE(418), - [sym_lineComment] = STATE(207), - [sym_identifier] = ACTIONS(693), + [STATE(211)] = { + [sym_shebangComment] = STATE(211), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(428), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(211), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(695), - [anon_sym_import] = ACTIONS(697), - [anon_sym_import_STAR] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(701), - [sym_thisExpr] = ACTIONS(703), - [sym_outerExpr] = ACTIONS(703), - [sym_nullLiteralExpr] = ACTIONS(703), - [sym_trueLiteralExpr] = ACTIONS(703), - [sym_falseLiteralExpr] = ACTIONS(703), - [sym_intLiteralExpr] = ACTIONS(703), - [sym_floatLiteralExpr] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_POUND_DQUOTE] = ACTIONS(709), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(711), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(713), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(715), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(717), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(721), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(729), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(733), - [anon_sym_new] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_if] = ACTIONS(741), - [anon_sym_let] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_trace] = ACTIONS(747), - [anon_sym_read] = ACTIONS(749), - [anon_sym_read_QMARK] = ACTIONS(751), - [anon_sym_read_STAR] = ACTIONS(751), - [anon_sym_super] = ACTIONS(753), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [STATE(208)] = { - [sym_shebangComment] = STATE(208), - [sym_lineComment] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(417), + [STATE(212)] = { + [sym_shebangComment] = STATE(212), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(429), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(212), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(417), - [anon_sym_extends] = ACTIONS(417), - [anon_sym_amends] = ACTIONS(417), - [anon_sym_import] = ACTIONS(417), - [anon_sym_import_STAR] = ACTIONS(419), - [anon_sym_class] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_typealias] = ACTIONS(417), - [anon_sym_function] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(419), - [anon_sym_for] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_when] = ACTIONS(417), - [anon_sym_else] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(419), - [anon_sym_external] = ACTIONS(417), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_local] = ACTIONS(417), - [anon_sym_hidden] = ACTIONS(417), - [anon_sym_fixed] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [sym_thisExpr] = ACTIONS(417), - [sym_outerExpr] = ACTIONS(417), - [sym_nullLiteralExpr] = ACTIONS(417), - [sym_trueLiteralExpr] = ACTIONS(417), - [sym_falseLiteralExpr] = ACTIONS(417), - [sym_intLiteralExpr] = ACTIONS(417), - [sym_floatLiteralExpr] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_new] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(419), - [anon_sym_if] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_throw] = ACTIONS(417), - [anon_sym_trace] = ACTIONS(417), - [anon_sym_read] = ACTIONS(417), - [anon_sym_read_QMARK] = ACTIONS(419), - [anon_sym_read_STAR] = ACTIONS(419), - [anon_sym_super] = ACTIONS(417), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [aux_sym_docComment_token1] = ACTIONS(419), [sym_blockComment] = ACTIONS(9), }, - [STATE(209)] = { - [sym_shebangComment] = STATE(209), - [sym_lineComment] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(415), - [sym_identifier] = ACTIONS(413), + [STATE(213)] = { + [sym_shebangComment] = STATE(213), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(430), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(213), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(413), - [anon_sym_extends] = ACTIONS(413), - [anon_sym_amends] = ACTIONS(413), - [anon_sym_import] = ACTIONS(413), - [anon_sym_import_STAR] = ACTIONS(415), - [anon_sym_class] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_function] = ACTIONS(413), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(413), - [anon_sym_LBRACK_LBRACK] = ACTIONS(415), - [anon_sym_for] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_when] = ACTIONS(413), - [anon_sym_else] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(415), - [anon_sym_external] = ACTIONS(413), - [anon_sym_abstract] = ACTIONS(413), - [anon_sym_open] = ACTIONS(413), - [anon_sym_local] = ACTIONS(413), - [anon_sym_hidden] = ACTIONS(413), - [anon_sym_fixed] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [sym_thisExpr] = ACTIONS(413), - [sym_outerExpr] = ACTIONS(413), - [sym_nullLiteralExpr] = ACTIONS(413), - [sym_trueLiteralExpr] = ACTIONS(413), - [sym_falseLiteralExpr] = ACTIONS(413), - [sym_intLiteralExpr] = ACTIONS(413), - [sym_floatLiteralExpr] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(415), - [anon_sym_if] = ACTIONS(413), - [anon_sym_let] = ACTIONS(413), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_trace] = ACTIONS(413), - [anon_sym_read] = ACTIONS(413), - [anon_sym_read_QMARK] = ACTIONS(415), - [anon_sym_read_STAR] = ACTIONS(415), - [anon_sym_super] = ACTIONS(413), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [aux_sym_docComment_token1] = ACTIONS(415), [sym_blockComment] = ACTIONS(9), }, - [STATE(210)] = { - [sym_shebangComment] = STATE(210), - [sym_lineComment] = STATE(210), - [ts_builtin_sym_end] = ACTIONS(407), - [sym_identifier] = ACTIONS(405), + [STATE(214)] = { + [sym_shebangComment] = STATE(214), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(433), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(214), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(405), - [anon_sym_extends] = ACTIONS(405), - [anon_sym_amends] = ACTIONS(405), - [anon_sym_import] = ACTIONS(405), - [anon_sym_import_STAR] = ACTIONS(407), - [anon_sym_class] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_typealias] = ACTIONS(405), - [anon_sym_function] = ACTIONS(405), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(407), - [anon_sym_for] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_when] = ACTIONS(405), - [anon_sym_else] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(407), - [anon_sym_external] = ACTIONS(405), - [anon_sym_abstract] = ACTIONS(405), - [anon_sym_open] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_hidden] = ACTIONS(405), - [anon_sym_fixed] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [sym_thisExpr] = ACTIONS(405), - [sym_outerExpr] = ACTIONS(405), - [sym_nullLiteralExpr] = ACTIONS(405), - [sym_trueLiteralExpr] = ACTIONS(405), - [sym_falseLiteralExpr] = ACTIONS(405), - [sym_intLiteralExpr] = ACTIONS(405), - [sym_floatLiteralExpr] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(405), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(407), - [anon_sym_new] = ACTIONS(405), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_if] = ACTIONS(405), - [anon_sym_let] = ACTIONS(405), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_trace] = ACTIONS(405), - [anon_sym_read] = ACTIONS(405), - [anon_sym_read_QMARK] = ACTIONS(407), - [anon_sym_read_STAR] = ACTIONS(407), - [anon_sym_super] = ACTIONS(405), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [aux_sym_docComment_token1] = ACTIONS(407), [sym_blockComment] = ACTIONS(9), }, - [STATE(211)] = { - [sym_shebangComment] = STATE(211), - [sym_objectBody] = STATE(212), - [sym_lineComment] = STATE(211), - [aux_sym_classProperty_repeat1] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(757), + [STATE(215)] = { + [sym_shebangComment] = STATE(215), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(434), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(215), + [sym_identifier] = ACTIONS(639), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_import_STAR] = ACTIONS(755), - [anon_sym_class] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_typealias] = ACTIONS(757), - [anon_sym_function] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_when] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(755), - [anon_sym_external] = ACTIONS(757), - [anon_sym_abstract] = ACTIONS(757), - [anon_sym_open] = ACTIONS(757), - [anon_sym_local] = ACTIONS(757), - [anon_sym_hidden] = ACTIONS(757), - [anon_sym_fixed] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [sym_thisExpr] = ACTIONS(757), - [sym_outerExpr] = ACTIONS(757), - [sym_nullLiteralExpr] = ACTIONS(757), - [sym_trueLiteralExpr] = ACTIONS(757), - [sym_falseLiteralExpr] = ACTIONS(757), - [sym_intLiteralExpr] = ACTIONS(757), - [sym_floatLiteralExpr] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_POUND_DQUOTE] = ACTIONS(757), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(757), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_new] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_if] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_trace] = ACTIONS(757), - [anon_sym_read] = ACTIONS(757), - [anon_sym_read_QMARK] = ACTIONS(755), - [anon_sym_read_STAR] = ACTIONS(755), - [anon_sym_super] = ACTIONS(757), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [aux_sym_docComment_token1] = ACTIONS(755), [sym_blockComment] = ACTIONS(9), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(212), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(762), 21, - ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LBRACK_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_QMARK, - sym_floatLiteralExpr, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_read_QMARK, - anon_sym_read_STAR, - aux_sym_docComment_token1, - ACTIONS(764), 37, - anon_sym_module, - anon_sym_import, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_for, - anon_sym_when, + [STATE(216)] = { + [sym_shebangComment] = STATE(216), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(439), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(216), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(217)] = { + [sym_shebangComment] = STATE(217), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(440), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(217), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(218)] = { + [sym_shebangComment] = STATE(218), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(486), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(218), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(219)] = { + [sym_shebangComment] = STATE(219), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(442), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(219), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(220)] = { + [sym_shebangComment] = STATE(220), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(443), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(220), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(221)] = { + [sym_shebangComment] = STATE(221), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(367), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(221), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(222)] = { + [sym_shebangComment] = STATE(222), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(445), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(222), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(223)] = { + [sym_shebangComment] = STATE(223), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(446), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(223), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(224)] = { + [sym_shebangComment] = STATE(224), + [sym_parameterList] = STATE(972), + [sym__expr] = STATE(368), + [sym_parenthesizedExpr] = STATE(51), + [sym_moduleExpr] = STATE(63), + [sym_slStringLiteralExpr] = STATE(63), + [sym_mlStringLiteralExpr] = STATE(63), + [sym_newExpr] = STATE(51), + [sym_amendExpr] = STATE(51), + [sym_subscriptExpr] = STATE(63), + [sym_unaryMinusExpr] = STATE(63), + [sym_logicalNotExpr] = STATE(63), + [sym_nonNullExpr] = STATE(63), + [sym_nullCoalesceExpr] = STATE(63), + [sym_exponentiationExpr] = STATE(63), + [sym_multiplicativeExpr] = STATE(63), + [sym_additiveExpr] = STATE(63), + [sym_comparisonExpr] = STATE(63), + [sym_equalityExpr] = STATE(63), + [sym_logicalAndExpr] = STATE(63), + [sym_logicalOrExpr] = STATE(63), + [sym_pipeExpr] = STATE(63), + [sym_typeTestExpr] = STATE(63), + [sym_typeCastExpr] = STATE(63), + [sym_ifExpr] = STATE(63), + [sym_letExpr] = STATE(63), + [sym_throwExpr] = STATE(63), + [sym_traceExpr] = STATE(63), + [sym_readExpr] = STATE(63), + [sym_importExpr] = STATE(63), + [sym_unqualifiedAccessExpr] = STATE(63), + [sym_superAccessExpr] = STATE(63), + [sym_superSubscriptExpr] = STATE(63), + [sym_qualifiedAccessExpr] = STATE(63), + [sym_functionLiteralExpr] = STATE(63), + [sym_lineComment] = STATE(224), + [sym_identifier] = ACTIONS(639), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteralExpr] = ACTIONS(63), + [sym_trueLiteralExpr] = ACTIONS(63), + [sym_falseLiteralExpr] = ACTIONS(63), + [sym_intLiteralExpr] = ACTIONS(63), + [sym_floatLiteralExpr] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_if] = ACTIONS(101), + [anon_sym_let] = ACTIONS(103), + [anon_sym_throw] = ACTIONS(105), + [anon_sym_trace] = ACTIONS(107), + [anon_sym_read] = ACTIONS(109), + [anon_sym_read_QMARK] = ACTIONS(111), + [anon_sym_read_STAR] = ACTIONS(111), + [anon_sym_super] = ACTIONS(113), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(225)] = { + [sym_shebangComment] = STATE(225), + [sym_parameterList] = STATE(947), + [sym__expr] = STATE(478), + [sym_parenthesizedExpr] = STATE(374), + [sym_moduleExpr] = STATE(431), + [sym_slStringLiteralExpr] = STATE(431), + [sym_mlStringLiteralExpr] = STATE(431), + [sym_newExpr] = STATE(374), + [sym_amendExpr] = STATE(374), + [sym_subscriptExpr] = STATE(431), + [sym_unaryMinusExpr] = STATE(431), + [sym_logicalNotExpr] = STATE(431), + [sym_nonNullExpr] = STATE(431), + [sym_nullCoalesceExpr] = STATE(431), + [sym_exponentiationExpr] = STATE(431), + [sym_multiplicativeExpr] = STATE(431), + [sym_additiveExpr] = STATE(431), + [sym_comparisonExpr] = STATE(431), + [sym_equalityExpr] = STATE(431), + [sym_logicalAndExpr] = STATE(431), + [sym_logicalOrExpr] = STATE(431), + [sym_pipeExpr] = STATE(431), + [sym_typeTestExpr] = STATE(431), + [sym_typeCastExpr] = STATE(431), + [sym_ifExpr] = STATE(431), + [sym_letExpr] = STATE(431), + [sym_throwExpr] = STATE(431), + [sym_traceExpr] = STATE(431), + [sym_readExpr] = STATE(431), + [sym_importExpr] = STATE(431), + [sym_unqualifiedAccessExpr] = STATE(431), + [sym_superAccessExpr] = STATE(431), + [sym_superSubscriptExpr] = STATE(431), + [sym_qualifiedAccessExpr] = STATE(431), + [sym_functionLiteralExpr] = STATE(431), + [sym_lineComment] = STATE(225), + [sym_identifier] = ACTIONS(737), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(739), + [anon_sym_import] = ACTIONS(741), + [anon_sym_import_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(745), + [sym_thisExpr] = ACTIONS(747), + [sym_outerExpr] = ACTIONS(747), + [sym_nullLiteralExpr] = ACTIONS(747), + [sym_trueLiteralExpr] = ACTIONS(747), + [sym_falseLiteralExpr] = ACTIONS(747), + [sym_intLiteralExpr] = ACTIONS(747), + [sym_floatLiteralExpr] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_POUND_DQUOTE] = ACTIONS(753), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(755), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(757), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(759), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(761), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(765), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(773), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_if] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_trace] = ACTIONS(791), + [anon_sym_read] = ACTIONS(793), + [anon_sym_read_QMARK] = ACTIONS(795), + [anon_sym_read_STAR] = ACTIONS(795), + [anon_sym_super] = ACTIONS(797), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(226)] = { + [sym_shebangComment] = STATE(226), + [sym_lineComment] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(433), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(433), + [anon_sym_extends] = ACTIONS(433), + [anon_sym_amends] = ACTIONS(433), + [anon_sym_import] = ACTIONS(433), + [anon_sym_import_STAR] = ACTIONS(435), + [anon_sym_class] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_typealias] = ACTIONS(433), + [anon_sym_function] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK_LBRACK] = ACTIONS(435), + [anon_sym_for] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_when] = ACTIONS(433), + [anon_sym_else] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(435), + [anon_sym_external] = ACTIONS(433), + [anon_sym_abstract] = ACTIONS(433), + [anon_sym_open] = ACTIONS(433), + [anon_sym_local] = ACTIONS(433), + [anon_sym_hidden] = ACTIONS(433), + [anon_sym_fixed] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [sym_thisExpr] = ACTIONS(433), + [sym_outerExpr] = ACTIONS(433), + [sym_nullLiteralExpr] = ACTIONS(433), + [sym_trueLiteralExpr] = ACTIONS(433), + [sym_falseLiteralExpr] = ACTIONS(433), + [sym_intLiteralExpr] = ACTIONS(433), + [sym_floatLiteralExpr] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), + [anon_sym_new] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_if] = ACTIONS(433), + [anon_sym_let] = ACTIONS(433), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_trace] = ACTIONS(433), + [anon_sym_read] = ACTIONS(433), + [anon_sym_read_QMARK] = ACTIONS(435), + [anon_sym_read_STAR] = ACTIONS(435), + [anon_sym_super] = ACTIONS(433), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [aux_sym_docComment_token1] = ACTIONS(435), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(227)] = { + [sym_shebangComment] = STATE(227), + [sym_lineComment] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(411), + [sym_identifier] = ACTIONS(409), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(409), + [anon_sym_extends] = ACTIONS(409), + [anon_sym_amends] = ACTIONS(409), + [anon_sym_import] = ACTIONS(409), + [anon_sym_import_STAR] = ACTIONS(411), + [anon_sym_class] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_typealias] = ACTIONS(409), + [anon_sym_function] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LBRACK_LBRACK] = ACTIONS(411), + [anon_sym_for] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_when] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(411), + [anon_sym_external] = ACTIONS(409), + [anon_sym_abstract] = ACTIONS(409), + [anon_sym_open] = ACTIONS(409), + [anon_sym_local] = ACTIONS(409), + [anon_sym_hidden] = ACTIONS(409), + [anon_sym_fixed] = ACTIONS(409), + [anon_sym_const] = ACTIONS(409), + [sym_thisExpr] = ACTIONS(409), + [sym_outerExpr] = ACTIONS(409), + [sym_nullLiteralExpr] = ACTIONS(409), + [sym_trueLiteralExpr] = ACTIONS(409), + [sym_falseLiteralExpr] = ACTIONS(409), + [sym_intLiteralExpr] = ACTIONS(409), + [sym_floatLiteralExpr] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_POUND_DQUOTE] = ACTIONS(409), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(409), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(409), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(409), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(409), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_if] = ACTIONS(409), + [anon_sym_let] = ACTIONS(409), + [anon_sym_throw] = ACTIONS(409), + [anon_sym_trace] = ACTIONS(409), + [anon_sym_read] = ACTIONS(409), + [anon_sym_read_QMARK] = ACTIONS(411), + [anon_sym_read_STAR] = ACTIONS(411), + [anon_sym_super] = ACTIONS(409), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [aux_sym_docComment_token1] = ACTIONS(411), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(228)] = { + [sym_shebangComment] = STATE(228), + [sym_lineComment] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(417), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(417), + [anon_sym_extends] = ACTIONS(417), + [anon_sym_amends] = ACTIONS(417), + [anon_sym_import] = ACTIONS(417), + [anon_sym_import_STAR] = ACTIONS(419), + [anon_sym_class] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_typealias] = ACTIONS(417), + [anon_sym_function] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(419), + [anon_sym_for] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_when] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(419), + [anon_sym_external] = ACTIONS(417), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_open] = ACTIONS(417), + [anon_sym_local] = ACTIONS(417), + [anon_sym_hidden] = ACTIONS(417), + [anon_sym_fixed] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [sym_thisExpr] = ACTIONS(417), + [sym_outerExpr] = ACTIONS(417), + [sym_nullLiteralExpr] = ACTIONS(417), + [sym_trueLiteralExpr] = ACTIONS(417), + [sym_falseLiteralExpr] = ACTIONS(417), + [sym_intLiteralExpr] = ACTIONS(417), + [sym_floatLiteralExpr] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), + [anon_sym_new] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_if] = ACTIONS(417), + [anon_sym_let] = ACTIONS(417), + [anon_sym_throw] = ACTIONS(417), + [anon_sym_trace] = ACTIONS(417), + [anon_sym_read] = ACTIONS(417), + [anon_sym_read_QMARK] = ACTIONS(419), + [anon_sym_read_STAR] = ACTIONS(419), + [anon_sym_super] = ACTIONS(417), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [aux_sym_docComment_token1] = ACTIONS(419), + [sym_blockComment] = ACTIONS(9), + }, + [STATE(229)] = { + [sym_shebangComment] = STATE(229), + [sym_objectBody] = STATE(230), + [sym_lineComment] = STATE(229), + [aux_sym_classProperty_repeat1] = STATE(229), + [ts_builtin_sym_end] = ACTIONS(799), + [sym_identifier] = ACTIONS(801), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(801), + [anon_sym_import] = ACTIONS(801), + [anon_sym_import_STAR] = ACTIONS(799), + [anon_sym_class] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(799), + [anon_sym_typealias] = ACTIONS(801), + [anon_sym_function] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(799), + [anon_sym_for] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_when] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(799), + [anon_sym_external] = ACTIONS(801), + [anon_sym_abstract] = ACTIONS(801), + [anon_sym_open] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_hidden] = ACTIONS(801), + [anon_sym_fixed] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [sym_thisExpr] = ACTIONS(801), + [sym_outerExpr] = ACTIONS(801), + [sym_nullLiteralExpr] = ACTIONS(801), + [sym_trueLiteralExpr] = ACTIONS(801), + [sym_falseLiteralExpr] = ACTIONS(801), + [sym_intLiteralExpr] = ACTIONS(801), + [sym_floatLiteralExpr] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND_DQUOTE] = ACTIONS(801), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(801), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(801), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(801), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(801), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(801), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), + [anon_sym_new] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_throw] = ACTIONS(801), + [anon_sym_trace] = ACTIONS(801), + [anon_sym_read] = ACTIONS(801), + [anon_sym_read_QMARK] = ACTIONS(799), + [anon_sym_read_STAR] = ACTIONS(799), + [anon_sym_super] = ACTIONS(801), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [aux_sym_docComment_token1] = ACTIONS(799), + [sym_blockComment] = ACTIONS(9), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(230), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(806), 21, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteralExpr, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + aux_sym_docComment_token1, + ACTIONS(808), 37, + anon_sym_module, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, anon_sym_DOT_DOT_DOT, anon_sym_external, anon_sym_abstract, @@ -24479,14 +26063,14 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(229), 1, aux_sym_classProperty_repeat1, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(213), 2, + STATE(231), 2, sym_shebangComment, sym_lineComment, - ACTIONS(589), 17, + ACTIONS(812), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24504,7 +26088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(587), 35, + ACTIONS(810), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24551,14 +26135,14 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(229), 1, aux_sym_classProperty_repeat1, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(214), 2, + STATE(232), 2, sym_shebangComment, sym_lineComment, - ACTIONS(768), 17, + ACTIONS(617), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24576,7 +26160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(766), 35, + ACTIONS(615), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24623,14 +26207,14 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(229), 1, aux_sym_classProperty_repeat1, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(215), 2, + STATE(233), 2, sym_shebangComment, sym_lineComment, - ACTIONS(772), 17, + ACTIONS(816), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24648,7 +26232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(770), 35, + ACTIONS(814), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24695,14 +26279,14 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(229), 1, aux_sym_classProperty_repeat1, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(216), 2, + STATE(234), 2, sym_shebangComment, sym_lineComment, - ACTIONS(776), 17, + ACTIONS(820), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24720,7 +26304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(774), 35, + ACTIONS(818), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24765,12 +26349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(782), 1, + ACTIONS(826), 1, anon_sym_else, - STATE(217), 2, + STATE(235), 2, sym_shebangComment, sym_lineComment, - ACTIONS(780), 17, + ACTIONS(824), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24788,7 +26372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(778), 35, + ACTIONS(822), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24833,10 +26417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(218), 2, + STATE(236), 2, sym_shebangComment, sym_lineComment, - ACTIONS(786), 17, + ACTIONS(830), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24854,7 +26438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(784), 35, + ACTIONS(828), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24899,10 +26483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(219), 2, + STATE(237), 2, sym_shebangComment, sym_lineComment, - ACTIONS(790), 17, + ACTIONS(834), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24920,7 +26504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(788), 35, + ACTIONS(832), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -24965,10 +26549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(220), 2, + STATE(238), 2, sym_shebangComment, sym_lineComment, - ACTIONS(794), 17, + ACTIONS(838), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -24986,7 +26570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(792), 35, + ACTIONS(836), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -25031,10 +26615,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(221), 2, + STATE(239), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(842), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteralExpr, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(840), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteralExpr, + sym_trueLiteralExpr, + sym_falseLiteralExpr, + sym_intLiteralExpr, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + anon_sym_super, + sym_identifier, + [775] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(240), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(846), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteralExpr, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(844), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteralExpr, + sym_trueLiteralExpr, + sym_falseLiteralExpr, + sym_intLiteralExpr, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + anon_sym_super, + sym_identifier, + [848] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(241), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(850), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteralExpr, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(848), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteralExpr, + sym_trueLiteralExpr, + sym_falseLiteralExpr, + sym_intLiteralExpr, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + anon_sym_super, + sym_identifier, + [921] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(242), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(854), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteralExpr, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(852), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteralExpr, + sym_trueLiteralExpr, + sym_falseLiteralExpr, + sym_intLiteralExpr, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + anon_sym_super, + sym_identifier, + [994] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(243), 2, sym_shebangComment, sym_lineComment, - ACTIONS(798), 17, + ACTIONS(858), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -25052,7 +26900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(796), 35, + ACTIONS(856), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -25088,7 +26936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_super, sym_identifier, - [775] = 7, + [1067] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25097,35 +26945,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(222), 2, + ACTIONS(860), 1, + anon_sym_LT, + STATE(249), 1, + sym_typeArgumentList, + STATE(244), 2, sym_shebangComment, sym_lineComment, - ACTIONS(802), 17, - anon_sym_import_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_QMARK, - sym_floatLiteralExpr, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_read_QMARK, - anon_sym_read_STAR, - ACTIONS(800), 35, - anon_sym_module, - anon_sym_import, + ACTIONS(272), 18, + anon_sym_as, + anon_sym_class, + anon_sym_typealias, anon_sym_function, - anon_sym_LBRACK, - anon_sym_for, - anon_sym_when, - anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -25133,94 +26968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_thisExpr, - sym_outerExpr, - sym_nullLiteralExpr, - sym_trueLiteralExpr, - sym_falseLiteralExpr, - sym_intLiteralExpr, - anon_sym_DQUOTE, - anon_sym_POUND_DQUOTE, - anon_sym_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_new, - anon_sym_if, - anon_sym_let, - anon_sym_throw, - anon_sym_trace, - anon_sym_read, - anon_sym_super, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [848] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(223), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(806), 17, - anon_sym_import_STAR, + ACTIONS(274), 22, + sym__open_subscript_bracket, + sym__open_argument_paren, + sym__binary_minus, + ts_builtin_sym_end, anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_QMARK, - sym_floatLiteralExpr, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_read_QMARK, - anon_sym_read_STAR, - ACTIONS(804), 35, - anon_sym_module, - anon_sym_import, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_for, - anon_sym_when, - anon_sym_DOT_DOT_DOT, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_thisExpr, - sym_outerExpr, - sym_nullLiteralExpr, - sym_trueLiteralExpr, - sym_falseLiteralExpr, - sym_intLiteralExpr, - anon_sym_DQUOTE, - anon_sym_POUND_DQUOTE, - anon_sym_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_new, - anon_sym_if, - anon_sym_let, - anon_sym_throw, - anon_sym_trace, - anon_sym_read, - anon_sym_super, - sym_identifier, - [921] = 7, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [1134] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25229,35 +27003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(224), 2, + ACTIONS(862), 1, + anon_sym_DOT, + STATE(248), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(245), 2, sym_shebangComment, sym_lineComment, - ACTIONS(810), 17, - anon_sym_import_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_QMARK, - sym_floatLiteralExpr, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_read_QMARK, - anon_sym_read_STAR, - ACTIONS(808), 35, - anon_sym_module, - anon_sym_import, + ACTIONS(291), 19, + anon_sym_as, + anon_sym_class, + anon_sym_typealias, anon_sym_function, - anon_sym_LBRACK, - anon_sym_for, - anon_sym_when, - anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -25265,28 +27027,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_thisExpr, - sym_outerExpr, - sym_nullLiteralExpr, - sym_trueLiteralExpr, - sym_falseLiteralExpr, - sym_intLiteralExpr, - anon_sym_DQUOTE, - anon_sym_POUND_DQUOTE, - anon_sym_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, - anon_sym_new, - anon_sym_if, - anon_sym_let, - anon_sym_throw, - anon_sym_trace, - anon_sym_read, - anon_sym_super, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [994] = 9, + ACTIONS(293), 21, + sym__open_subscript_bracket, + sym__open_argument_paren, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [1201] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25295,11 +27061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(812), 1, + ACTIONS(865), 1, anon_sym_DOT, - STATE(228), 1, + STATE(245), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(225), 2, + STATE(246), 2, sym_shebangComment, sym_lineComment, ACTIONS(284), 19, @@ -25344,7 +27110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1061] = 9, + [1268] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25353,14 +27119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(815), 1, - anon_sym_LT, - STATE(243), 1, - sym_typeArgumentList, - STATE(226), 2, + ACTIONS(868), 1, + anon_sym_DASH_GT, + STATE(247), 2, sym_shebangComment, sym_lineComment, - ACTIONS(272), 18, + ACTIONS(278), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25368,6 +27132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, anon_sym_GT, anon_sym_external, anon_sym_abstract, @@ -25379,7 +27144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(274), 22, + ACTIONS(280), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -25402,7 +27167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1128] = 8, + [1333] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25411,9 +27176,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(817), 1, + ACTIONS(870), 1, anon_sym_DOT, - STATE(227), 3, + STATE(248), 3, sym_shebangComment, sym_lineComment, aux_sym_qualifiedIdentifier_repeat1, @@ -25459,7 +27224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1193] = 9, + [1398] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25468,14 +27233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(820), 1, - anon_sym_DOT, - STATE(227), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(228), 2, + STATE(249), 2, sym_shebangComment, sym_lineComment, - ACTIONS(291), 19, + ACTIONS(359), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25495,7 +27256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(293), 21, + ACTIONS(361), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -25515,9 +27276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, + anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1260] = 8, + [1460] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25526,18 +27288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(823), 1, - anon_sym_DASH_GT, - STATE(229), 2, + ACTIONS(873), 1, + anon_sym_QMARK, + ACTIONS(875), 1, + anon_sym_PIPE, + ACTIONS(877), 1, + sym__open_argument_paren, + STATE(250), 2, sym_shebangComment, sym_lineComment, - ACTIONS(278), 19, + ACTIONS(343), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -25551,9 +27315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(280), 22, + ACTIONS(345), 21, sym__open_subscript_bracket, - sym__open_argument_paren, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, @@ -25574,7 +27337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1325] = 10, + [1528] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25583,16 +27346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_QMARK, - ACTIONS(827), 1, + ACTIONS(875), 1, anon_sym_PIPE, - ACTIONS(829), 1, + ACTIONS(877), 1, sym__open_argument_paren, - STATE(230), 2, + STATE(251), 2, sym_shebangComment, sym_lineComment, - ACTIONS(367), 17, + ACTIONS(335), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25610,7 +27373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(369), 21, + ACTIONS(337), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -25632,7 +27395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1393] = 7, + [1596] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25641,10 +27404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(231), 2, + STATE(252), 2, sym_shebangComment, sym_lineComment, - ACTIONS(379), 19, + ACTIONS(331), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25664,7 +27427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(381), 22, + ACTIONS(333), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -25687,7 +27450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1455] = 7, + [1658] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25696,10 +27459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(232), 2, + STATE(253), 2, sym_shebangComment, sym_lineComment, - ACTIONS(298), 19, + ACTIONS(323), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25719,7 +27482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(300), 22, + ACTIONS(325), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -25742,7 +27505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1517] = 10, + [1720] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25751,20 +27514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_QMARK, - ACTIONS(827), 1, - anon_sym_PIPE, - ACTIONS(829), 1, + ACTIONS(877), 1, sym__open_argument_paren, - STATE(233), 2, + STATE(254), 2, sym_shebangComment, sym_lineComment, - ACTIONS(363), 17, + ACTIONS(309), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -25778,7 +27540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(365), 21, + ACTIONS(311), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -25800,7 +27562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1585] = 10, + [1786] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25809,16 +27571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_QMARK, - ACTIONS(827), 1, + ACTIONS(875), 1, anon_sym_PIPE, - ACTIONS(829), 1, + ACTIONS(877), 1, sym__open_argument_paren, - STATE(234), 2, + STATE(255), 2, sym_shebangComment, sym_lineComment, - ACTIONS(343), 17, + ACTIONS(317), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25836,7 +27598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(345), 21, + ACTIONS(319), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -25858,7 +27620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1653] = 7, + [1854] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25867,10 +27629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(235), 2, + STATE(256), 2, sym_shebangComment, sym_lineComment, - ACTIONS(351), 19, + ACTIONS(339), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25890,7 +27652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(353), 22, + ACTIONS(341), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -25913,7 +27675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1715] = 7, + [1916] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25922,10 +27684,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(236), 2, + ACTIONS(873), 1, + anon_sym_QMARK, + ACTIONS(875), 1, + anon_sym_PIPE, + ACTIONS(877), 1, + sym__open_argument_paren, + STATE(257), 2, sym_shebangComment, sym_lineComment, - ACTIONS(371), 19, + ACTIONS(327), 17, + anon_sym_as, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + anon_sym_SLASH, + anon_sym_is, + sym_identifier, + ACTIONS(329), 21, + sym__open_subscript_bracket, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [1984] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(258), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(387), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -25945,7 +27765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(373), 22, + ACTIONS(389), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -25968,7 +27788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1777] = 7, + [2046] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25977,10 +27797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(237), 2, + STATE(259), 2, sym_shebangComment, sym_lineComment, - ACTIONS(375), 19, + ACTIONS(391), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26000,7 +27820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(377), 22, + ACTIONS(393), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -26023,7 +27843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1839] = 7, + [2108] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26032,7 +27852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(238), 2, + STATE(260), 2, sym_shebangComment, sym_lineComment, ACTIONS(355), 19, @@ -26078,7 +27898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1901] = 7, + [2170] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26087,10 +27907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(239), 2, + STATE(261), 2, sym_shebangComment, sym_lineComment, - ACTIONS(359), 19, + ACTIONS(298), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26110,7 +27930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(361), 22, + ACTIONS(300), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -26133,7 +27953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [1963] = 10, + [2232] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26142,20 +27962,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(825), 1, + STATE(262), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(305), 19, + anon_sym_as, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_QMARK, - ACTIONS(827), 1, anon_sym_PIPE, - ACTIONS(829), 1, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + anon_sym_SLASH, + anon_sym_is, + sym_identifier, + ACTIONS(307), 22, + sym__open_subscript_bracket, sym__open_argument_paren, - STATE(240), 2, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [2294] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(263), 2, sym_shebangComment, sym_lineComment, - ACTIONS(325), 17, + ACTIONS(363), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -26169,8 +28040,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(327), 21, + ACTIONS(365), 22, sym__open_subscript_bracket, + sym__open_argument_paren, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, @@ -26191,7 +28063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2031] = 8, + [2356] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26200,12 +28072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(829), 1, - sym__open_argument_paren, - STATE(241), 2, + STATE(264), 2, sym_shebangComment, sym_lineComment, - ACTIONS(305), 19, + ACTIONS(367), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26225,8 +28095,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(307), 21, + ACTIONS(369), 22, sym__open_subscript_bracket, + sym__open_argument_paren, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, @@ -26247,7 +28118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2095] = 7, + [2418] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26256,10 +28127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(242), 2, + STATE(265), 2, sym_shebangComment, sym_lineComment, - ACTIONS(315), 19, + ACTIONS(371), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26279,7 +28150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(317), 22, + ACTIONS(373), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -26302,7 +28173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2157] = 7, + [2480] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26311,10 +28182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(243), 2, + STATE(266), 2, sym_shebangComment, sym_lineComment, - ACTIONS(311), 19, + ACTIONS(375), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26334,7 +28205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(313), 22, + ACTIONS(377), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -26357,7 +28228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2219] = 9, + [2542] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26366,19 +28237,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_QMARK, - ACTIONS(829), 1, + ACTIONS(875), 1, + anon_sym_PIPE, + ACTIONS(877), 1, sym__open_argument_paren, - STATE(244), 2, + STATE(267), 2, sym_shebangComment, sym_lineComment, - ACTIONS(319), 18, + ACTIONS(379), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + anon_sym_SLASH, + anon_sym_is, + sym_identifier, + ACTIONS(381), 21, + sym__open_subscript_bracket, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [2610] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(873), 1, + anon_sym_QMARK, + ACTIONS(875), 1, anon_sym_PIPE, + ACTIONS(877), 1, + sym__open_argument_paren, + STATE(268), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(383), 17, + anon_sym_as, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -26392,7 +28322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(321), 21, + ACTIONS(385), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -26414,7 +28344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2285] = 7, + [2678] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26423,7 +28353,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(245), 2, + ACTIONS(877), 1, + sym__open_argument_paren, + STATE(269), 2, sym_shebangComment, sym_lineComment, ACTIONS(347), 19, @@ -26446,9 +28378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(349), 22, + ACTIONS(349), 21, sym__open_subscript_bracket, - sym__open_argument_paren, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, @@ -26469,7 +28400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2347] = 7, + [2742] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26478,10 +28409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(246), 2, + STATE(270), 2, sym_shebangComment, sym_lineComment, - ACTIONS(331), 19, + ACTIONS(351), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26501,7 +28432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(333), 22, + ACTIONS(353), 22, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -26524,7 +28455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2409] = 10, + [2804] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26533,16 +28464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(825), 1, - anon_sym_QMARK, - ACTIONS(827), 1, - anon_sym_PIPE, - ACTIONS(829), 1, + ACTIONS(879), 1, sym__open_argument_paren, - STATE(247), 2, + STATE(296), 1, + sym_argumentList, + STATE(271), 2, sym_shebangComment, sym_lineComment, - ACTIONS(335), 17, + ACTIONS(395), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26560,7 +28489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(337), 21, + ACTIONS(397), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -26582,7 +28511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2477] = 7, + [2869] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26591,16 +28520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(248), 2, + ACTIONS(881), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_objectBody, + STATE(272), 2, sym_shebangComment, sym_lineComment, - ACTIONS(339), 19, + ACTIONS(403), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -26614,9 +28545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(341), 22, + ACTIONS(405), 21, sym__open_subscript_bracket, - sym__open_argument_paren, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, @@ -26637,7 +28567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2539] = 9, + [2934] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26646,14 +28576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(831), 1, + ACTIONS(879), 1, sym__open_argument_paren, - STATE(293), 1, + STATE(299), 1, sym_argumentList, - STATE(249), 2, + STATE(273), 2, sym_shebangComment, sym_lineComment, - ACTIONS(383), 17, + ACTIONS(399), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26671,7 +28601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(385), 21, + ACTIONS(401), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -26693,7 +28623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2604] = 9, + [2999] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26702,14 +28632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(831), 1, + ACTIONS(879), 1, sym__open_argument_paren, - STATE(290), 1, + STATE(317), 1, sym_argumentList, - STATE(250), 2, + STATE(274), 2, sym_shebangComment, sym_lineComment, - ACTIONS(393), 17, + ACTIONS(258), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26727,7 +28657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(395), 21, + ACTIONS(260), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -26749,7 +28679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2669] = 9, + [3064] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26758,14 +28688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(833), 1, - anon_sym_LBRACE, - STATE(259), 1, - sym_objectBody, - STATE(251), 2, + STATE(275), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 17, + ACTIONS(425), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26783,10 +28709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(389), 21, + ACTIONS(427), 22, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_BANG_BANG, @@ -26805,7 +28732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2734] = 9, + [3124] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26814,14 +28741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(831), 1, - sym__open_argument_paren, - STATE(267), 1, - sym_argumentList, - STATE(252), 2, + STATE(276), 2, sym_shebangComment, sym_lineComment, - ACTIONS(258), 17, + ACTIONS(417), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26839,10 +28762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(260), 21, + ACTIONS(419), 22, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_BANG_BANG, @@ -26861,7 +28785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2799] = 7, + [3184] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26870,10 +28794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(253), 2, + STATE(277), 2, sym_shebangComment, sym_lineComment, - ACTIONS(413), 17, + ACTIONS(429), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26891,7 +28815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(415), 22, + ACTIONS(431), 22, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -26914,7 +28838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2859] = 7, + [3244] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26923,10 +28847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(254), 2, + STATE(278), 2, sym_shebangComment, sym_lineComment, - ACTIONS(405), 17, + ACTIONS(433), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26944,7 +28868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(407), 22, + ACTIONS(435), 22, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -26967,7 +28891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2919] = 7, + [3304] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26976,10 +28900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(255), 2, + STATE(279), 2, sym_shebangComment, sym_lineComment, - ACTIONS(421), 17, + ACTIONS(413), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26997,7 +28921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(423), 22, + ACTIONS(415), 22, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27020,7 +28944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [2979] = 7, + [3364] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27029,7 +28953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(256), 2, + STATE(280), 2, sym_shebangComment, sym_lineComment, ACTIONS(409), 17, @@ -27073,7 +28997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3039] = 7, + [3424] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27082,10 +29006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(257), 2, + STATE(281), 2, sym_shebangComment, sym_lineComment, - ACTIONS(417), 17, + ACTIONS(421), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27103,7 +29027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(419), 22, + ACTIONS(423), 22, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27126,7 +29050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3099] = 7, + [3484] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27135,10 +29059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(258), 2, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(282), 2, sym_shebangComment, sym_lineComment, - ACTIONS(397), 17, + ACTIONS(523), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27156,14 +29087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(399), 22, - sym__open_subscript_bracket, + ACTIONS(525), 17, sym__binary_minus, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, @@ -27176,10 +29104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3159] = 7, + [3549] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27188,17 +29114,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(259), 2, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, + anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(901), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(283), 2, sym_shebangComment, sym_lineComment, - ACTIONS(401), 17, - anon_sym_as, + ACTIONS(549), 8, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + aux_sym_docComment_token1, + ACTIONS(547), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -27206,33 +29168,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - ACTIONS(403), 22, - sym__open_subscript_bracket, - sym__binary_minus, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, + [3632] = 20, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(883), 1, anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + STATE(284), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(553), 7, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3219] = 7, + ACTIONS(551), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [3717] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27241,17 +29243,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(260), 2, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, + anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, + anon_sym_PIPE_PIPE, + ACTIONS(917), 1, + anon_sym_PIPE_GT, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(901), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(285), 2, sym_shebangComment, sym_lineComment, - ACTIONS(579), 17, - anon_sym_as, + ACTIONS(909), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(911), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -27259,32 +29301,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - ACTIONS(581), 21, - sym__open_subscript_bracket, - sym__binary_minus, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, + [3808] = 21, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(883), 1, anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(915), 1, + anon_sym_PIPE_PIPE, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + STATE(286), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(557), 6, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_GT, + aux_sym_docComment_token1, + ACTIONS(555), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [3895] = 23, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, + anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, + ACTIONS(917), 1, anon_sym_PIPE_GT, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(901), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(287), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(919), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, aux_sym_docComment_token1, - [3278] = 7, + ACTIONS(921), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [3986] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27293,10 +29445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(261), 2, + STATE(288), 2, sym_shebangComment, sym_lineComment, - ACTIONS(475), 17, + ACTIONS(499), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27314,7 +29466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(477), 21, + ACTIONS(501), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27336,7 +29488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3337] = 7, + [4045] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27345,10 +29497,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(262), 2, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, + anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, + anon_sym_PIPE_PIPE, + ACTIONS(917), 1, + anon_sym_PIPE_GT, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(901), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(289), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 17, + ACTIONS(923), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(925), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [4136] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(290), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(511), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27366,7 +29586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(389), 21, + ACTIONS(513), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27388,7 +29608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3396] = 7, + [4195] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27397,10 +29617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(263), 2, + STATE(291), 2, sym_shebangComment, sym_lineComment, - ACTIONS(479), 17, + ACTIONS(563), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27418,7 +29638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(481), 21, + ACTIONS(565), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27440,7 +29660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3455] = 7, + [4254] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27449,10 +29669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(264), 2, + STATE(292), 2, sym_shebangComment, sym_lineComment, - ACTIONS(491), 17, + ACTIONS(567), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27470,7 +29690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(493), 21, + ACTIONS(569), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27492,7 +29712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3514] = 10, + [4313] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27501,17 +29721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(265), 2, + STATE(293), 2, sym_shebangComment, sym_lineComment, - ACTIONS(507), 17, + ACTIONS(571), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27529,11 +29742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(509), 17, + ACTIONS(573), 21, + sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, + anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, @@ -27546,8 +29761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3579] = 10, + [4372] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27556,17 +29773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(266), 2, + STATE(294), 2, sym_shebangComment, sym_lineComment, - ACTIONS(539), 17, + ACTIONS(575), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27584,11 +29794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(541), 17, + ACTIONS(577), 21, + sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, + anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, @@ -27601,8 +29813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3644] = 7, + [4431] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27611,10 +29825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(267), 2, + STATE(295), 2, sym_shebangComment, sym_lineComment, - ACTIONS(559), 17, + ACTIONS(579), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27632,7 +29846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(561), 21, + ACTIONS(581), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27654,7 +29868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3703] = 23, + [4490] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27663,78 +29877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(845), 1, - anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(859), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(268), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(841), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(843), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [3794] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(269), 2, + STATE(296), 2, sym_shebangComment, sym_lineComment, - ACTIONS(471), 17, + ACTIONS(583), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27752,7 +29898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(473), 21, + ACTIONS(585), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27774,7 +29920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [3853] = 23, + [4549] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27783,57 +29929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(845), 1, - anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(859), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(270), 2, + STATE(297), 2, sym_shebangComment, sym_lineComment, - ACTIONS(871), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(873), 11, + ACTIONS(587), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -27841,67 +29947,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [3944] = 23, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(589), 21, sym__open_subscript_bracket, - ACTIONS(845), 1, - anon_sym_as, - ACTIONS(851), 1, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, - ACTIONS(853), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(271), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [4608] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(298), 2, sym_shebangComment, sym_lineComment, - ACTIONS(875), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(877), 11, + ACTIONS(591), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -27909,8 +29999,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [4035] = 7, + ACTIONS(593), 21, + sym__open_subscript_bracket, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [4667] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27919,10 +30033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(272), 2, + STATE(299), 2, sym_shebangComment, sym_lineComment, - ACTIONS(483), 17, + ACTIONS(595), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27940,7 +30054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(485), 21, + ACTIONS(597), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -27962,7 +30076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [4094] = 7, + [4726] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27971,10 +30085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(273), 2, + STATE(300), 2, sym_shebangComment, sym_lineComment, - ACTIONS(487), 17, + ACTIONS(491), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27992,7 +30106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(489), 21, + ACTIONS(493), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -28014,7 +30128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [4153] = 7, + [4785] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28023,10 +30137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(274), 2, + STATE(301), 2, sym_shebangComment, sym_lineComment, - ACTIONS(495), 17, + ACTIONS(531), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28044,7 +30158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(497), 21, + ACTIONS(533), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -28066,7 +30180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [4212] = 23, + [4844] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28075,54 +30189,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, - ACTIONS(865), 1, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, - ACTIONS(867), 1, + ACTIONS(917), 1, anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(275), 2, + STATE(302), 2, sym_shebangComment, sym_lineComment, - ACTIONS(501), 4, + ACTIONS(517), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(499), 11, + ACTIONS(515), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -28134,7 +30248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4303] = 13, + [4935] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28143,44 +30257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - STATE(276), 2, + STATE(303), 2, sym_shebangComment, sym_lineComment, - ACTIONS(505), 14, - sym__binary_minus, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_QMARK_QMARK, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - aux_sym_docComment_token1, - ACTIONS(503), 15, + ACTIONS(475), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_external, @@ -28190,35 +30275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, anon_sym_is, sym_identifier, - [4374] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(477), 21, sym__open_subscript_bracket, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(277), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(513), 16, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, + anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -28229,26 +30297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, aux_sym_docComment_token1, - ACTIONS(511), 17, - anon_sym_as, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - anon_sym_SLASH, - anon_sym_is, - sym_identifier, - [4441] = 14, + [4994] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28257,32 +30309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, - anon_sym_PLUS, - STATE(278), 2, + STATE(304), 2, sym_shebangComment, sym_lineComment, - ACTIONS(585), 12, + ACTIONS(521), 14, + sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, anon_sym_QMARK_QMARK, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28291,7 +30342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(583), 15, + ACTIONS(519), 15, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28307,7 +30358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_is, sym_identifier, - [4514] = 23, + [5065] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28316,57 +30367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(845), 1, - anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(859), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(279), 2, + STATE(305), 2, sym_shebangComment, sym_lineComment, - ACTIONS(517), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(515), 11, + ACTIONS(503), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -28374,8 +30385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [4605] = 23, + ACTIONS(505), 21, + sym__open_subscript_bracket, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [5124] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28384,54 +30419,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, - ACTIONS(865), 1, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, - ACTIONS(867), 1, + ACTIONS(917), 1, anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(280), 2, + STATE(306), 2, sym_shebangComment, sym_lineComment, - ACTIONS(879), 4, + ACTIONS(481), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(881), 11, + ACTIONS(479), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -28443,7 +30478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4696] = 18, + [5215] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28452,49 +30487,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(905), 1, anon_sym_is, - ACTIONS(837), 2, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, + anon_sym_PIPE_PIPE, + ACTIONS(917), 1, + anon_sym_PIPE_GT, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - STATE(281), 2, + ACTIONS(903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(307), 2, sym_shebangComment, sym_lineComment, - ACTIONS(525), 10, + ACTIONS(441), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(523), 11, + ACTIONS(437), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -28506,7 +30546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4777] = 19, + [5306] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28515,62 +30555,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(845), 1, + STATE(308), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(403), 17, anon_sym_as, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + anon_sym_SLASH, + anon_sym_is, + sym_identifier, + ACTIONS(405), 21, + sym__open_subscript_bracket, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(282), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(529), 8, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_QMARK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, aux_sym_docComment_token1, - ACTIONS(527), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [4860] = 20, + [5365] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28579,51 +30607,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(869), 1, + ACTIONS(905), 1, anon_sym_is, - ACTIONS(837), 2, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, + anon_sym_PIPE_PIPE, + ACTIONS(917), 1, + anon_sym_PIPE_GT, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(283), 2, + STATE(309), 2, sym_shebangComment, sym_lineComment, - ACTIONS(533), 7, + ACTIONS(927), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(531), 11, + ACTIONS(929), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -28635,7 +30666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4945] = 21, + [5456] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28644,52 +30675,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, - ACTIONS(865), 1, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(917), 1, + anon_sym_PIPE_GT, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(284), 2, + STATE(310), 2, sym_shebangComment, sym_lineComment, - ACTIONS(537), 6, + ACTIONS(931), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(535), 11, + ACTIONS(933), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -28701,7 +30734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [5032] = 7, + [5547] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28710,88 +30743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(285), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(543), 17, - anon_sym_as, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - anon_sym_SLASH, - anon_sym_is, - sym_identifier, - ACTIONS(545), 21, - sym__open_subscript_bracket, - sym__binary_minus, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, + ACTIONS(883), 1, anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(895), 1, anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - aux_sym_docComment_token1, - [5091] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(286), 2, + STATE(311), 2, sym_shebangComment, sym_lineComment, - ACTIONS(547), 17, - anon_sym_as, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - anon_sym_SLASH, - anon_sym_is, - sym_identifier, - ACTIONS(549), 21, - sym__open_subscript_bracket, + ACTIONS(529), 16, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, - anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -28802,22 +30771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [5150] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(287), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(551), 17, + ACTIONS(527), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28835,29 +30790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(553), 21, - sym__open_subscript_bracket, - sym__binary_minus, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - aux_sym_docComment_token1, - [5209] = 7, + [5614] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28866,39 +30799,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(288), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(555), 17, - anon_sym_as, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(895), 1, + anon_sym_STAR_STAR, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, anon_sym_SLASH, - anon_sym_is, - sym_identifier, - ACTIONS(557), 21, - sym__open_subscript_bracket, + ACTIONS(897), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(899), 2, sym__binary_minus, + anon_sym_PLUS, + STATE(312), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(601), 12, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, - anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28906,27 +30832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [5268] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(289), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(425), 17, + ACTIONS(599), 15, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_external, @@ -28936,32 +30847,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(427), 21, - sym__open_subscript_bracket, - sym__binary_minus, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - aux_sym_docComment_token1, - [5327] = 7, + [5687] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28970,10 +30858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(290), 2, + STATE(313), 2, sym_shebangComment, sym_lineComment, - ACTIONS(563), 17, + ACTIONS(495), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28991,7 +30879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(565), 21, + ACTIONS(497), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -29013,7 +30901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [5386] = 7, + [5746] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29022,10 +30910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(291), 2, + STATE(314), 2, sym_shebangComment, sym_lineComment, - ACTIONS(567), 17, + ACTIONS(507), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29043,7 +30931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(569), 21, + ACTIONS(509), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -29065,7 +30953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [5445] = 7, + [5805] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29074,10 +30962,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(292), 2, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(889), 1, + anon_sym_as, + ACTIONS(895), 1, + anon_sym_STAR_STAR, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, + anon_sym_AMP_AMP, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, + anon_sym_PIPE_PIPE, + ACTIONS(917), 1, + anon_sym_PIPE_GT, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(891), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(897), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(899), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(901), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(315), 2, sym_shebangComment, sym_lineComment, - ACTIONS(571), 17, + ACTIONS(935), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(937), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [5896] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(883), 1, + anon_sym_BANG_BANG, + ACTIONS(887), 1, + sym__open_subscript_bracket, + ACTIONS(885), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(316), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(559), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29095,13 +31058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(573), 21, - sym__open_subscript_bracket, + ACTIONS(561), 17, sym__binary_minus, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, - anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, @@ -29114,10 +31075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [5504] = 7, + [5961] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29126,10 +31085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(293), 2, + STATE(317), 2, sym_shebangComment, sym_lineComment, - ACTIONS(575), 17, + ACTIONS(483), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29147,7 +31106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(577), 21, + ACTIONS(485), 21, sym__open_subscript_bracket, sym__binary_minus, ts_builtin_sym_end, @@ -29169,7 +31128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, aux_sym_docComment_token1, - [5563] = 23, + [6020] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29178,54 +31137,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, - ACTIONS(865), 1, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, - ACTIONS(867), 1, + ACTIONS(917), 1, anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(294), 2, + STATE(318), 2, sym_shebangComment, sym_lineComment, - ACTIONS(883), 4, + ACTIONS(939), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(885), 11, + ACTIONS(941), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -29237,7 +31196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [5654] = 23, + [6111] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29246,54 +31205,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, - ACTIONS(865), 1, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, - ACTIONS(867), 1, + ACTIONS(917), 1, anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(295), 2, + STATE(319), 2, sym_shebangComment, sym_lineComment, - ACTIONS(433), 4, + ACTIONS(943), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(429), 11, + ACTIONS(945), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -29305,7 +31264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [5745] = 23, + [6202] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29314,57 +31273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(845), 1, - anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(859), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(296), 2, + STATE(320), 2, sym_shebangComment, sym_lineComment, - ACTIONS(469), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(467), 11, + ACTIONS(487), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -29372,8 +31291,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [5836] = 23, + ACTIONS(489), 21, + sym__open_subscript_bracket, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + [6261] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29382,54 +31325,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(905), 1, + anon_sym_is, + ACTIONS(907), 1, anon_sym_AMP_AMP, - ACTIONS(865), 1, + ACTIONS(913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(915), 1, anon_sym_PIPE_PIPE, - ACTIONS(867), 1, + ACTIONS(917), 1, anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, + ACTIONS(903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(297), 2, + STATE(321), 2, sym_shebangComment, sym_lineComment, - ACTIONS(887), 4, + ACTIONS(537), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(889), 11, + ACTIONS(535), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -29441,7 +31384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [5927] = 23, + [6352] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29450,57 +31393,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, - anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, - anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 2, + STATE(322), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(541), 16, + sym__binary_minus, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(298), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(891), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(893), 11, + ACTIONS(539), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -29508,8 +31437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [6018] = 23, + [6419] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29518,111 +31449,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_BANG_BANG, - ACTIONS(839), 1, + ACTIONS(887), 1, sym__open_subscript_bracket, - ACTIONS(845), 1, + ACTIONS(889), 1, anon_sym_as, - ACTIONS(851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(853), 1, + ACTIONS(895), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_AMP_AMP, - ACTIONS(865), 1, - anon_sym_PIPE_PIPE, - ACTIONS(867), 1, - anon_sym_PIPE_GT, - ACTIONS(869), 1, + ACTIONS(905), 1, anon_sym_is, - ACTIONS(837), 2, + ACTIONS(885), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(847), 2, + ACTIONS(891), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(849), 2, + ACTIONS(893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(855), 2, + ACTIONS(897), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(857), 2, + ACTIONS(899), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(299), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(895), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(897), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [6109] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(835), 1, - anon_sym_BANG_BANG, - ACTIONS(839), 1, - sym__open_subscript_bracket, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(300), 2, + STATE(323), 2, sym_shebangComment, sym_lineComment, - ACTIONS(521), 16, - sym__binary_minus, + ACTIONS(545), 10, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(519), 17, - anon_sym_as, + ACTIONS(543), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -29630,10 +31502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - [6176] = 26, + [6500] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29658,33 +31528,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(899), 1, + ACTIONS(947), 1, ts_builtin_sym_end, - STATE(351), 1, + STATE(372), 1, aux_sym_module_repeat2, - STATE(500), 1, - aux_sym_module_repeat1, STATE(547), 1, + aux_sym_module_repeat1, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(301), 2, + STATE(324), 2, sym_shebangComment, sym_lineComment, - STATE(577), 2, + STATE(618), 2, sym_importClause, sym_importGlobClause, - STATE(592), 4, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -29697,7 +31567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [6266] = 26, + [6590] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29722,33 +31592,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(901), 1, + ACTIONS(949), 1, ts_builtin_sym_end, - STATE(342), 1, + STATE(370), 1, aux_sym_module_repeat2, - STATE(500), 1, - aux_sym_module_repeat1, STATE(547), 1, + aux_sym_module_repeat1, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(302), 2, + STATE(325), 2, sym_shebangComment, sym_lineComment, - STATE(577), 2, + STATE(618), 2, sym_importClause, sym_importGlobClause, - STATE(592), 4, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -29761,7 +31631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [6356] = 26, + [6680] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29786,33 +31656,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(899), 1, + ACTIONS(949), 1, ts_builtin_sym_end, - STATE(305), 1, + STATE(324), 1, aux_sym_module_repeat1, - STATE(351), 1, + STATE(370), 1, aux_sym_module_repeat2, - STATE(547), 1, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(303), 2, + STATE(326), 2, sym_shebangComment, sym_lineComment, - STATE(577), 2, + STATE(618), 2, sym_importClause, sym_importGlobClause, - STATE(592), 4, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -29825,7 +31695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [6446] = 26, + [6770] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29850,33 +31720,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(903), 1, + ACTIONS(951), 1, ts_builtin_sym_end, - STATE(302), 1, - aux_sym_module_repeat1, - STATE(348), 1, + STATE(365), 1, aux_sym_module_repeat2, STATE(547), 1, + aux_sym_module_repeat1, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(304), 2, + STATE(327), 2, sym_shebangComment, sym_lineComment, - STATE(577), 2, + STATE(618), 2, sym_importClause, sym_importGlobClause, - STATE(592), 4, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -29889,7 +31759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [6536] = 26, + [6860] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29914,33 +31784,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(903), 1, + ACTIONS(947), 1, ts_builtin_sym_end, - STATE(348), 1, - aux_sym_module_repeat2, - STATE(500), 1, + STATE(327), 1, aux_sym_module_repeat1, - STATE(547), 1, + STATE(372), 1, + aux_sym_module_repeat2, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(305), 2, + STATE(328), 2, sym_shebangComment, sym_lineComment, - STATE(577), 2, + STATE(618), 2, sym_importClause, sym_importGlobClause, - STATE(592), 4, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -29953,7 +31823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [6626] = 13, + [6950] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29968,13 +31838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(270), 1, sym__open_argument_paren, - ACTIONS(905), 1, + ACTIONS(953), 1, anon_sym_RPAREN, - STATE(82), 1, + STATE(62), 1, sym_argumentList, - STATE(729), 1, + STATE(806), 1, sym_typeAnnotation, - STATE(306), 2, + STATE(329), 2, sym_shebangComment, sym_lineComment, ACTIONS(258), 4, @@ -30002,7 +31872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [6688] = 9, + [7012] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30011,20 +31881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(908), 1, - anon_sym_LT, - STATE(334), 1, - sym_typeArgumentList, - STATE(307), 2, + ACTIONS(956), 1, + anon_sym_DOT, + STATE(333), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(330), 2, sym_shebangComment, sym_lineComment, - ACTIONS(272), 5, + ACTIONS(291), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(274), 21, + ACTIONS(293), 20, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30044,9 +31915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - anon_sym_DOT, anon_sym_QMARK_DOT, - [6741] = 9, + [7065] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30055,21 +31925,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(910), 1, + ACTIONS(959), 1, anon_sym_DOT, - STATE(309), 1, + STATE(337), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(308), 2, + STATE(331), 2, sym_shebangComment, sym_lineComment, - ACTIONS(284), 6, + ACTIONS(291), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(293), 14, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + aux_sym_docComment_token1, + [7118] = 8, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(961), 1, + anon_sym_DASH_GT, + STATE(332), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(278), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(286), 20, + ACTIONS(280), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30089,8 +32001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, + anon_sym_DOT, anon_sym_QMARK_DOT, - [6794] = 9, + [7169] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30099,21 +32012,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(913), 1, + ACTIONS(963), 1, anon_sym_DOT, - STATE(313), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(309), 2, + STATE(333), 3, sym_shebangComment, sym_lineComment, - ACTIONS(291), 6, + aux_sym_qualifiedIdentifier_repeat1, + ACTIONS(298), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(293), 20, + ACTIONS(300), 20, + sym__open_subscript_bracket, + sym__open_argument_paren, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_QMARK_DOT, + [7220] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(966), 1, + anon_sym_LT, + STATE(339), 1, + sym_typeArgumentList, + STATE(334), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(272), 5, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(274), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30133,8 +32088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, + anon_sym_DOT, anon_sym_QMARK_DOT, - [6847] = 9, + [7273] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30143,11 +32099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(916), 1, + ACTIONS(959), 1, anon_sym_DOT, - STATE(312), 1, + STATE(331), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(310), 2, + STATE(335), 2, sym_shebangComment, sym_lineComment, ACTIONS(284), 12, @@ -30178,7 +32134,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_docComment_token1, - [6900] = 8, + [7326] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(968), 1, + anon_sym_DOT, + STATE(330), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(336), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(284), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(286), 20, + sym__open_subscript_bracket, + sym__open_argument_paren, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_QMARK_DOT, + [7379] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30187,9 +32187,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(918), 1, + ACTIONS(971), 1, anon_sym_DOT, - STATE(311), 3, + STATE(337), 3, sym_shebangComment, sym_lineComment, aux_sym_qualifiedIdentifier_repeat1, @@ -30221,7 +32221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_docComment_token1, - [6951] = 9, + [7430] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30230,42 +32230,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(916), 1, + ACTIONS(974), 1, + anon_sym_QMARK, + ACTIONS(976), 1, + anon_sym_PIPE, + ACTIONS(978), 1, + sym__open_argument_paren, + STATE(338), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(327), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(329), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, - STATE(311), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(312), 2, + anon_sym_QMARK_DOT, + [7484] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(339), 2, sym_shebangComment, sym_lineComment, - ACTIONS(291), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(293), 14, + ACTIONS(359), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(361), 21, + sym__open_subscript_bracket, sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [7532] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(974), 1, anon_sym_QMARK, + ACTIONS(978), 1, + sym__open_argument_paren, + STATE(340), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(309), 5, anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [7004] = 8, + anon_sym_SLASH, + ACTIONS(311), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [7584] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30274,20 +32358,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(921), 1, + ACTIONS(974), 1, + anon_sym_QMARK, + ACTIONS(976), 1, + anon_sym_PIPE, + ACTIONS(978), 1, + sym__open_argument_paren, + STATE(341), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(317), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(319), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, - STATE(313), 3, + anon_sym_QMARK_DOT, + [7638] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(342), 2, sym_shebangComment, sym_lineComment, - aux_sym_qualifiedIdentifier_repeat1, - ACTIONS(298), 6, + ACTIONS(323), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(300), 20, + ACTIONS(325), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30307,8 +32432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, + anon_sym_DOT, anon_sym_QMARK_DOT, - [7055] = 8, + [7686] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30317,19 +32443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(924), 1, - anon_sym_DASH_GT, - STATE(314), 2, + STATE(343), 2, sym_shebangComment, sym_lineComment, - ACTIONS(278), 6, + ACTIONS(331), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(280), 21, + ACTIONS(333), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30351,7 +32475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7106] = 10, + [7734] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30360,21 +32484,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(926), 1, + ACTIONS(974), 1, anon_sym_QMARK, - ACTIONS(928), 1, + ACTIONS(976), 1, anon_sym_PIPE, - ACTIONS(930), 1, + ACTIONS(978), 1, sym__open_argument_paren, - STATE(315), 2, + STATE(344), 2, sym_shebangComment, sym_lineComment, - ACTIONS(325), 4, + ACTIONS(335), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(327), 20, + ACTIONS(337), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -30395,7 +32519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7160] = 7, + [7788] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30404,39 +32528,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(316), 2, + STATE(345), 2, sym_shebangComment, sym_lineComment, - ACTIONS(298), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(300), 15, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, + ACTIONS(339), 6, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + ACTIONS(341), 21, + sym__open_subscript_bracket, + sym__open_argument_paren, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, - aux_sym_docComment_token1, - [7208] = 9, + anon_sym_QMARK_DOT, + [7836] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30445,20 +32569,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(926), 1, + ACTIONS(974), 1, anon_sym_QMARK, - ACTIONS(930), 1, + ACTIONS(976), 1, + anon_sym_PIPE, + ACTIONS(978), 1, sym__open_argument_paren, - STATE(317), 2, + STATE(346), 2, sym_shebangComment, sym_lineComment, - ACTIONS(319), 5, - anon_sym_PIPE, + ACTIONS(343), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(321), 20, + ACTIONS(345), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -30479,7 +32604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7260] = 9, + [7890] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30488,41 +32613,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(932), 1, - anon_sym_LT, - STATE(374), 1, - sym_typeArgumentList, - STATE(318), 2, + STATE(347), 2, sym_shebangComment, sym_lineComment, - ACTIONS(272), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(274), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, + ACTIONS(355), 6, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [7312] = 7, + anon_sym_SLASH, + ACTIONS(357), 21, + sym__open_subscript_bracket, + sym__open_argument_paren, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [7938] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30531,17 +32654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(319), 2, + STATE(348), 2, sym_shebangComment, sym_lineComment, - ACTIONS(331), 6, + ACTIONS(298), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(333), 21, + ACTIONS(300), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30563,7 +32686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7360] = 10, + [7986] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30572,61 +32695,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(926), 1, - anon_sym_QMARK, - ACTIONS(928), 1, - anon_sym_PIPE, - ACTIONS(930), 1, - sym__open_argument_paren, - STATE(320), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(335), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(337), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [7414] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(321), 2, + STATE(349), 2, sym_shebangComment, sym_lineComment, - ACTIONS(339), 6, + ACTIONS(363), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(341), 21, + ACTIONS(365), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30648,7 +32727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7462] = 10, + [8034] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30657,22 +32736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(926), 1, - anon_sym_QMARK, - ACTIONS(928), 1, - anon_sym_PIPE, - ACTIONS(930), 1, - sym__open_argument_paren, - STATE(322), 2, + STATE(350), 2, sym_shebangComment, sym_lineComment, - ACTIONS(343), 4, + ACTIONS(367), 6, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(345), 20, + ACTIONS(369), 21, sym__open_subscript_bracket, + sym__open_argument_paren, sym__binary_minus, anon_sym_as, anon_sym_RBRACK_RBRACK, @@ -30692,7 +32768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7516] = 7, + [8082] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30701,7 +32777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(323), 2, + STATE(351), 2, sym_shebangComment, sym_lineComment, ACTIONS(371), 6, @@ -30733,7 +32809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7564] = 7, + [8130] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30742,7 +32818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(324), 2, + STATE(352), 2, sym_shebangComment, sym_lineComment, ACTIONS(375), 6, @@ -30774,7 +32850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7612] = 7, + [8178] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30783,39 +32859,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(325), 2, + STATE(353), 2, sym_shebangComment, sym_lineComment, - ACTIONS(347), 6, + ACTIONS(298), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(300), 15, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(349), 21, - sym__open_subscript_bracket, - sym__open_argument_paren, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, anon_sym_DOT, - anon_sym_QMARK_DOT, - [7660] = 7, + aux_sym_docComment_token1, + [8226] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30824,39 +32900,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(326), 2, + ACTIONS(980), 1, + anon_sym_LT, + STATE(379), 1, + sym_typeArgumentList, + STATE(354), 2, sym_shebangComment, sym_lineComment, - ACTIONS(298), 6, + ACTIONS(272), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(274), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(300), 21, - sym__open_subscript_bracket, - sym__open_argument_paren, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [7708] = 7, + aux_sym_docComment_token1, + [8278] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30865,17 +32943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(327), 2, + STATE(355), 2, sym_shebangComment, sym_lineComment, - ACTIONS(379), 6, + ACTIONS(387), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(381), 21, + ACTIONS(389), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30897,7 +32975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7756] = 7, + [8326] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30906,17 +32984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(328), 2, + STATE(356), 2, sym_shebangComment, sym_lineComment, - ACTIONS(351), 6, + ACTIONS(391), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(353), 21, + ACTIONS(393), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30938,7 +33016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7804] = 7, + [8374] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30947,17 +33025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(329), 2, + STATE(357), 2, sym_shebangComment, sym_lineComment, - ACTIONS(355), 6, + ACTIONS(305), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(357), 21, + ACTIONS(307), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -30979,7 +33057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7852] = 7, + [8422] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30988,19 +33066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(330), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(359), 6, + ACTIONS(974), 1, anon_sym_QMARK, + ACTIONS(976), 1, anon_sym_PIPE, + ACTIONS(978), 1, + sym__open_argument_paren, + STATE(358), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(383), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(361), 21, + ACTIONS(385), 20, sym__open_subscript_bracket, - sym__open_argument_paren, sym__binary_minus, anon_sym_as, anon_sym_RBRACK_RBRACK, @@ -31020,7 +33101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7900] = 10, + [8476] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31029,21 +33110,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(926), 1, + ACTIONS(974), 1, anon_sym_QMARK, - ACTIONS(928), 1, + ACTIONS(976), 1, anon_sym_PIPE, - ACTIONS(930), 1, + ACTIONS(978), 1, sym__open_argument_paren, - STATE(331), 2, + STATE(359), 2, sym_shebangComment, sym_lineComment, - ACTIONS(367), 4, + ACTIONS(379), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(369), 20, + ACTIONS(381), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -31064,7 +33145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [7954] = 8, + [8530] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31073,19 +33154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(930), 1, + ACTIONS(978), 1, sym__open_argument_paren, - STATE(332), 2, + STATE(360), 2, sym_shebangComment, sym_lineComment, - ACTIONS(305), 6, + ACTIONS(347), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(307), 20, + ACTIONS(349), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -31106,7 +33187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [8004] = 7, + [8580] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31115,17 +33196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(333), 2, + STATE(361), 2, sym_shebangComment, sym_lineComment, - ACTIONS(315), 6, + ACTIONS(351), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(317), 21, + ACTIONS(353), 21, sym__open_subscript_bracket, sym__open_argument_paren, sym__binary_minus, @@ -31147,7 +33228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [8052] = 7, + [8628] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31156,39 +33237,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(334), 2, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(27), 1, + anon_sym_typealias, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(949), 1, + ts_builtin_sym_end, + STATE(369), 1, + aux_sym_module_repeat2, + STATE(609), 1, + sym_docComment, + STATE(612), 1, + aux_sym_moduleHeader_repeat1, + STATE(626), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(648), 1, + sym__moduleMember, + STATE(660), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + STATE(362), 2, sym_shebangComment, sym_lineComment, - ACTIONS(311), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(313), 21, - sym__open_subscript_bracket, - sym__open_argument_paren, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + STATE(645), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [8705] = 24, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(984), 1, + anon_sym_COMMA, + ACTIONS(986), 1, + anon_sym_RPAREN, + ACTIONS(988), 1, + anon_sym_is, + STATE(875), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [8100] = 10, + STATE(363), 2, + sym_shebangComment, + sym_lineComment, + [8786] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31197,42 +33349,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(926), 1, - anon_sym_QMARK, - ACTIONS(928), 1, - anon_sym_PIPE, - ACTIONS(930), 1, - sym__open_argument_paren, - STATE(335), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(363), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(365), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(990), 1, + anon_sym_COMMA, + ACTIONS(992), 1, + anon_sym_RPAREN, + STATE(891), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [8154] = 22, + STATE(364), 2, + sym_shebangComment, + sym_lineComment, + [8867] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31253,28 +33418,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(899), 1, + ACTIONS(994), 1, ts_builtin_sym_end, - STATE(338), 1, + STATE(369), 1, aux_sym_module_repeat2, - STATE(547), 1, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(336), 2, + STATE(365), 2, sym_shebangComment, sym_lineComment, - STATE(592), 4, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -31287,7 +33452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [8231] = 9, + [8944] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31296,40 +33461,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(934), 1, - sym__open_argument_paren, - STATE(452), 1, - sym_argumentList, - STATE(337), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(258), 4, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(996), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_RPAREN, + STATE(890), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(443), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(260), 20, - sym__open_subscript_bracket, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(366), 2, + sym_shebangComment, + sym_lineComment, + [9025] = 24, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1000), 1, + anon_sym_COMMA, + ACTIONS(1002), 1, + anon_sym_RPAREN, + STATE(892), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(367), 2, + sym_shebangComment, + sym_lineComment, + [9106] = 24, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, anon_sym_AMP_AMP, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, + ACTIONS(465), 1, anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, anon_sym_is, + ACTIONS(1004), 1, + anon_sym_COMMA, + ACTIONS(1006), 1, + anon_sym_RPAREN, + STATE(877), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [8282] = 21, + STATE(368), 2, + sym_shebangComment, + sym_lineComment, + [9187] = 21, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31338,44 +33632,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(936), 1, + ACTIONS(1008), 1, ts_builtin_sym_end, - ACTIONS(938), 1, + ACTIONS(1010), 1, sym_identifier, - ACTIONS(941), 1, + ACTIONS(1013), 1, anon_sym_class, - ACTIONS(944), 1, + ACTIONS(1016), 1, anon_sym_typealias, - ACTIONS(947), 1, + ACTIONS(1019), 1, anon_sym_function, - ACTIONS(950), 1, + ACTIONS(1022), 1, anon_sym_AT, - ACTIONS(956), 1, + ACTIONS(1028), 1, aux_sym_docComment_token1, - STATE(547), 1, + STATE(609), 1, sym_docComment, - STATE(554), 1, + STATE(612), 1, aux_sym_moduleHeader_repeat1, - STATE(579), 1, + STATE(626), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(601), 1, + STATE(648), 1, sym__moduleMember, - STATE(605), 1, + STATE(660), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(338), 3, + STATE(369), 3, sym_shebangComment, sym_lineComment, aux_sym_module_repeat2, - STATE(592), 4, + STATE(645), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(1025), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [9262] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(27), 1, + anon_sym_typealias, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(947), 1, + ts_builtin_sym_end, + STATE(369), 1, + aux_sym_module_repeat2, + STATE(609), 1, + sym_docComment, + STATE(612), 1, + aux_sym_moduleHeader_repeat1, + STATE(626), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(648), 1, + sym__moduleMember, + STATE(660), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + STATE(370), 2, + sym_shebangComment, + sym_lineComment, + STATE(645), 4, sym_clazz, sym_typeAlias, sym_classProperty, sym_classMethod, - ACTIONS(953), 7, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -31383,7 +33732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [8357] = 24, + [9339] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31392,55 +33741,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(961), 1, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1031), 1, anon_sym_COMMA, - ACTIONS(963), 1, + ACTIONS(1033), 1, anon_sym_RPAREN, - ACTIONS(965), 1, - anon_sym_is, - STATE(830), 1, + STATE(908), 1, aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(339), 2, + STATE(371), 2, + sym_shebangComment, + sym_lineComment, + [9420] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(27), 1, + anon_sym_typealias, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(951), 1, + ts_builtin_sym_end, + STATE(369), 1, + aux_sym_module_repeat2, + STATE(609), 1, + sym_docComment, + STATE(612), 1, + aux_sym_moduleHeader_repeat1, + STATE(626), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(648), 1, + sym__moduleMember, + STATE(660), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + STATE(372), 2, sym_shebangComment, sym_lineComment, - [8438] = 9, + STATE(645), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [9497] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31449,19 +33853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(934), 1, + ACTIONS(1035), 1, sym__open_argument_paren, - STATE(401), 1, + STATE(408), 1, sym_argumentList, - STATE(340), 2, + STATE(373), 2, sym_shebangComment, sym_lineComment, - ACTIONS(393), 4, + ACTIONS(395), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(395), 20, + ACTIONS(397), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -31482,7 +33886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [8489] = 9, + [9548] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31491,19 +33895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(934), 1, - sym__open_argument_paren, - STATE(404), 1, - sym_argumentList, - STATE(341), 2, + ACTIONS(1037), 1, + anon_sym_LBRACE, + STATE(392), 1, + sym_objectBody, + STATE(374), 2, sym_shebangComment, sym_lineComment, - ACTIONS(383), 4, + ACTIONS(403), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(385), 20, + ACTIONS(405), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -31524,62 +33928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [8540] = 22, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(25), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_typealias, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(967), 1, - ts_builtin_sym_end, - STATE(338), 1, - aux_sym_module_repeat2, - STATE(547), 1, - sym_docComment, - STATE(554), 1, - aux_sym_moduleHeader_repeat1, - STATE(579), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(601), 1, - sym__moduleMember, - STATE(605), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - STATE(342), 2, - sym_shebangComment, - sym_lineComment, - STATE(592), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [8617] = 24, + [9599] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31588,55 +33937,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(969), 1, + ACTIONS(1039), 1, + anon_sym_COMMA, + ACTIONS(1041), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(882), 1, aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(343), 2, + STATE(375), 2, sym_shebangComment, sym_lineComment, - [8698] = 24, + [9680] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31645,55 +33994,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1035), 1, + sym__open_argument_paren, + STATE(411), 1, + sym_argumentList, + STATE(376), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(399), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(401), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, anon_sym_BANG_BANG, - ACTIONS(441), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(455), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(965), 1, anon_sym_is, - ACTIONS(971), 1, - anon_sym_RPAREN, - STATE(842), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [9731] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1035), 1, + sym__open_argument_paren, + STATE(479), 1, + sym_argumentList, + STATE(377), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(258), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(260), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(344), 2, + [9782] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(378), 2, sym_shebangComment, sym_lineComment, - [8779] = 24, + ACTIONS(371), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(373), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [9828] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31702,55 +34117,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(961), 1, + STATE(379), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(359), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(361), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(973), 1, anon_sym_RPAREN, - STATE(848), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(345), 2, - sym_shebangComment, - sym_lineComment, - [8860] = 24, + aux_sym_docComment_token1, + [9874] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31759,55 +34156,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(961), 1, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(380), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(337), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(975), 1, anon_sym_RPAREN, - STATE(813), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, + anon_sym_DASH_GT, anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(346), 2, - sym_shebangComment, - sym_lineComment, - [8941] = 24, + aux_sym_docComment_token1, + ACTIONS(335), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [9926] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31816,55 +34198,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(961), 1, + STATE(381), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(305), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(307), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(977), 1, anon_sym_RPAREN, - STATE(821), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(347), 2, - sym_shebangComment, - sym_lineComment, - [9022] = 22, + aux_sym_docComment_token1, + [9972] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31873,45 +34237,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(25), 1, + STATE(382), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(367), 12, anon_sym_class, - ACTIONS(27), 1, anon_sym_typealias, - ACTIONS(29), 1, anon_sym_function, - ACTIONS(31), 1, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(369), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, - ACTIONS(35), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(901), 1, - ts_builtin_sym_end, - STATE(338), 1, - aux_sym_module_repeat2, - STATE(547), 1, - sym_docComment, - STATE(554), 1, - aux_sym_moduleHeader_repeat1, - STATE(579), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(601), 1, - sym__moduleMember, - STATE(605), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - STATE(348), 2, + [10018] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(383), 2, sym_shebangComment, sym_lineComment, - STATE(592), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, + ACTIONS(311), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + ACTIONS(309), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -31919,7 +34307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [9099] = 24, + sym_identifier, + [10068] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31928,55 +34317,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(979), 1, - anon_sym_RPAREN, - STATE(816), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(435), 2, + STATE(384), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(413), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(415), 21, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(349), 2, + [10114] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(385), 2, sym_shebangComment, sym_lineComment, - [9180] = 9, + ACTIONS(363), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(365), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [10160] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31985,22 +34395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(981), 1, - anon_sym_LBRACE, - STATE(357), 1, - sym_objectBody, - STATE(350), 2, + STATE(386), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 4, + ACTIONS(425), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(389), 20, + ACTIONS(427), 21, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, @@ -32018,7 +34425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [9231] = 22, + [10206] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32027,45 +34434,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(13), 1, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(387), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(329), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_GT, + aux_sym_docComment_token1, + ACTIONS(327), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, sym_identifier, - ACTIONS(25), 1, + [10258] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(388), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(355), 12, anon_sym_class, - ACTIONS(27), 1, anon_sym_typealias, - ACTIONS(29), 1, anon_sym_function, - ACTIONS(31), 1, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(357), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, - ACTIONS(35), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(903), 1, - ts_builtin_sym_end, - STATE(338), 1, - aux_sym_module_repeat2, - STATE(547), 1, - sym_docComment, - STATE(554), 1, - aux_sym_moduleHeader_repeat1, - STATE(579), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(601), 1, - sym__moduleMember, - STATE(605), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - STATE(351), 2, + [10304] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(389), 2, sym_shebangComment, sym_lineComment, - STATE(592), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, + ACTIONS(331), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -32073,7 +34530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [9308] = 7, + sym_identifier, + ACTIONS(333), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [10350] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32082,10 +34554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(352), 2, + STATE(390), 2, sym_shebangComment, sym_lineComment, - ACTIONS(339), 12, + ACTIONS(351), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32098,7 +34570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(341), 13, + ACTIONS(353), 13, sym__open_argument_paren, ts_builtin_sym_end, anon_sym_LBRACE, @@ -32112,7 +34584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [9354] = 7, + [10396] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32121,15 +34593,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(353), 2, + STATE(391), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(433), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(435), 21, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [10442] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(392), 2, sym_shebangComment, sym_lineComment, - ACTIONS(397), 4, + ACTIONS(429), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(399), 21, + ACTIONS(431), 21, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -32151,7 +34662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [9400] = 8, + [10488] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32160,12 +34671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1047), 1, sym__open_argument_paren, - STATE(354), 2, + STATE(393), 2, sym_shebangComment, sym_lineComment, - ACTIONS(305), 12, + ACTIONS(347), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32178,7 +34689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(307), 12, + ACTIONS(349), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32191,7 +34702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [9448] = 7, + [10536] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32200,15 +34711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(355), 2, + STATE(394), 2, sym_shebangComment, sym_lineComment, - ACTIONS(413), 4, + ACTIONS(421), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(415), 21, + ACTIONS(423), 21, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -32230,7 +34741,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [9494] = 8, + [10582] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(395), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(345), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_GT, + aux_sym_docComment_token1, + ACTIONS(343), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [10634] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32239,12 +34792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(985), 1, - anon_sym_DASH_GT, - STATE(356), 2, + STATE(396), 2, sym_shebangComment, sym_lineComment, - ACTIONS(278), 12, + ACTIONS(339), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32257,7 +34808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(280), 12, + ACTIONS(341), 13, sym__open_argument_paren, ts_builtin_sym_end, anon_sym_LBRACE, @@ -32266,11 +34817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [9542] = 7, + [10680] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32279,37 +34831,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(357), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(401), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(403), 21, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [9588] = 7, + ACTIONS(1049), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(397), 2, + sym_shebangComment, + sym_lineComment, + [10756] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32318,7 +34885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(358), 2, + STATE(398), 2, sym_shebangComment, sym_lineComment, ACTIONS(417), 4, @@ -32348,7 +34915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [9634] = 10, + [10802] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32357,16 +34924,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + STATE(399), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(375), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(377), 13, sym__open_argument_paren, - ACTIONS(987), 1, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, - ACTIONS(989), 1, anon_sym_PIPE, - STATE(359), 2, + anon_sym_GT, + aux_sym_docComment_token1, + [10848] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(400), 2, sym_shebangComment, sym_lineComment, - ACTIONS(327), 10, + ACTIONS(387), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(389), 13, + sym__open_argument_paren, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32375,9 +34989,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(325), 12, + [10894] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(401), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(391), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32390,7 +35018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [9686] = 9, + ACTIONS(393), 13, + sym__open_argument_paren, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [10940] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32399,14 +35041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(1043), 1, anon_sym_QMARK, - STATE(360), 2, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(402), 2, sym_shebangComment, sym_lineComment, - ACTIONS(321), 11, + ACTIONS(319), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32415,10 +35059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH_GT, - anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(319), 12, + ACTIONS(317), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32431,7 +35074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [9736] = 7, + [10992] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32440,7 +35083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(361), 2, + STATE(403), 2, sym_shebangComment, sym_lineComment, ACTIONS(409), 4, @@ -32470,7 +35113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [9782] = 7, + [11038] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32479,10 +35122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(362), 2, + STATE(404), 2, sym_shebangComment, sym_lineComment, - ACTIONS(331), 12, + ACTIONS(323), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32495,7 +35138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(333), 13, + ACTIONS(325), 13, sym__open_argument_paren, ts_builtin_sym_end, anon_sym_LBRACE, @@ -32509,7 +35152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [9828] = 7, + [11084] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32518,10 +35161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(363), 2, + ACTIONS(1051), 1, + anon_sym_DASH_GT, + STATE(405), 2, sym_shebangComment, sym_lineComment, - ACTIONS(355), 12, + ACTIONS(278), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -32534,7 +35179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(357), 13, + ACTIONS(280), 12, sym__open_argument_paren, ts_builtin_sym_end, anon_sym_LBRACE, @@ -32543,12 +35188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [9874] = 7, + [11132] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32557,19 +35201,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(364), 2, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1053), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(406), 2, sym_shebangComment, sym_lineComment, - ACTIONS(421), 4, + [11207] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(407), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(579), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(423), 21, + ACTIONS(581), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, - anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, @@ -32587,7 +35283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [9920] = 10, + [11252] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32596,40 +35292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(365), 2, + STATE(408), 2, sym_shebangComment, sym_lineComment, - ACTIONS(345), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, + ACTIONS(583), 4, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - ACTIONS(343), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [9972] = 7, + anon_sym_SLASH, + ACTIONS(585), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [11297] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32638,37 +35330,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(366), 2, + STATE(409), 2, sym_shebangComment, sym_lineComment, - ACTIONS(347), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(349), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(587), 4, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [10018] = 7, + anon_sym_SLASH, + ACTIONS(589), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [11342] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32677,37 +35368,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(367), 2, + STATE(410), 2, sym_shebangComment, sym_lineComment, - ACTIONS(351), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(353), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, + ACTIONS(591), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(593), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [11387] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(411), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(595), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(597), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [11432] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1055), 1, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [10064] = 7, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(412), 2, + sym_shebangComment, + sym_lineComment, + [11507] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32716,37 +35497,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(368), 2, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1057), 1, + anon_sym_else, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(413), 2, sym_shebangComment, sym_lineComment, - ACTIONS(315), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(317), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, + [11582] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(414), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(531), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(533), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [11627] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1059), 1, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [10110] = 22, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(415), 2, + sym_shebangComment, + sym_lineComment, + [11702] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32755,52 +35641,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(435), 2, + ACTIONS(1061), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(991), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(369), 2, + STATE(416), 2, sym_shebangComment, sym_lineComment, - [10186] = 7, + [11777] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32809,19 +35694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(370), 2, + STATE(417), 2, sym_shebangComment, sym_lineComment, - ACTIONS(405), 4, + ACTIONS(491), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(407), 21, + ACTIONS(493), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, - anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, @@ -32839,49 +35723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [10232] = 10, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(371), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(337), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_GT, - aux_sym_docComment_token1, - ACTIONS(335), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [10284] = 7, + [11822] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32890,37 +35732,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(372), 2, + STATE(418), 2, sym_shebangComment, sym_lineComment, - ACTIONS(379), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(381), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(487), 4, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [10330] = 7, + anon_sym_SLASH, + ACTIONS(489), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [11867] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32929,76 +35770,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(373), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(359), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(361), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1063), 1, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [10376] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(374), 2, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(419), 2, sym_shebangComment, sym_lineComment, - ACTIONS(311), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(313), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - [10422] = 7, + [11942] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33007,76 +35823,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(375), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(371), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(373), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, + ACTIONS(447), 1, + anon_sym_BANG_BANG, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, + anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1065), 1, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - [10468] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(376), 2, + ACTIONS(453), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, + anon_sym_PLUS, + ACTIONS(457), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(420), 2, sym_shebangComment, sym_lineComment, - ACTIONS(375), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(377), 13, - sym__open_argument_paren, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - [10514] = 22, + [12017] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33085,51 +35876,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(993), 1, + ACTIONS(1067), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(377), 2, + STATE(421), 2, sym_shebangComment, sym_lineComment, - [10589] = 22, + [12092] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33138,51 +35929,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(995), 1, + ACTIONS(1069), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(378), 2, + STATE(422), 2, sym_shebangComment, sym_lineComment, - [10664] = 7, + [12167] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33191,36 +35982,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(379), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(471), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(473), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1071), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [10709] = 22, + STATE(423), 2, + sym_shebangComment, + sym_lineComment, + [12242] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33229,51 +36035,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(997), 1, + ACTIONS(1073), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(380), 2, + STATE(424), 2, sym_shebangComment, sym_lineComment, - [10784] = 7, + [12317] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33282,36 +36088,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(381), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(487), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(489), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1075), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [10829] = 22, + STATE(425), 2, + sym_shebangComment, + sym_lineComment, + [12392] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33320,51 +36141,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(999), 1, + ACTIONS(1077), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(382), 2, + STATE(426), 2, sym_shebangComment, sym_lineComment, - [10904] = 7, + [12467] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33373,36 +36194,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(383), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(495), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(497), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1079), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [10949] = 22, + STATE(427), 2, + sym_shebangComment, + sym_lineComment, + [12542] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33411,51 +36247,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1001), 1, + ACTIONS(1081), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(384), 2, + STATE(428), 2, sym_shebangComment, sym_lineComment, - [11024] = 22, + [12617] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33464,51 +36300,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(501), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1011), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(1013), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1023), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(1027), 1, + ACTIONS(465), 1, anon_sym_PIPE_GT, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1083), 1, + anon_sym_RBRACK, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(385), 2, + STATE(429), 2, sym_shebangComment, sym_lineComment, - [11099] = 13, + [12692] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33517,42 +36353,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1013), 1, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1033), 1, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(503), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1085), 1, + anon_sym_RBRACK, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1015), 2, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(386), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(505), 13, + ACTIONS(455), 2, sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [11156] = 11, + ACTIONS(459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(430), 2, + sym_shebangComment, + sym_lineComment, + [12767] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33561,28 +36406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1009), 1, - anon_sym_BANG_BANG, - ACTIONS(1013), 1, - anon_sym_STAR_STAR, - ACTIONS(1033), 1, - sym__open_subscript_bracket, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(387), 2, + STATE(431), 2, sym_shebangComment, sym_lineComment, - ACTIONS(511), 4, + ACTIONS(403), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(513), 15, + ACTIONS(405), 20, + sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -33594,7 +36433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [11209] = 14, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [12812] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33603,34 +36444,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1009), 1, - anon_sym_BANG_BANG, - ACTIONS(1013), 1, - anon_sym_STAR_STAR, - ACTIONS(1033), 1, - sym__open_subscript_bracket, - ACTIONS(583), 2, + STATE(432), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(475), 4, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1015), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(477), 20, + sym__open_subscript_bracket, sym__binary_minus, - anon_sym_PLUS, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(388), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(585), 11, anon_sym_as, anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33639,7 +36471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [11268] = 22, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [12857] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33648,51 +36482,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(517), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1011), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(1013), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1023), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(1027), 1, + ACTIONS(465), 1, anon_sym_PIPE_GT, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1087), 1, + anon_sym_else, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(389), 2, + STATE(433), 2, sym_shebangComment, sym_lineComment, - [11343] = 11, + [12932] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33701,40 +36535,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1013), 1, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1033), 1, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(390), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(519), 4, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1089), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(521), 15, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [11396] = 17, + ACTIONS(471), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(434), 2, + sym_shebangComment, + sym_lineComment, + [13007] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33743,46 +36588,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1003), 1, + ACTIONS(481), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(1091), 1, anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(1013), 1, + ACTIONS(1099), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(1029), 1, + ACTIONS(1111), 1, + anon_sym_AMP_AMP, + ACTIONS(1113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1115), 1, + anon_sym_PIPE_GT, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1031), 2, + ACTIONS(1109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(391), 2, + STATE(435), 2, sym_shebangComment, sym_lineComment, - ACTIONS(525), 7, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - [11461] = 18, + [13082] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33791,47 +36641,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1003), 1, + ACTIONS(441), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(1091), 1, anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(1013), 1, + ACTIONS(1099), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(1029), 1, + ACTIONS(1111), 1, + anon_sym_AMP_AMP, + ACTIONS(1113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1115), 1, + anon_sym_PIPE_GT, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(392), 2, + STATE(436), 2, sym_shebangComment, sym_lineComment, - ACTIONS(529), 5, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - [11528] = 19, + [13157] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33840,48 +36694,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1013), 1, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1023), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1123), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(393), 2, + STATE(437), 2, sym_shebangComment, sym_lineComment, - ACTIONS(533), 4, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - [11597] = 20, + [13232] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33890,49 +36747,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1013), 1, + ACTIONS(449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1023), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1125), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(394), 2, + STATE(438), 2, sym_shebangComment, sym_lineComment, - ACTIONS(537), 3, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_GT, - [11668] = 22, + [13307] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33941,51 +36800,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1035), 1, + ACTIONS(1127), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(395), 2, + STATE(439), 2, sym_shebangComment, sym_lineComment, - [11743] = 7, + [13382] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33994,74 +36853,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(396), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(543), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(545), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(461), 1, anon_sym_AMP_AMP, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, + ACTIONS(465), 1, anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [11788] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(397), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(547), 4, + ACTIONS(1129), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(549), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [11833] = 7, + STATE(440), 2, + sym_shebangComment, + sym_lineComment, + [13457] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34070,74 +36906,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(398), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(551), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(553), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(461), 1, anon_sym_AMP_AMP, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, + ACTIONS(465), 1, anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [11878] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(399), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(555), 4, + ACTIONS(1131), 1, + anon_sym_RBRACK, + ACTIONS(443), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(557), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [11923] = 7, + STATE(441), 2, + sym_shebangComment, + sym_lineComment, + [13532] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34146,74 +36959,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(400), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(425), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(427), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(461), 1, anon_sym_AMP_AMP, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, + ACTIONS(465), 1, anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [11968] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(401), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(563), 4, + ACTIONS(1133), 1, + anon_sym_RBRACK, + ACTIONS(443), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(565), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [12013] = 7, + STATE(442), 2, + sym_shebangComment, + sym_lineComment, + [13607] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34222,74 +37012,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(402), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(567), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(569), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(461), 1, anon_sym_AMP_AMP, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, + ACTIONS(465), 1, anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [12058] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(403), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(571), 4, + ACTIONS(1135), 1, + anon_sym_RBRACK, + ACTIONS(443), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(573), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [12103] = 7, + STATE(443), 2, + sym_shebangComment, + sym_lineComment, + [13682] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34298,36 +37065,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(404), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(575), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(577), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1137), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [12148] = 7, + STATE(444), 2, + sym_shebangComment, + sym_lineComment, + [13757] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34336,36 +37118,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(405), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(579), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(581), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1139), 1, + anon_sym_else, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [12193] = 22, + STATE(445), 2, + sym_shebangComment, + sym_lineComment, + [13832] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34374,51 +37171,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(433), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1011), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(1013), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1023), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(1027), 1, + ACTIONS(465), 1, anon_sym_PIPE_GT, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1141), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(406), 2, + STATE(446), 2, sym_shebangComment, sym_lineComment, - [12268] = 22, + [13907] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34427,51 +37224,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(469), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(1011), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(1013), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(1023), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(1027), 1, + ACTIONS(465), 1, anon_sym_PIPE_GT, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(1005), 2, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1143), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1007), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1017), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(1019), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1021), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1031), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(407), 2, + STATE(447), 2, sym_shebangComment, sym_lineComment, - [12343] = 22, + [13982] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34480,51 +37277,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1037), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(408), 2, + STATE(448), 2, sym_shebangComment, sym_lineComment, - [12418] = 22, + [14057] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34533,51 +37330,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1039), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(409), 2, + STATE(449), 2, sym_shebangComment, sym_lineComment, - [12493] = 22, + [14132] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34586,51 +37383,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1041), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(410), 2, + STATE(450), 2, sym_shebangComment, sym_lineComment, - [12568] = 22, + [14207] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34639,51 +37436,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1043), 1, + ACTIONS(1151), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(411), 2, + STATE(451), 2, sym_shebangComment, sym_lineComment, - [12643] = 22, + [14282] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34692,51 +37489,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1045), 1, + ACTIONS(1153), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(412), 2, + STATE(452), 2, sym_shebangComment, sym_lineComment, - [12718] = 22, + [14357] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34745,51 +37542,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1047), 1, + ACTIONS(1155), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(413), 2, + STATE(453), 2, sym_shebangComment, sym_lineComment, - [12793] = 22, + [14432] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34798,51 +37595,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1049), 1, + ACTIONS(1157), 1, anon_sym_RBRACK, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(414), 2, + STATE(454), 2, sym_shebangComment, sym_lineComment, - [12868] = 22, + [14507] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34851,51 +37648,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1051), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(415), 2, + STATE(455), 2, sym_shebangComment, sym_lineComment, - [12943] = 7, + [14582] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34904,36 +37701,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(416), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(475), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(477), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, + ACTIONS(447), 1, anon_sym_BANG_BANG, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, + ACTIONS(451), 1, anon_sym_STAR_STAR, + ACTIONS(461), 1, + anon_sym_AMP_AMP, + ACTIONS(463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, + sym__open_subscript_bracket, + ACTIONS(982), 1, + anon_sym_as, + ACTIONS(988), 1, + anon_sym_is, + ACTIONS(1161), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, + ACTIONS(455), 2, + sym__binary_minus, anon_sym_PLUS, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [12988] = 22, + STATE(456), 2, + sym_shebangComment, + sym_lineComment, + [14657] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34942,51 +37754,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1091), 1, + anon_sym_as, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(1099), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, + ACTIONS(1115), 1, anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1053), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1163), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(417), 2, + STATE(457), 2, sym_shebangComment, sym_lineComment, - [13063] = 7, + [14732] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34995,15 +37807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(418), 2, + STATE(458), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 4, + ACTIONS(499), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(389), 20, + ACTIONS(501), 20, sym__open_subscript_bracket, sym__binary_minus, anon_sym_as, @@ -35024,7 +37836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - [13108] = 22, + [14777] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35033,51 +37845,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1055), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + STATE(459), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(503), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(505), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(419), 2, - sym_shebangComment, - sym_lineComment, - [13183] = 22, + [14822] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35086,51 +37883,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1057), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1165), 1, + anon_sym_RBRACK, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(420), 2, + STATE(460), 2, sym_shebangComment, sym_lineComment, - [13258] = 22, + [14897] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35139,51 +37936,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1059), 1, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(461), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1167), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(435), 2, + anon_sym_DASH_GT, + aux_sym_docComment_token1, + ACTIONS(1169), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [14948] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(462), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(511), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(513), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(421), 2, - sym_shebangComment, - sym_lineComment, - [13333] = 22, + [14993] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35192,51 +38015,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1061), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + STATE(463), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(495), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(497), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(422), 2, - sym_shebangComment, - sym_lineComment, - [13408] = 22, + [15038] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35245,51 +38053,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(517), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(1091), 1, + anon_sym_as, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(1099), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, + ACTIONS(1115), 1, anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(423), 2, + STATE(464), 2, sym_shebangComment, sym_lineComment, - [13483] = 22, + [15113] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35298,51 +38106,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1065), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(519), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1093), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1119), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(465), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(521), 13, sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(424), 2, - sym_shebangComment, - sym_lineComment, - [13558] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [15170] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35351,51 +38150,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1067), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + STATE(466), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(507), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(509), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(425), 2, - sym_shebangComment, - sym_lineComment, - [13633] = 22, + [15215] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35404,51 +38188,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1069), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1119), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(467), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(527), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(529), 15, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(426), 2, - sym_shebangComment, - sym_lineComment, - [13708] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [15268] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35457,51 +38230,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1071), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1093), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(427), 2, + STATE(468), 2, sym_shebangComment, sym_lineComment, - [13783] = 22, + ACTIONS(601), 11, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [15327] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35510,51 +38275,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1073), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(428), 2, + STATE(469), 2, sym_shebangComment, sym_lineComment, - [13858] = 22, + [15402] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35563,51 +38328,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(537), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(1091), 1, + anon_sym_as, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(1099), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, + ACTIONS(1115), 1, anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1075), 1, - anon_sym_RBRACK, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(429), 2, + STATE(470), 2, sym_shebangComment, sym_lineComment, - [13933] = 22, + [15477] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35616,51 +38381,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1077), 1, - anon_sym_RBRACK, - ACTIONS(435), 2, + ACTIONS(1119), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(471), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(539), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(541), 15, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(430), 2, - sym_shebangComment, - sym_lineComment, - [14008] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [15530] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35669,51 +38423,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(1091), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1097), 1, + anon_sym_BANG_BANG, + ACTIONS(1101), 1, + anon_sym_STAR_STAR, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1079), 1, - anon_sym_else, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(431), 2, + STATE(472), 2, sym_shebangComment, sym_lineComment, - [14083] = 22, + ACTIONS(545), 7, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + [15595] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35722,51 +38471,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1091), 1, + anon_sym_as, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1081), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(432), 2, + STATE(473), 2, sym_shebangComment, sym_lineComment, - [14158] = 22, + ACTIONS(549), 5, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + [15662] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35775,51 +38520,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1091), 1, + anon_sym_as, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1083), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(433), 2, + STATE(474), 2, sym_shebangComment, sym_lineComment, - [14233] = 22, + ACTIONS(553), 4, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + [15731] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35828,51 +38570,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1091), 1, + anon_sym_as, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(1101), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, + ACTIONS(1117), 1, anon_sym_is, - ACTIONS(1085), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1121), 1, + sym__open_subscript_bracket, + ACTIONS(1093), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(1103), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(1105), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(1107), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(1109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(1119), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(434), 2, + STATE(475), 2, sym_shebangComment, sym_lineComment, - [14308] = 22, + ACTIONS(557), 3, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_GT, + [15802] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35881,51 +38621,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1087), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(435), 2, + STATE(476), 2, sym_shebangComment, sym_lineComment, - [14383] = 22, + [15877] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35934,51 +38674,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1089), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1119), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(477), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(523), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(525), 16, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(436), 2, - sym_shebangComment, - sym_lineComment, - [14458] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [15928] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35987,51 +38715,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(1097), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, + ACTIONS(1121), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1119), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(478), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(559), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(561), 16, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(437), 2, - sym_shebangComment, - sym_lineComment, - [14533] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [15979] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36040,51 +38756,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1093), 1, - anon_sym_RBRACK, - ACTIONS(435), 2, + STATE(479), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(483), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(485), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(438), 2, - sym_shebangComment, - sym_lineComment, - [14608] = 22, + [16024] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36093,51 +38794,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + STATE(480), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(563), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(565), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, anon_sym_BANG_BANG, - ACTIONS(441), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(455), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, anon_sym_is, - ACTIONS(1095), 1, - anon_sym_RBRACK, - ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [16069] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(481), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(567), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(569), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(439), 2, - sym_shebangComment, - sym_lineComment, - [14683] = 22, + [16114] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36146,51 +38870,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1097), 1, - anon_sym_else, - ACTIONS(435), 2, + ACTIONS(1175), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(440), 2, + STATE(482), 2, sym_shebangComment, sym_lineComment, - [14758] = 22, + [16189] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36199,51 +38923,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1099), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(441), 2, + STATE(483), 2, sym_shebangComment, sym_lineComment, - [14833] = 22, + [16264] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36252,51 +38976,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + STATE(484), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(571), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(573), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, anon_sym_BANG_BANG, - ACTIONS(441), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(455), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, anon_sym_is, - ACTIONS(1101), 1, - anon_sym_RBRACK, - ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [16309] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(485), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(575), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + anon_sym_SLASH, + ACTIONS(577), 20, + sym__open_subscript_bracket, + sym__binary_minus, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_BANG, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(442), 2, - sym_shebangComment, - sym_lineComment, - [14908] = 22, + [16354] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36305,51 +39052,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, + ACTIONS(447), 1, anon_sym_BANG_BANG, - ACTIONS(441), 1, + ACTIONS(449), 1, anon_sym_QMARK_QMARK, - ACTIONS(443), 1, + ACTIONS(451), 1, anon_sym_STAR_STAR, - ACTIONS(453), 1, + ACTIONS(461), 1, anon_sym_AMP_AMP, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, ACTIONS(465), 1, + anon_sym_PIPE_GT, + ACTIONS(473), 1, sym__open_subscript_bracket, - ACTIONS(959), 1, + ACTIONS(982), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(988), 1, anon_sym_is, - ACTIONS(1103), 1, - anon_sym_RBRACK, - ACTIONS(435), 2, + ACTIONS(1179), 1, + anon_sym_RPAREN, + ACTIONS(443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 2, + ACTIONS(453), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(447), 2, + ACTIONS(455), 2, sym__binary_minus, anon_sym_PLUS, - ACTIONS(449), 2, + ACTIONS(457), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(451), 2, + ACTIONS(459), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 2, + ACTIONS(471), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(443), 2, + STATE(486), 2, + sym_shebangComment, + sym_lineComment, + [16429] = 8, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1181), 1, + anon_sym_DOT, + STATE(487), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_qualifiedIdentifier_repeat1, + ACTIONS(300), 6, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LT, + aux_sym_docComment_token1, + ACTIONS(298), 15, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [16475] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1184), 1, + anon_sym_DOT, + STATE(489), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(488), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(286), 6, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LT, + aux_sym_docComment_token1, + ACTIONS(284), 15, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [16523] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1184), 1, + anon_sym_DOT, + STATE(487), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(489), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(293), 6, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LT, + aux_sym_docComment_token1, + ACTIONS(291), 15, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [16571] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(490), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(300), 7, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LT, + anon_sym_DOT, + aux_sym_docComment_token1, + ACTIONS(298), 15, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [16614] = 20, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(17), 1, + anon_sym_module, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(1186), 1, + sym_identifier, + ACTIONS(1188), 1, + anon_sym_class, + ACTIONS(1190), 1, + anon_sym_typealias, + STATE(492), 1, + aux_sym_moduleHeader_repeat1, + STATE(542), 1, + sym_moduleClause, + STATE(620), 1, + sym_methodHeader, + STATE(621), 1, + sym_extendsOrAmendsClause, + STATE(636), 1, + sym_annotation, + STATE(652), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(491), 2, sym_shebangComment, sym_lineComment, - [14983] = 22, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [16683] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36358,51 +39306,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1105), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(444), 2, + ACTIONS(17), 1, + anon_sym_module, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(1192), 1, + sym_identifier, + ACTIONS(1194), 1, + anon_sym_class, + ACTIONS(1196), 1, + anon_sym_typealias, + STATE(554), 1, + sym_moduleClause, + STATE(604), 1, + aux_sym_moduleHeader_repeat1, + STATE(622), 1, + sym_extendsOrAmendsClause, + STATE(625), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(650), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(492), 2, sym_shebangComment, sym_lineComment, - [15058] = 22, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [16752] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36411,51 +39355,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1003), 1, - anon_sym_as, - ACTIONS(1009), 1, - anon_sym_BANG_BANG, - ACTIONS(1011), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1013), 1, - anon_sym_STAR_STAR, - ACTIONS(1023), 1, - anon_sym_AMP_AMP, - ACTIONS(1025), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, - ACTIONS(1029), 1, - anon_sym_is, - ACTIONS(1033), 1, - sym__open_subscript_bracket, - ACTIONS(1107), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(1005), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1015), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(1017), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(445), 2, + ACTIONS(17), 1, + anon_sym_module, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(1186), 1, + sym_identifier, + ACTIONS(1188), 1, + anon_sym_class, + ACTIONS(1190), 1, + anon_sym_typealias, + STATE(542), 1, + sym_moduleClause, + STATE(604), 1, + aux_sym_moduleHeader_repeat1, + STATE(620), 1, + sym_methodHeader, + STATE(621), 1, + sym_extendsOrAmendsClause, + STATE(636), 1, + sym_annotation, + STATE(652), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(493), 2, sym_shebangComment, sym_lineComment, - [15133] = 22, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [16821] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36464,51 +39404,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1109), 1, - anon_sym_else, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(446), 2, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(1198), 1, + anon_sym_RBRACE, + STATE(497), 1, + aux_sym_classBody_repeat1, + STATE(626), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(641), 1, + aux_sym_moduleHeader_repeat1, + STATE(642), 1, + sym_docComment, + STATE(662), 1, + sym_modifier, + STATE(667), 1, + aux_sym_moduleClause_repeat1, + STATE(494), 2, sym_shebangComment, sym_lineComment, - [15208] = 7, + STATE(663), 2, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [16887] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36517,36 +39451,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(447), 2, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(1200), 1, + anon_sym_RBRACE, + STATE(494), 1, + aux_sym_classBody_repeat1, + STATE(626), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(641), 1, + aux_sym_moduleHeader_repeat1, + STATE(642), 1, + sym_docComment, + STATE(662), 1, + sym_modifier, + STATE(667), 1, + aux_sym_moduleClause_repeat1, + STATE(495), 2, sym_shebangComment, sym_lineComment, - ACTIONS(479), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(481), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [15253] = 7, + STATE(663), 2, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [16953] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36555,36 +39498,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(448), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + STATE(55), 1, + sym_objectBody, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(788), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(496), 2, sym_shebangComment, sym_lineComment, - ACTIONS(491), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(493), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [15298] = 10, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17017] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36593,30 +39544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(449), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1111), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1216), 1, + sym_identifier, + ACTIONS(1219), 1, anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(1221), 1, + anon_sym_function, + ACTIONS(1224), 1, anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, + ACTIONS(1230), 1, aux_sym_docComment_token1, - ACTIONS(1113), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, + STATE(626), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(641), 1, + aux_sym_moduleHeader_repeat1, + STATE(642), 1, + sym_docComment, + STATE(662), 1, + sym_modifier, + STATE(667), 1, + aux_sym_moduleClause_repeat1, + STATE(663), 2, + sym_classProperty, + sym_classMethod, + STATE(497), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_classBody_repeat1, + ACTIONS(1227), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -36624,8 +39581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [15349] = 10, + [17081] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36634,39 +39590,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1009), 1, - anon_sym_BANG_BANG, - ACTIONS(1033), 1, - sym__open_subscript_bracket, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(450), 2, + ACTIONS(1037), 1, + anon_sym_LBRACE, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(394), 1, + sym_objectBody, + STATE(787), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(498), 2, sym_shebangComment, sym_lineComment, - ACTIONS(507), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(509), 16, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [15400] = 10, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17145] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36675,39 +39636,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1009), 1, - anon_sym_BANG_BANG, - ACTIONS(1033), 1, - sym__open_subscript_bracket, - ACTIONS(1031), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(451), 2, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + STATE(281), 1, + sym_objectBody, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(784), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(499), 2, sym_shebangComment, sym_lineComment, - ACTIONS(539), 4, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17209] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, anon_sym_STAR, - anon_sym_LT, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1233), 1, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(541), 16, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [15451] = 7, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(500), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17270] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1235), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(501), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17331] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36716,36 +39770,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(452), 2, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + ACTIONS(1245), 1, + anon_sym_LT, + STATE(586), 1, + sym_typeParameterList, + STATE(619), 1, + sym_classExtendsClause, + STATE(646), 1, + sym_classBody, + STATE(502), 2, sym_shebangComment, sym_lineComment, - ACTIONS(559), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(561), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [15496] = 22, + ACTIONS(1237), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1239), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [17384] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36754,51 +39810,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1115), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + ACTIONS(1245), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(453), 2, + STATE(591), 1, + sym_typeParameterList, + STATE(635), 1, + sym_classExtendsClause, + STATE(647), 1, + sym_classBody, + STATE(503), 2, sym_shebangComment, sym_lineComment, - [15571] = 22, + ACTIONS(1247), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1249), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [17437] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36807,51 +39850,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1117), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(454), 2, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1251), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(776), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(504), 2, sym_shebangComment, sym_lineComment, - [15646] = 22, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17498] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36860,51 +39894,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(439), 1, - anon_sym_BANG_BANG, - ACTIONS(441), 1, - anon_sym_QMARK_QMARK, - ACTIONS(443), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_AMP_AMP, - ACTIONS(455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(457), 1, - anon_sym_PIPE_GT, - ACTIONS(465), 1, - sym__open_subscript_bracket, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_is, - ACTIONS(1119), 1, - anon_sym_RPAREN, - ACTIONS(435), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(445), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(447), 2, - sym__binary_minus, - anon_sym_PLUS, - ACTIONS(449), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(455), 2, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1253), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(505), 2, sym_shebangComment, sym_lineComment, - [15721] = 7, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17559] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36913,36 +39938,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(456), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(483), 4, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, anon_sym_STAR, - anon_sym_LT, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1255), 1, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(485), 20, - sym__open_subscript_bracket, - sym__binary_minus, - anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_BANG, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [15766] = 8, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(506), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17620] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36951,24 +39982,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1121), 1, - anon_sym_DOT, - STATE(457), 3, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + ACTIONS(1245), 1, + anon_sym_LT, + STATE(580), 1, + sym_typeParameterList, + STATE(631), 1, + sym_classExtendsClause, + STATE(651), 1, + sym_classBody, + STATE(507), 2, sym_shebangComment, sym_lineComment, - aux_sym_qualifiedIdentifier_repeat1, - ACTIONS(300), 6, + ACTIONS(1257), 3, ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_LBRACE, anon_sym_AT, - anon_sym_LT, aux_sym_docComment_token1, - ACTIONS(298), 15, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, + ACTIONS(1259), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -36980,7 +40013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [15812] = 9, + [17673] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36989,25 +40022,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1124), 1, - anon_sym_DOT, - STATE(459), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(458), 2, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + ACTIONS(1245), 1, + anon_sym_LT, + STATE(592), 1, + sym_typeParameterList, + STATE(632), 1, + sym_classExtendsClause, + STATE(657), 1, + sym_classBody, + STATE(508), 2, sym_shebangComment, sym_lineComment, - ACTIONS(286), 6, + ACTIONS(1261), 3, ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_LBRACE, anon_sym_AT, - anon_sym_LT, aux_sym_docComment_token1, - ACTIONS(284), 15, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, + ACTIONS(1263), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -37019,7 +40053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [15860] = 9, + [17726] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37028,37 +40062,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1124), 1, - anon_sym_DOT, - STATE(457), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(459), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1265), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(509), 2, sym_shebangComment, sym_lineComment, - ACTIONS(293), 6, - ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LT, - aux_sym_docComment_token1, - ACTIONS(291), 15, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17787] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1267), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(510), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17848] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1202), 1, sym_identifier, - [15908] = 20, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1269), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(511), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17909] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37067,47 +40194,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(17), 1, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1271), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(512), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [17970] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1128), 1, - anon_sym_class, - ACTIONS(1130), 1, - anon_sym_typealias, - STATE(511), 1, - sym_moduleClause, - STATE(558), 1, - aux_sym_moduleHeader_repeat1, - STATE(565), 1, - sym_extendsOrAmendsClause, - STATE(567), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(594), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - ACTIONS(19), 2, - anon_sym_extends, - anon_sym_amends, - STATE(460), 2, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1273), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(513), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18031] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1275), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(514), 2, sym_shebangComment, sym_lineComment, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [15977] = 20, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18092] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37116,47 +40326,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(1132), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1134), 1, - anon_sym_class, - ACTIONS(1136), 1, - anon_sym_typealias, - STATE(460), 1, - aux_sym_moduleHeader_repeat1, - STATE(501), 1, - sym_moduleClause, - STATE(562), 1, - sym_extendsOrAmendsClause, - STATE(581), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(590), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - ACTIONS(19), 2, - anon_sym_extends, - anon_sym_amends, - STATE(461), 2, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1277), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(515), 2, sym_shebangComment, sym_lineComment, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [16046] = 7, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18153] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37165,34 +40370,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(462), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1279), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(516), 2, sym_shebangComment, sym_lineComment, - ACTIONS(300), 7, - ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LT, - anon_sym_DOT, - aux_sym_docComment_token1, - ACTIONS(298), 15, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [16089] = 20, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18214] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37201,47 +40414,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(1132), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1134), 1, - anon_sym_class, - ACTIONS(1136), 1, - anon_sym_typealias, - STATE(501), 1, - sym_moduleClause, - STATE(558), 1, - aux_sym_moduleHeader_repeat1, - STATE(562), 1, - sym_extendsOrAmendsClause, - STATE(581), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(590), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - ACTIONS(19), 2, - anon_sym_extends, - anon_sym_amends, - STATE(463), 2, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1281), 1, + anon_sym_GT, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(517), 2, sym_shebangComment, sym_lineComment, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [16158] = 18, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18275] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37250,35 +40458,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(833), 1, - anon_sym_LBRACE, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(258), 1, - sym_objectBody, - STATE(318), 1, + ACTIONS(1283), 1, + anon_sym_RPAREN, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(730), 1, + STATE(772), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(464), 2, + STATE(518), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37287,7 +40493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16222] = 18, + [18336] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37296,35 +40502,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(49), 1, - sym_objectBody, - STATE(318), 1, + ACTIONS(1285), 1, + anon_sym_RPAREN, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(750), 1, + STATE(781), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(465), 2, + STATE(519), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37333,7 +40537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16286] = 18, + [18397] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37342,35 +40546,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(981), 1, - anon_sym_LBRACE, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + ACTIONS(1287), 1, + anon_sym_RPAREN, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(353), 1, - sym_objectBody, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(746), 1, + STATE(781), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(466), 2, + STATE(520), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37379,7 +40581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16350] = 19, + [18458] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37388,45 +40590,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(13), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(1152), 1, - anon_sym_RBRACE, - STATE(468), 1, - aux_sym_classBody_repeat1, - STATE(579), 1, - sym_methodHeader, - STATE(583), 1, - sym_docComment, - STATE(584), 1, - aux_sym_moduleHeader_repeat1, - STATE(586), 1, - sym_annotation, - STATE(608), 1, - sym_modifier, - STATE(613), 1, - aux_sym_moduleClause_repeat1, - STATE(467), 2, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1289), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(778), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(521), 2, sym_shebangComment, sym_lineComment, - STATE(609), 2, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [16416] = 19, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18519] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37435,45 +40634,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(13), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(1154), 1, - anon_sym_RBRACE, - STATE(469), 1, - aux_sym_classBody_repeat1, - STATE(579), 1, - sym_methodHeader, - STATE(583), 1, - sym_docComment, - STATE(584), 1, - aux_sym_moduleHeader_repeat1, - STATE(586), 1, - sym_annotation, - STATE(608), 1, - sym_modifier, - STATE(613), 1, - aux_sym_moduleClause_repeat1, - STATE(468), 2, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1291), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(522), 2, sym_shebangComment, sym_lineComment, - STATE(609), 2, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [16482] = 18, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18580] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37482,44 +40678,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1156), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1159), 1, - anon_sym_RBRACE, - ACTIONS(1161), 1, - anon_sym_function, - ACTIONS(1164), 1, - anon_sym_AT, - ACTIONS(1170), 1, - aux_sym_docComment_token1, - STATE(579), 1, - sym_methodHeader, - STATE(583), 1, - sym_docComment, - STATE(584), 1, - aux_sym_moduleHeader_repeat1, - STATE(586), 1, - sym_annotation, - STATE(608), 1, - sym_modifier, - STATE(613), 1, - aux_sym_moduleClause_repeat1, - STATE(609), 2, - sym_classProperty, - sym_classMethod, - STATE(469), 3, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1293), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(781), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(523), 2, sym_shebangComment, sym_lineComment, - aux_sym_classBody_repeat1, - ACTIONS(1167), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [16546] = 13, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18641] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37528,38 +40722,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LT, - STATE(541), 1, - sym_typeParameterList, - STATE(569), 1, - sym_classExtendsClause, - STATE(596), 1, - sym_classBody, - STATE(470), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1295), 1, + anon_sym_RPAREN, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(769), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(524), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1173), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1175), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [16599] = 17, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18702] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37568,33 +40766,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1183), 1, + ACTIONS(1297), 1, anon_sym_RPAREN, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(715), 1, + STATE(781), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(471), 2, + STATE(525), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37603,7 +40801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16660] = 13, + [18763] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37612,38 +40810,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LT, - STATE(527), 1, - sym_typeParameterList, - STATE(574), 1, - sym_classExtendsClause, - STATE(591), 1, - sym_classBody, - STATE(472), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(614), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(526), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1185), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1187), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [16713] = 13, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18821] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37652,38 +40852,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LT, - STATE(539), 1, - sym_typeParameterList, - STATE(570), 1, - sym_classExtendsClause, - STATE(593), 1, - sym_classBody, - STATE(473), 2, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(1204), 1, + anon_sym_module, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_STAR, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1214), 1, + anon_sym_POUND_DQUOTE, + STATE(354), 1, + sym_qualifiedIdentifier, + STATE(381), 1, + sym_stringConstant, + STATE(771), 1, + sym__type, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(527), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1189), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1191), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [16766] = 17, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [18879] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37692,33 +40894,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1193), 1, - anon_sym_RPAREN, - STATE(318), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(372), 1, - sym_stringConstant, - STATE(726), 1, + STATE(254), 1, sym__type, - ACTIONS(1144), 2, + STATE(262), 1, + sym_stringConstant, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(474), 2, + STATE(528), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37727,7 +40927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16827] = 17, + [18937] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37736,33 +40936,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1195), 1, - anon_sym_RPAREN, - STATE(318), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(372), 1, - sym_stringConstant, - STATE(720), 1, + STATE(255), 1, sym__type, - ACTIONS(1144), 2, + STATE(262), 1, + sym_stringConstant, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(475), 2, + STATE(529), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37771,7 +40969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16888] = 17, + [18995] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37780,33 +40978,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1197), 1, - anon_sym_RPAREN, - STATE(318), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(372), 1, - sym_stringConstant, - STATE(722), 1, + STATE(257), 1, sym__type, - ACTIONS(1144), 2, + STATE(262), 1, + sym_stringConstant, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(476), 2, + STATE(530), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37815,47 +41011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [16949] = 13, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LT, - STATE(543), 1, - sym_typeParameterList, - STATE(564), 1, - sym_classExtendsClause, - STATE(599), 1, - sym_classBody, - STATE(477), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1199), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1201), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [17002] = 16, + [19053] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37864,31 +41020,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1207), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1213), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1215), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - STATE(21), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(40), 1, + STATE(251), 1, sym__type, - STATE(44), 1, + STATE(262), 1, sym_stringConstant, - ACTIONS(1209), 2, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(478), 2, + STATE(531), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37897,7 +41053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17060] = 16, + [19111] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37906,31 +41062,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1221), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1229), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - STATE(226), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(231), 1, - sym_stringConstant, - STATE(234), 1, + STATE(250), 1, sym__type, - ACTIONS(1223), 2, + STATE(262), 1, + sym_stringConstant, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(479), 2, + STATE(532), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -37939,42 +41095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17118] = 9, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(562), 1, - sym_extendsOrAmendsClause, - ACTIONS(19), 2, - anon_sym_extends, - anon_sym_amends, - STATE(480), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1231), 4, - ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1233), 12, - anon_sym_import, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [17162] = 16, + [19169] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37983,31 +41104,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, + ACTIONS(1313), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1315), 1, anon_sym_module, - ACTIONS(1221), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1323), 1, anon_sym_DQUOTE, - ACTIONS(1229), 1, + ACTIONS(1325), 1, anon_sym_POUND_DQUOTE, - STATE(226), 1, + STATE(334), 1, sym_qualifiedIdentifier, - STATE(231), 1, + STATE(357), 1, sym_stringConstant, - STATE(233), 1, + STATE(360), 1, sym__type, - ACTIONS(1223), 2, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(481), 2, + STATE(533), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38016,7 +41137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17220] = 16, + [19227] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38025,31 +41146,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1221), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1229), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(226), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(230), 1, - sym__type, - STATE(231), 1, + STATE(381), 1, sym_stringConstant, - ACTIONS(1223), 2, + STATE(395), 1, + sym__type, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(482), 2, + STATE(534), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38058,7 +41179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17278] = 11, + [19285] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38067,23 +41188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(1235), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(537), 1, - aux_sym_classProperty_repeat1, - STATE(483), 2, + STATE(535), 2, sym_shebangComment, sym_lineComment, - ACTIONS(879), 4, + ACTIONS(1327), 4, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(881), 11, + ACTIONS(1329), 15, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -38095,7 +41212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [17326] = 16, + [19325] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38104,31 +41221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, + ACTIONS(1313), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1315), 1, anon_sym_module, - ACTIONS(1221), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1323), 1, anon_sym_DQUOTE, - ACTIONS(1229), 1, + ACTIONS(1325), 1, anon_sym_POUND_DQUOTE, - STATE(226), 1, + STATE(334), 1, sym_qualifiedIdentifier, - STATE(231), 1, - sym_stringConstant, - STATE(240), 1, + STATE(340), 1, sym__type, - ACTIONS(1223), 2, + STATE(357), 1, + sym_stringConstant, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(484), 2, + STATE(536), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38137,7 +41254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17384] = 16, + [19383] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38146,31 +41263,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(549), 1, + STATE(393), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(485), 2, + STATE(537), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38179,7 +41296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17442] = 16, + [19441] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38188,31 +41305,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1237), 1, + ACTIONS(1313), 1, sym_identifier, - ACTIONS(1239), 1, + ACTIONS(1315), 1, anon_sym_module, - ACTIONS(1241), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1323), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1325), 1, anon_sym_POUND_DQUOTE, - STATE(307), 1, + STATE(334), 1, sym_qualifiedIdentifier, - STATE(327), 1, - sym_stringConstant, - STATE(332), 1, + STATE(341), 1, sym__type, - ACTIONS(1243), 2, + STATE(357), 1, + sym_stringConstant, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(486), 2, + STATE(538), 2, sym_shebangComment, sym_lineComment, - STATE(324), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38221,7 +41338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17500] = 16, + [19499] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38230,31 +41347,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, + ACTIONS(1313), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1315), 1, anon_sym_module, - ACTIONS(1207), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1213), 1, + ACTIONS(1323), 1, anon_sym_DQUOTE, - ACTIONS(1215), 1, + ACTIONS(1325), 1, anon_sym_POUND_DQUOTE, - STATE(21), 1, + STATE(334), 1, sym_qualifiedIdentifier, - STATE(29), 1, + STATE(338), 1, sym__type, - STATE(44), 1, + STATE(357), 1, sym_stringConstant, - ACTIONS(1209), 2, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(487), 2, + STATE(539), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38263,7 +41380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17558] = 16, + [19557] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38272,31 +41389,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(449), 1, + STATE(402), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(488), 2, + STATE(540), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38305,7 +41422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17616] = 7, + [19615] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38314,31 +41431,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(489), 2, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_module, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1321), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + anon_sym_DQUOTE, + ACTIONS(1325), 1, + anon_sym_POUND_DQUOTE, + STATE(334), 1, + sym_qualifiedIdentifier, + STATE(344), 1, + sym__type, + STATE(357), 1, + sym_stringConstant, + ACTIONS(1319), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(541), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1251), 4, - ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1253), 15, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [17656] = 11, + STATE(356), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [19673] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38347,23 +41473,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(1259), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(544), 1, - aux_sym_classProperty_repeat1, - STATE(490), 2, + STATE(622), 1, + sym_extendsOrAmendsClause, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(542), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1255), 4, + ACTIONS(1331), 4, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1257), 11, + ACTIONS(1333), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -38375,7 +41499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [17704] = 16, + [19717] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38384,31 +41508,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, + ACTIONS(1313), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1315), 1, anon_sym_module, - ACTIONS(1207), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1213), 1, + ACTIONS(1323), 1, anon_sym_DQUOTE, - ACTIONS(1215), 1, + ACTIONS(1325), 1, anon_sym_POUND_DQUOTE, - STATE(21), 1, + STATE(334), 1, sym_qualifiedIdentifier, - STATE(30), 1, + STATE(346), 1, sym__type, - STATE(44), 1, + STATE(357), 1, sym_stringConstant, - ACTIONS(1209), 2, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(491), 2, + STATE(543), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38417,7 +41541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17762] = 16, + [19775] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38426,31 +41550,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1237), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1239), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1241), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(307), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(327), 1, + STATE(381), 1, sym_stringConstant, - STATE(335), 1, + STATE(461), 1, sym__type, - ACTIONS(1243), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(492), 2, + STATE(544), 2, sym_shebangComment, sym_lineComment, - STATE(324), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38459,7 +41583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17820] = 16, + [19833] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38468,31 +41592,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1237), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1239), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1241), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(307), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(327), 1, + STATE(26), 1, sym_stringConstant, - STATE(331), 1, + STATE(36), 1, sym__type, - ACTIONS(1243), 2, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(493), 2, + STATE(545), 2, sym_shebangComment, sym_lineComment, - STATE(324), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38501,7 +41625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [17878] = 16, + [19891] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38510,40 +41634,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_module, - ACTIONS(1207), 1, - anon_sym_LPAREN, - ACTIONS(1211), 1, - anon_sym_STAR, - ACTIONS(1213), 1, - anon_sym_DQUOTE, - ACTIONS(1215), 1, - anon_sym_POUND_DQUOTE, - STATE(21), 1, - sym_qualifiedIdentifier, - STATE(26), 1, - sym__type, - STATE(44), 1, - sym_stringConstant, - ACTIONS(1209), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(494), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(1353), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(597), 1, + aux_sym_classProperty_repeat1, + STATE(546), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_defaultUnionType, - sym_functionLiteralType, - [17936] = 16, + ACTIONS(1349), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1351), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [19939] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38552,40 +41671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1237), 1, - sym_identifier, - ACTIONS(1239), 1, - anon_sym_module, - ACTIONS(1241), 1, - anon_sym_LPAREN, - ACTIONS(1245), 1, - anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_DQUOTE, - ACTIONS(1249), 1, - anon_sym_POUND_DQUOTE, - STATE(307), 1, - sym_qualifiedIdentifier, - STATE(317), 1, - sym__type, - STATE(327), 1, - sym_stringConstant, - ACTIONS(1243), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(495), 2, + ACTIONS(1359), 1, + anon_sym_import, + ACTIONS(1362), 1, + anon_sym_import_STAR, + STATE(618), 2, + sym_importClause, + sym_importGlobClause, + ACTIONS(1355), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + STATE(547), 3, sym_shebangComment, sym_lineComment, - STATE(324), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_defaultUnionType, - sym_functionLiteralType, - [17994] = 16, + aux_sym_module_repeat1, + ACTIONS(1357), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [19985] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38594,40 +41707,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, - sym_identifier, - ACTIONS(1140), 1, - anon_sym_module, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - anon_sym_STAR, - ACTIONS(1148), 1, - anon_sym_DQUOTE, - ACTIONS(1150), 1, - anon_sym_POUND_DQUOTE, - STATE(318), 1, - sym_qualifiedIdentifier, - STATE(360), 1, - sym__type, - STATE(372), 1, - sym_stringConstant, - ACTIONS(1144), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(496), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(1365), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(581), 1, + aux_sym_classProperty_repeat1, + STATE(548), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_defaultUnionType, - sym_functionLiteralType, - [18052] = 16, + ACTIONS(909), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(911), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [20033] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38636,31 +41744,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1207), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1213), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1215), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - STATE(21), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(32), 1, - sym__type, - STATE(44), 1, + STATE(262), 1, sym_stringConstant, - ACTIONS(1209), 2, + STATE(268), 1, + sym__type, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(497), 2, + STATE(549), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38669,7 +41777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18110] = 16, + [20091] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38678,31 +41786,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1207), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1213), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1215), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - STATE(21), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(41), 1, - sym__type, - STATE(44), 1, + STATE(262), 1, sym_stringConstant, - ACTIONS(1209), 2, + STATE(267), 1, + sym__type, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(498), 2, + STATE(550), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38711,7 +41819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18168] = 16, + [20149] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38720,31 +41828,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1237), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1239), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1241), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(307), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(315), 1, - sym__type, - STATE(327), 1, + STATE(26), 1, sym_stringConstant, - ACTIONS(1243), 2, + STATE(28), 1, + sym__type, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(499), 2, + STATE(551), 2, sym_shebangComment, sym_lineComment, - STATE(324), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38753,7 +41861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18226] = 10, + [20207] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38762,22 +41870,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1265), 1, - anon_sym_import, - ACTIONS(1268), 1, - anon_sym_import_STAR, - STATE(577), 2, - sym_importClause, - sym_importGlobClause, - ACTIONS(1261), 3, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(593), 1, + aux_sym_classProperty_repeat1, + STATE(552), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(943), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - STATE(500), 3, + ACTIONS(945), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [20255] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(621), 1, + sym_extendsOrAmendsClause, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(553), 2, sym_shebangComment, sym_lineComment, - aux_sym_module_repeat1, - ACTIONS(1263), 11, + ACTIONS(1369), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1371), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -38789,7 +41933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18272] = 9, + [20299] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38798,20 +41942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(565), 1, + STATE(634), 1, sym_extendsOrAmendsClause, ACTIONS(19), 2, anon_sym_extends, anon_sym_amends, - STATE(501), 2, + STATE(554), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1271), 4, + ACTIONS(1373), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1273), 12, + ACTIONS(1375), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -38824,7 +41968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18316] = 16, + [20343] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38833,31 +41977,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(371), 1, + STATE(381), 1, + sym_stringConstant, + STATE(606), 1, sym__type, - STATE(372), 1, + ACTIONS(1208), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(555), 2, + sym_shebangComment, + sym_lineComment, + STATE(401), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [20401] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_module, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1321), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + anon_sym_DQUOTE, + ACTIONS(1325), 1, + anon_sym_POUND_DQUOTE, + STATE(334), 1, + sym_qualifiedIdentifier, + STATE(357), 1, sym_stringConstant, - ACTIONS(1144), 2, + STATE(359), 1, + sym__type, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(502), 2, + STATE(556), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38866,7 +42052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18374] = 16, + [20459] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38875,31 +42061,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(26), 1, sym_stringConstant, - STATE(559), 1, + STATE(29), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(503), 2, + STATE(557), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38908,7 +42094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18432] = 16, + [20517] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38917,31 +42103,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1221), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1229), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(226), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(231), 1, + STATE(381), 1, sym_stringConstant, - STATE(241), 1, + STATE(387), 1, sym__type, - ACTIONS(1223), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(504), 2, + STATE(558), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38950,7 +42136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18490] = 16, + [20575] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38959,31 +42145,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(26), 1, sym_stringConstant, - STATE(557), 1, + STATE(45), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(505), 2, + STATE(559), 2, + sym_shebangComment, + sym_lineComment, + STATE(47), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_defaultUnionType, + sym_functionLiteralType, + [20633] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1335), 1, + sym_identifier, + ACTIONS(1337), 1, + anon_sym_module, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + anon_sym_DQUOTE, + ACTIONS(1347), 1, + anon_sym_POUND_DQUOTE, + STATE(20), 1, + sym_qualifiedIdentifier, + STATE(26), 1, + sym_stringConstant, + STATE(31), 1, + sym__type, + ACTIONS(1341), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(560), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -38992,7 +42220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18548] = 16, + [20691] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39001,31 +42229,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(546), 1, + STATE(615), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(506), 2, + STATE(561), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39034,7 +42262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18606] = 16, + [20749] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39043,31 +42271,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1237), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1239), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1241), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(307), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(320), 1, - sym__type, - STATE(327), 1, + STATE(26), 1, sym_stringConstant, - ACTIONS(1243), 2, + STATE(33), 1, + sym__type, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(507), 2, + STATE(562), 2, sym_shebangComment, sym_lineComment, - STATE(324), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39076,7 +42304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18664] = 16, + [20807] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39085,31 +42313,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1203), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1207), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1213), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1215), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(21), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(34), 1, - sym__type, - STATE(44), 1, + STATE(381), 1, sym_stringConstant, - ACTIONS(1209), 2, + STATE(600), 1, + sym__type, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(508), 2, + STATE(563), 2, sym_shebangComment, sym_lineComment, - STATE(43), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39118,7 +42346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18722] = 11, + [20865] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39127,68 +42355,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(1275), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(535), 1, - aux_sym_classProperty_repeat1, - STATE(509), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(841), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(843), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [18770] = 16, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1237), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1239), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1241), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(307), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(322), 1, - sym__type, - STATE(327), 1, + STATE(26), 1, sym_stringConstant, - ACTIONS(1243), 2, + STATE(35), 1, + sym__type, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(510), 2, + STATE(564), 2, sym_shebangComment, sym_lineComment, - STATE(324), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39197,42 +42388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18828] = 9, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(578), 1, - sym_extendsOrAmendsClause, - ACTIONS(19), 2, - anon_sym_extends, - anon_sym_amends, - STATE(511), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1277), 4, - ts_builtin_sym_end, - anon_sym_import_STAR, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1279), 12, - anon_sym_import, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [18872] = 16, + [20923] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39241,31 +42397,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(719), 1, + STATE(774), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(512), 2, + STATE(565), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39274,7 +42430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18930] = 16, + [20981] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39283,31 +42439,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1337), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1345), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1347), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(20), 1, sym_qualifiedIdentifier, - STATE(365), 1, - sym__type, - STATE(372), 1, + STATE(26), 1, sym_stringConstant, - ACTIONS(1144), 2, + STATE(44), 1, + sym__type, + ACTIONS(1341), 2, anon_sym_unknown, anon_sym_nothing, - STATE(513), 2, + STATE(566), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(47), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39316,7 +42472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [18988] = 16, + [21039] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39325,31 +42481,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(555), 1, + STATE(383), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(514), 2, + STATE(567), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39358,7 +42514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19046] = 16, + [21097] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39367,31 +42523,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(716), 1, + STATE(777), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(515), 2, + STATE(568), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39400,7 +42556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19104] = 16, + [21155] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39409,31 +42565,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1221), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1229), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(226), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(231), 1, - sym_stringConstant, - STATE(247), 1, + STATE(380), 1, sym__type, - ACTIONS(1223), 2, + STATE(381), 1, + sym_stringConstant, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(516), 2, + STATE(569), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39442,7 +42598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19162] = 16, + [21213] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39451,31 +42607,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(721), 1, + STATE(780), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(517), 2, + STATE(570), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39484,7 +42640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19220] = 16, + [21271] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39493,31 +42649,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1299), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1301), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1309), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1311), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(244), 1, sym_qualifiedIdentifier, - STATE(359), 1, - sym__type, - STATE(372), 1, + STATE(262), 1, sym_stringConstant, - ACTIONS(1144), 2, + STATE(269), 1, + sym__type, + ACTIONS(1305), 2, anon_sym_unknown, anon_sym_nothing, - STATE(518), 2, + STATE(571), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(259), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39526,7 +42682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19278] = 16, + [21329] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39535,31 +42691,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(723), 1, + STATE(601), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(519), 2, + STATE(572), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39568,7 +42724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19336] = 16, + [21387] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39577,31 +42733,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(724), 1, + STATE(781), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(520), 2, + STATE(573), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39610,7 +42766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19394] = 16, + [21445] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39619,31 +42775,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1204), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1210), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1212), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1214), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(354), 1, sym_qualifiedIdentifier, - STATE(372), 1, + STATE(381), 1, sym_stringConstant, - STATE(718), 1, + STATE(770), 1, sym__type, - ACTIONS(1144), 2, + ACTIONS(1208), 2, anon_sym_unknown, anon_sym_nothing, - STATE(521), 2, + STATE(574), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(401), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39652,7 +42808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19452] = 11, + [21503] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39663,21 +42819,21 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(1377), 1, anon_sym_EQ, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(528), 1, + STATE(588), 1, aux_sym_classProperty_repeat1, - STATE(522), 2, + STATE(575), 2, sym_shebangComment, sym_lineComment, - ACTIONS(887), 4, + ACTIONS(927), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(889), 11, + ACTIONS(929), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39689,7 +42845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19500] = 16, + [21551] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39698,31 +42854,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1138), 1, + ACTIONS(1313), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1315), 1, anon_sym_module, - ACTIONS(1142), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1148), 1, + ACTIONS(1323), 1, anon_sym_DQUOTE, - ACTIONS(1150), 1, + ACTIONS(1325), 1, anon_sym_POUND_DQUOTE, - STATE(318), 1, + STATE(334), 1, sym_qualifiedIdentifier, - STATE(354), 1, - sym__type, - STATE(372), 1, + STATE(357), 1, sym_stringConstant, - ACTIONS(1144), 2, + STATE(358), 1, + sym__type, + ACTIONS(1319), 2, anon_sym_unknown, anon_sym_nothing, - STATE(523), 2, + STATE(576), 2, sym_shebangComment, sym_lineComment, - STATE(376), 8, + STATE(356), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -39731,7 +42887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_defaultUnionType, sym_functionLiteralType, - [19558] = 16, + [21609] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39740,40 +42896,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1219), 1, - anon_sym_module, - ACTIONS(1221), 1, + STATE(577), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1379), 6, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_AT, anon_sym_LPAREN, - ACTIONS(1225), 1, - anon_sym_STAR, - ACTIONS(1227), 1, - anon_sym_DQUOTE, - ACTIONS(1229), 1, - anon_sym_POUND_DQUOTE, - STATE(226), 1, - sym_qualifiedIdentifier, - STATE(231), 1, - sym_stringConstant, - STATE(244), 1, - sym__type, - ACTIONS(1223), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(524), 2, + aux_sym_docComment_token1, + ACTIONS(1381), 12, + anon_sym_extends, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [21648] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(578), 2, sym_shebangComment, sym_lineComment, - STATE(237), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_defaultUnionType, - sym_functionLiteralType, - [19616] = 10, + ACTIONS(357), 5, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_AT, + anon_sym_RPAREN, + aux_sym_docComment_token1, + ACTIONS(355), 13, + anon_sym_import, + anon_sym_as, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [21687] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(268), 1, + anon_sym_COLON, + STATE(630), 1, + sym_typeAnnotation, + STATE(579), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1383), 5, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1385), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [21730] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_classExtendsClause, + STATE(658), 1, + sym_classBody, + STATE(580), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1387), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1389), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [21777] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39784,19 +43032,19 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(229), 1, aux_sym_classProperty_repeat1, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(525), 2, + STATE(581), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1255), 4, + ACTIONS(919), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1257), 11, + ACTIONS(921), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39808,7 +43056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19661] = 7, + [21822] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39817,18 +43065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(526), 2, + STATE(582), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1283), 7, + ACTIONS(1391), 6, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_COLON, + anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1285), 11, + ACTIONS(1393), 12, + anon_sym_extends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39840,7 +43088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19700] = 11, + [21861] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39849,22 +43097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(572), 1, - sym_classExtendsClause, - STATE(597), 1, - sym_classBody, - STATE(527), 2, + STATE(583), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1287), 3, + ACTIONS(1395), 7, ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1289), 11, + ACTIONS(1397), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39876,7 +43120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19747] = 10, + [21900] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39885,21 +43129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(211), 1, - aux_sym_classProperty_repeat1, - STATE(212), 1, - sym_objectBody, - STATE(528), 2, + STATE(584), 2, sym_shebangComment, sym_lineComment, - ACTIONS(895), 4, + ACTIONS(1399), 4, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(897), 11, + ACTIONS(1401), 14, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39911,7 +43152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19792] = 9, + [21939] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39920,20 +43161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(268), 1, - anon_sym_COLON, - STATE(580), 1, - sym_typeAnnotation, - STATE(529), 2, + STATE(585), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1291), 5, + ACTIONS(1403), 6, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_AT, + anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1293), 11, + ACTIONS(1405), 12, + anon_sym_extends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39945,7 +43184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19835] = 9, + [21978] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39954,20 +43193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(268), 1, - anon_sym_COLON, - STATE(571), 1, - sym_typeAnnotation, - STATE(530), 2, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_classExtendsClause, + STATE(651), 1, + sym_classBody, + STATE(586), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1295), 5, + ACTIONS(1257), 3, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1297), 11, + ACTIONS(1259), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -39979,7 +43220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19878] = 7, + [22025] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39988,18 +43229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(531), 2, + STATE(587), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1299), 6, + ACTIONS(365), 5, ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_import_STAR, anon_sym_AT, - anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_docComment_token1, - ACTIONS(1301), 12, - anon_sym_extends, + ACTIONS(363), 13, + anon_sym_import, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40011,7 +43252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19917] = 7, + [22064] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40020,18 +43261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(532), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + STATE(229), 1, + aux_sym_classProperty_repeat1, + STATE(230), 1, + sym_objectBody, + STATE(588), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1303), 7, + ACTIONS(909), 4, ts_builtin_sym_end, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1305), 11, + ACTIONS(911), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40043,7 +43287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19956] = 7, + [22109] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40052,10 +43296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(533), 2, + STATE(589), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1307), 7, + ACTIONS(1407), 7, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_EQ, @@ -40063,7 +43307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1309), 11, + ACTIONS(1409), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40075,7 +43319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19995] = 7, + [22148] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40084,18 +43328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(534), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + STATE(229), 1, + aux_sym_classProperty_repeat1, + STATE(230), 1, + sym_objectBody, + STATE(590), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1311), 4, + ACTIONS(1349), 4, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1313), 14, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, + ACTIONS(1351), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40107,7 +43354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20034] = 10, + [22193] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40116,21 +43363,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, anon_sym_LBRACE, - STATE(211), 1, - aux_sym_classProperty_repeat1, - STATE(212), 1, - sym_objectBody, - STATE(535), 2, + STATE(632), 1, + sym_classExtendsClause, + STATE(657), 1, + sym_classBody, + STATE(591), 2, sym_shebangComment, sym_lineComment, - ACTIONS(887), 4, + ACTIONS(1261), 3, ts_builtin_sym_end, - anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(889), 11, + ACTIONS(1263), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40142,7 +43390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20079] = 7, + [22240] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40151,18 +43399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(536), 2, + ACTIONS(1241), 1, + anon_sym_extends, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(619), 1, + sym_classExtendsClause, + STATE(646), 1, + sym_classBody, + STATE(592), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1315), 6, + ACTIONS(1237), 3, ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_AT, - anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1317), 12, - anon_sym_extends, + ACTIONS(1239), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40174,7 +43426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20118] = 10, + [22287] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40185,19 +43437,19 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(262), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(229), 1, aux_sym_classProperty_repeat1, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(537), 2, + STATE(593), 2, sym_shebangComment, sym_lineComment, - ACTIONS(841), 4, + ACTIONS(927), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(843), 11, + ACTIONS(929), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40209,7 +43461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20163] = 9, + [22332] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40218,20 +43470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(268), 1, - anon_sym_COLON, - STATE(575), 1, - sym_typeAnnotation, - STATE(538), 2, + STATE(594), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1319), 5, + ACTIONS(1411), 7, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_EQ, anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1321), 11, + ACTIONS(1413), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40243,7 +43493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20206] = 11, + [22371] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40252,22 +43502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_classExtendsClause, - STATE(596), 1, - sym_classBody, - STATE(539), 2, + STATE(595), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1173), 3, + ACTIONS(1415), 4, ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1175), 11, + ACTIONS(1417), 14, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40279,7 +43525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20253] = 7, + [22410] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40288,18 +43534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(540), 2, + ACTIONS(268), 1, + anon_sym_COLON, + STATE(616), 1, + sym_typeAnnotation, + STATE(596), 2, sym_shebangComment, sym_lineComment, - ACTIONS(353), 5, + ACTIONS(1419), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, - anon_sym_RPAREN, aux_sym_docComment_token1, - ACTIONS(351), 13, - anon_sym_import, - anon_sym_as, + ACTIONS(1421), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40311,7 +43559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20292] = 11, + [22453] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40320,22 +43568,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, + ACTIONS(262), 1, anon_sym_LBRACE, - STATE(574), 1, - sym_classExtendsClause, - STATE(591), 1, - sym_classBody, - STATE(541), 2, + STATE(229), 1, + aux_sym_classProperty_repeat1, + STATE(230), 1, + sym_objectBody, + STATE(597), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1185), 3, + ACTIONS(943), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1187), 11, + ACTIONS(945), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40347,7 +43594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20339] = 7, + [22498] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40356,18 +43603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(542), 2, + ACTIONS(268), 1, + anon_sym_COLON, + STATE(633), 1, + sym_typeAnnotation, + STATE(598), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1323), 4, + ACTIONS(1423), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1325), 14, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, + ACTIONS(1425), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40379,7 +43628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20378] = 11, + [22541] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40388,22 +43637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1177), 1, - anon_sym_extends, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(570), 1, - sym_classExtendsClause, - STATE(593), 1, - sym_classBody, - STATE(543), 2, + STATE(599), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1189), 3, + ACTIONS(1427), 7, ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1191), 11, + ACTIONS(1429), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40415,7 +43660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20425] = 10, + [22580] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40424,21 +43669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(211), 1, - aux_sym_classProperty_repeat1, - STATE(212), 1, - sym_objectBody, - STATE(544), 2, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(600), 2, sym_shebangComment, sym_lineComment, - ACTIONS(879), 4, + ACTIONS(1431), 3, ts_builtin_sym_end, - anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(881), 11, + ACTIONS(1433), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40450,7 +43694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20470] = 7, + [22624] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40459,18 +43703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(545), 2, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(601), 2, sym_shebangComment, sym_lineComment, - ACTIONS(349), 5, + ACTIONS(1435), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, - anon_sym_RPAREN, aux_sym_docComment_token1, - ACTIONS(347), 13, - anon_sym_import, - anon_sym_as, + ACTIONS(1437), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40482,7 +43728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20509] = 10, + [22668] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40491,20 +43737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(546), 2, + ACTIONS(1443), 1, + anon_sym_as, + STATE(602), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1327), 3, + ACTIONS(1439), 4, ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1329), 11, + ACTIONS(1441), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40516,7 +43760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20553] = 16, + [22708] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40525,30 +43769,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, + ACTIONS(1449), 1, + anon_sym_as, + STATE(603), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1445), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, - ACTIONS(1132), 1, - sym_identifier, - ACTIONS(1134), 1, + aux_sym_docComment_token1, + ACTIONS(1447), 12, + anon_sym_import, anon_sym_class, - ACTIONS(1136), 1, anon_sym_typealias, - STATE(550), 1, - aux_sym_moduleHeader_repeat1, - STATE(581), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(606), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - STATE(547), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, + anon_sym_function, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40556,7 +43791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [20609] = 8, + sym_identifier, + [22748] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40565,15 +43801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1333), 1, + ACTIONS(1453), 1, anon_sym_AT, - ACTIONS(1335), 1, - aux_sym_docComment_token1, - STATE(548), 3, + STATE(636), 1, + sym_annotation, + STATE(604), 3, sym_shebangComment, sym_lineComment, - aux_sym_docComment_repeat1, - ACTIONS(1331), 14, + aux_sym_moduleHeader_repeat1, + ACTIONS(1451), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -40588,7 +43824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20649] = 10, + [22788] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40597,20 +43833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(549), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(1458), 1, + anon_sym_AT, + STATE(644), 1, + sym_objectBody, + STATE(605), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1338), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1340), 11, + ACTIONS(1456), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40622,7 +43857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20693] = 16, + [22830] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40631,30 +43866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(606), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1460), 3, + ts_builtin_sym_end, anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1128), 1, + aux_sym_docComment_token1, + ACTIONS(1462), 11, anon_sym_class, - ACTIONS(1130), 1, anon_sym_typealias, - STATE(558), 1, - aux_sym_moduleHeader_repeat1, - STATE(567), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(604), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - STATE(550), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, + anon_sym_function, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40662,7 +43890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [20749] = 8, + sym_identifier, + [22874] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40671,18 +43900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1346), 1, - anon_sym_as, - STATE(551), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1342), 4, - ts_builtin_sym_end, - anon_sym_import_STAR, + ACTIONS(1466), 1, anon_sym_AT, + ACTIONS(1468), 1, aux_sym_docComment_token1, - ACTIONS(1344), 12, - anon_sym_import, + STATE(611), 1, + aux_sym_docComment_repeat1, + STATE(607), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1464), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40694,7 +43924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20789] = 8, + [22916] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40703,18 +43933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1352), 1, - anon_sym_as, - STATE(552), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1348), 4, - ts_builtin_sym_end, - anon_sym_import_STAR, + ACTIONS(1472), 1, anon_sym_AT, + ACTIONS(1474), 1, aux_sym_docComment_token1, - ACTIONS(1350), 12, - anon_sym_import, + STATE(608), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_docComment_repeat1, + ACTIONS(1470), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40726,7 +43956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20829] = 9, + [22956] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40735,22 +43965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1358), 1, - anon_sym_LT, - STATE(588), 1, - sym_typeArgumentList, - STATE(553), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1354), 4, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1356), 11, + ACTIONS(1186), 1, + sym_identifier, + ACTIONS(1188), 1, anon_sym_class, + ACTIONS(1190), 1, anon_sym_typealias, - anon_sym_function, + STATE(610), 1, + aux_sym_moduleHeader_repeat1, + STATE(620), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(659), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + STATE(609), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40758,8 +43996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [20871] = 16, + [23012] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40772,23 +44009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1132), 1, + ACTIONS(1192), 1, sym_identifier, - ACTIONS(1134), 1, + ACTIONS(1194), 1, anon_sym_class, - ACTIONS(1136), 1, + ACTIONS(1196), 1, anon_sym_typealias, - STATE(558), 1, + STATE(604), 1, aux_sym_moduleHeader_repeat1, - STATE(581), 1, + STATE(625), 1, sym_methodHeader, - STATE(586), 1, + STATE(636), 1, sym_annotation, - STATE(606), 1, + STATE(661), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(554), 2, + STATE(610), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -40799,7 +44036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [20927] = 10, + [23068] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40808,20 +44045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(555), 2, + ACTIONS(1468), 1, + aux_sym_docComment_token1, + ACTIONS(1479), 1, + anon_sym_AT, + STATE(608), 1, + aux_sym_docComment_repeat1, + STATE(611), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1360), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1362), 11, + ACTIONS(1477), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40833,7 +44069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20971] = 9, + [23110] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40842,22 +44078,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1366), 1, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1368), 1, - aux_sym_docComment_token1, - STATE(548), 1, - aux_sym_docComment_repeat1, - STATE(556), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1364), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1186), 1, + sym_identifier, + ACTIONS(1188), 1, anon_sym_class, + ACTIONS(1190), 1, anon_sym_typealias, - anon_sym_function, + STATE(604), 1, + aux_sym_moduleHeader_repeat1, + STATE(620), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(659), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + STATE(612), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40865,8 +44109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [21013] = 10, + [23166] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40875,20 +44118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(557), 2, + ACTIONS(1485), 1, + anon_sym_LT, + STATE(638), 1, + sym_typeArgumentList, + STATE(613), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1370), 3, + ACTIONS(1481), 4, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1372), 11, + ACTIONS(1483), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40900,7 +44142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21057] = 8, + [23208] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40909,18 +44151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1376), 1, - anon_sym_AT, - STATE(586), 1, - sym_annotation, - STATE(558), 3, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(614), 2, sym_shebangComment, sym_lineComment, - aux_sym_moduleHeader_repeat1, - ACTIONS(1374), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1487), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1489), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40932,7 +44176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21097] = 10, + [23252] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40941,20 +44185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(1043), 1, anon_sym_QMARK, - ACTIONS(989), 1, + ACTIONS(1045), 1, anon_sym_PIPE, - STATE(559), 2, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(615), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1379), 3, + ACTIONS(1491), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1381), 11, + ACTIONS(1493), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40966,7 +44210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21141] = 9, + [23296] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40975,19 +44219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(1385), 1, - anon_sym_AT, - STATE(587), 1, - sym_objectBody, - STATE(560), 2, + STATE(616), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1383), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1383), 5, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1385), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40999,7 +44240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21183] = 9, + [23333] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41008,19 +44249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1368), 1, - aux_sym_docComment_token1, - ACTIONS(1389), 1, - anon_sym_AT, - STATE(556), 1, - aux_sym_docComment_repeat1, - STATE(561), 2, + STATE(617), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1387), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1495), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1497), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41032,7 +44270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21225] = 7, + [23370] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41041,15 +44279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(562), 2, + STATE(618), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1271), 4, + ACTIONS(1499), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1273), 12, + ACTIONS(1501), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -41062,7 +44300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21262] = 7, + [23407] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41071,16 +44309,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(563), 2, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_classBody, + STATE(619), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1391), 4, + ACTIONS(1257), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1393), 12, - anon_sym_import, + ACTIONS(1259), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41092,7 +44332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21299] = 9, + [23448] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41101,18 +44341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_classBody, - STATE(564), 2, + ACTIONS(1507), 1, + anon_sym_EQ, + STATE(620), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1189), 3, + ACTIONS(1503), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1191), 11, + ACTIONS(1505), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41124,7 +44363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21340] = 7, + [23487] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41133,15 +44372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(565), 2, + STATE(621), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1277), 4, + ACTIONS(1331), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1279), 12, + ACTIONS(1333), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -41154,7 +44393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21377] = 7, + [23524] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41163,15 +44402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(566), 2, + STATE(622), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1395), 4, + ACTIONS(1373), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1397), 12, + ACTIONS(1375), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -41184,7 +44423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21414] = 8, + [23561] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41193,17 +44432,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1399), 1, - anon_sym_EQ, - STATE(567), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(875), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, + ACTIONS(1511), 2, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(877), 11, + STATE(623), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1509), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41215,7 +44453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21453] = 7, + [23598] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41224,16 +44462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(568), 2, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_classBody, + STATE(624), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1401), 4, + ACTIONS(1513), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1403), 12, - anon_sym_import, + ACTIONS(1515), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41245,7 +44485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21490] = 9, + [23639] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41254,18 +44494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(591), 1, - sym_classBody, - STATE(569), 2, + ACTIONS(1517), 1, + anon_sym_EQ, + STATE(625), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1185), 3, + ACTIONS(939), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1187), 11, + ACTIONS(941), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41277,7 +44516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21531] = 9, + [23678] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41286,18 +44525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(596), 1, - sym_classBody, - STATE(570), 2, + ACTIONS(1523), 1, + anon_sym_EQ, + STATE(626), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1173), 3, + ACTIONS(1519), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1175), 11, + ACTIONS(1521), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41309,7 +44547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21572] = 7, + [23717] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41318,16 +44556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(571), 2, + STATE(627), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1291), 5, + ACTIONS(1369), 4, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1293), 11, + ACTIONS(1371), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41339,7 +44577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21609] = 9, + [23754] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41348,18 +44586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(600), 1, - sym_classBody, - STATE(572), 2, + STATE(628), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1405), 3, + ACTIONS(1525), 4, ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1407), 11, + ACTIONS(1527), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41371,7 +44607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21650] = 7, + [23791] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41380,15 +44616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(573), 2, + STATE(629), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1231), 4, + ACTIONS(1529), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1233), 12, + ACTIONS(1531), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -41401,7 +44637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21687] = 9, + [23828] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41410,18 +44646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(597), 1, - sym_classBody, - STATE(574), 2, + STATE(630), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1287), 3, + ACTIONS(1533), 5, ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1289), 11, + ACTIONS(1535), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41433,7 +44667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21728] = 7, + [23865] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41442,16 +44676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(575), 2, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_classBody, + STATE(631), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1409), 5, + ACTIONS(1387), 3, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1411), 11, + ACTIONS(1389), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41463,7 +44699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21765] = 7, + [23906] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41472,16 +44708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1415), 2, - anon_sym_AT, - aux_sym_docComment_token1, - STATE(576), 2, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(646), 1, + sym_classBody, + STATE(632), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1413), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1237), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1239), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41493,7 +44731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21802] = 7, + [23947] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41502,16 +44740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(577), 2, + STATE(633), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1417), 4, + ACTIONS(1419), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1419), 12, - anon_sym_import, + ACTIONS(1421), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41523,7 +44761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21839] = 7, + [23984] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41532,15 +44770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(578), 2, + STATE(634), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1421), 4, + ACTIONS(1537), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1423), 12, + ACTIONS(1539), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -41553,7 +44791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21876] = 8, + [24021] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41562,17 +44800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1429), 1, - anon_sym_EQ, - STATE(579), 2, + ACTIONS(1243), 1, + anon_sym_LBRACE, + STATE(657), 1, + sym_classBody, + STATE(635), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1425), 4, + ACTIONS(1261), 3, ts_builtin_sym_end, - anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1427), 11, + ACTIONS(1263), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41584,7 +44823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21915] = 7, + [24062] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41593,16 +44832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(580), 2, + ACTIONS(1543), 1, + anon_sym_AT, + STATE(636), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1319), 5, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1321), 11, + ACTIONS(1541), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41614,7 +44852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21952] = 8, + [24098] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41623,17 +44861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1435), 1, - anon_sym_EQ, - STATE(581), 2, + STATE(637), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1431), 4, + ACTIONS(377), 4, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1433), 11, + ACTIONS(375), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41645,7 +44881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21991] = 7, + [24134] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41654,15 +44890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(582), 2, + STATE(638), 2, sym_shebangComment, sym_lineComment, - ACTIONS(361), 4, + ACTIONS(1545), 4, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(359), 11, + ACTIONS(1547), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41674,7 +44910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22027] = 14, + [24170] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41683,62 +44919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(1132), 1, - sym_identifier, - STATE(581), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(589), 1, - aux_sym_moduleHeader_repeat1, - STATE(608), 1, - sym_modifier, - STATE(611), 1, - aux_sym_moduleClause_repeat1, - STATE(583), 2, + STATE(639), 2, sym_shebangComment, sym_lineComment, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [22077] = 14, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, + ACTIONS(373), 4, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, - ACTIONS(1132), 1, - sym_identifier, - STATE(558), 1, - aux_sym_moduleHeader_repeat1, - STATE(581), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(608), 1, - sym_modifier, - STATE(611), 1, - aux_sym_moduleClause_repeat1, - STATE(584), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, + aux_sym_docComment_token1, + ACTIONS(371), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -41746,7 +44938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22127] = 7, + sym_identifier, + [24206] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41755,15 +44948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(585), 2, + STATE(640), 2, sym_shebangComment, sym_lineComment, - ACTIONS(357), 4, + ACTIONS(369), 4, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(355), 11, + ACTIONS(367), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41775,7 +44968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22163] = 7, + [24242] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41784,18 +44977,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1439), 1, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, - STATE(586), 2, + ACTIONS(1186), 1, + sym_identifier, + STATE(604), 1, + aux_sym_moduleHeader_repeat1, + STATE(620), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(662), 1, + sym_modifier, + STATE(668), 1, + aux_sym_moduleClause_repeat1, + STATE(641), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1437), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -41803,8 +45004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [22199] = 7, + [24292] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41813,18 +45013,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1443), 1, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, - STATE(587), 2, + ACTIONS(1186), 1, + sym_identifier, + STATE(620), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(643), 1, + aux_sym_moduleHeader_repeat1, + STATE(662), 1, + sym_modifier, + STATE(668), 1, + aux_sym_moduleClause_repeat1, + STATE(642), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1441), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -41832,8 +45040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [22235] = 7, + [24342] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41842,18 +45049,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(588), 2, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(1192), 1, + sym_identifier, + STATE(604), 1, + aux_sym_moduleHeader_repeat1, + STATE(625), 1, + sym_methodHeader, + STATE(636), 1, + sym_annotation, + STATE(662), 1, + sym_modifier, + STATE(665), 1, + aux_sym_moduleClause_repeat1, + STATE(643), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1445), 4, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1447), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -41861,8 +45076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [22271] = 14, + [24392] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41871,26 +45085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, + ACTIONS(1551), 1, anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - STATE(558), 1, - aux_sym_moduleHeader_repeat1, - STATE(567), 1, - sym_methodHeader, - STATE(586), 1, - sym_annotation, - STATE(608), 1, - sym_modifier, - STATE(610), 1, - aux_sym_moduleClause_repeat1, - STATE(589), 2, + STATE(644), 2, sym_shebangComment, sym_lineComment, - ACTIONS(33), 7, + ACTIONS(1549), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -41898,7 +45104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22321] = 13, + sym_identifier, + [24428] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41907,24 +45114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1128), 1, + STATE(645), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1553), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1555), 11, anon_sym_class, - ACTIONS(1130), 1, anon_sym_typealias, - ACTIONS(1449), 1, - anon_sym_module, - ACTIONS(1451), 1, anon_sym_function, - STATE(603), 1, - aux_sym_moduleClause_repeat1, - STATE(608), 1, - sym_modifier, - STATE(590), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -41932,7 +45132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22368] = 7, + sym_identifier, + [24463] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41941,14 +45142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(591), 2, + STATE(646), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1287), 3, + ACTIONS(1257), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1289), 11, + ACTIONS(1259), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41960,7 +45161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22403] = 7, + [24498] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41969,14 +45170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(592), 2, + STATE(647), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1453), 3, + ACTIONS(1261), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1455), 11, + ACTIONS(1263), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41988,7 +45189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22438] = 7, + [24533] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41997,14 +45198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(593), 2, + STATE(648), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1173), 3, + ACTIONS(1557), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1175), 11, + ACTIONS(1559), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42016,7 +45217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22473] = 13, + [24568] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42025,21 +45226,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1449), 1, - anon_sym_module, - ACTIONS(1451), 1, - anon_sym_function, - ACTIONS(1457), 1, + ACTIONS(1186), 1, sym_identifier, - ACTIONS(1459), 1, + ACTIONS(1188), 1, anon_sym_class, - ACTIONS(1461), 1, + ACTIONS(1190), 1, anon_sym_typealias, - STATE(603), 1, + ACTIONS(1561), 1, + anon_sym_module, + ACTIONS(1563), 1, + anon_sym_function, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(594), 2, + STATE(649), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42050,7 +45251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22520] = 13, + [24615] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42059,21 +45260,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1132), 1, + ACTIONS(1561), 1, + anon_sym_module, + ACTIONS(1563), 1, + anon_sym_function, + ACTIONS(1565), 1, sym_identifier, - ACTIONS(1134), 1, + ACTIONS(1567), 1, anon_sym_class, - ACTIONS(1136), 1, + ACTIONS(1569), 1, anon_sym_typealias, - ACTIONS(1449), 1, - anon_sym_module, - ACTIONS(1451), 1, - anon_sym_function, - STATE(603), 1, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(595), 2, + STATE(650), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42084,7 +45285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22567] = 7, + [24662] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42093,14 +45294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(596), 2, + STATE(651), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1185), 3, + ACTIONS(1387), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1187), 11, + ACTIONS(1389), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42112,7 +45313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22602] = 7, + [24697] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42121,17 +45322,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(597), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1405), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1407), 11, + ACTIONS(1192), 1, + sym_identifier, + ACTIONS(1194), 1, anon_sym_class, + ACTIONS(1196), 1, anon_sym_typealias, + ACTIONS(1561), 1, + anon_sym_module, + ACTIONS(1563), 1, anon_sym_function, + STATE(655), 1, + aux_sym_moduleClause_repeat1, + STATE(662), 1, + sym_modifier, + STATE(652), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -42139,8 +45347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [22637] = 7, + [24744] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42149,14 +45356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(598), 2, + STATE(653), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1463), 3, + ACTIONS(1571), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1465), 11, + ACTIONS(1573), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42168,7 +45375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22672] = 7, + [24779] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42177,14 +45384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(599), 2, + STATE(654), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1189), 3, + ACTIONS(1575), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1191), 11, + ACTIONS(1577), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42196,7 +45403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22707] = 7, + [24814] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42205,17 +45412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(600), 2, + STATE(662), 1, + sym_modifier, + STATE(655), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1467), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1469), 11, + aux_sym_moduleClause_repeat1, + ACTIONS(1579), 5, + anon_sym_module, anon_sym_class, anon_sym_typealias, anon_sym_function, + sym_identifier, + ACTIONS(1581), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -42223,8 +45432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [22742] = 7, + [24851] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42233,14 +45441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(601), 2, + STATE(656), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1471), 3, + ACTIONS(1584), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1473), 11, + ACTIONS(1586), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42252,7 +45460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22777] = 7, + [24886] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42261,14 +45469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(602), 2, + STATE(657), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1475), 3, + ACTIONS(1237), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1477), 11, + ACTIONS(1239), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42280,7 +45488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22812] = 8, + [24921] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42289,19 +45497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(608), 1, - sym_modifier, - STATE(603), 3, + STATE(658), 2, sym_shebangComment, sym_lineComment, - aux_sym_moduleClause_repeat1, - ACTIONS(1479), 5, - anon_sym_module, + ACTIONS(1513), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1515), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - sym_identifier, - ACTIONS(1481), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -42309,7 +45515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22849] = 12, + sym_identifier, + [24956] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42318,19 +45525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1451), 1, - anon_sym_function, - ACTIONS(1457), 1, + ACTIONS(1192), 1, sym_identifier, - ACTIONS(1459), 1, + ACTIONS(1194), 1, anon_sym_class, - ACTIONS(1461), 1, + ACTIONS(1196), 1, anon_sym_typealias, - STATE(603), 1, + ACTIONS(1563), 1, + anon_sym_function, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(604), 2, + STATE(659), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42341,7 +45548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22893] = 12, + [25000] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42350,19 +45557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1132), 1, + ACTIONS(1186), 1, sym_identifier, - ACTIONS(1134), 1, + ACTIONS(1188), 1, anon_sym_class, - ACTIONS(1136), 1, + ACTIONS(1190), 1, anon_sym_typealias, - ACTIONS(1451), 1, + ACTIONS(1563), 1, anon_sym_function, - STATE(603), 1, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(605), 2, + STATE(660), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42373,7 +45580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22937] = 12, + [25044] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42382,19 +45589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1126), 1, + ACTIONS(1563), 1, + anon_sym_function, + ACTIONS(1565), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1567), 1, anon_sym_class, - ACTIONS(1130), 1, + ACTIONS(1569), 1, anon_sym_typealias, - ACTIONS(1451), 1, - anon_sym_function, - STATE(603), 1, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(606), 2, + STATE(661), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42405,7 +45612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [22981] = 6, + [25088] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42414,10 +45621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(607), 2, + STATE(662), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1484), 12, + ACTIONS(1588), 12, anon_sym_module, anon_sym_class, anon_sym_typealias, @@ -42430,7 +45637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23012] = 6, + [25119] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42439,13 +45646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(608), 2, + STATE(663), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1486), 12, - anon_sym_module, - anon_sym_class, - anon_sym_typealias, + ACTIONS(1592), 3, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1590), 9, anon_sym_function, anon_sym_external, anon_sym_abstract, @@ -42455,7 +45663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23043] = 7, + [25152] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42464,14 +45672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(609), 2, + STATE(664), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1490), 3, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1488), 9, + ACTIONS(1594), 12, + anon_sym_module, + anon_sym_class, + anon_sym_typealias, anon_sym_function, anon_sym_external, anon_sym_abstract, @@ -42481,7 +45688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23076] = 10, + [25183] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42490,15 +45697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1451), 1, + ACTIONS(1563), 1, anon_sym_function, - ACTIONS(1457), 1, + ACTIONS(1565), 1, sym_identifier, - STATE(603), 1, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(610), 2, + STATE(665), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42509,7 +45716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [23114] = 10, + [25221] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42518,15 +45725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1451), 1, + ACTIONS(1563), 1, anon_sym_function, - STATE(603), 1, + ACTIONS(1596), 1, + sym_identifier, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(611), 2, + STATE(666), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42537,7 +45744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [23152] = 10, + [25259] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42546,15 +45753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1451), 1, - anon_sym_function, - ACTIONS(1492), 1, + ACTIONS(1186), 1, sym_identifier, - STATE(603), 1, + ACTIONS(1563), 1, + anon_sym_function, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(612), 2, + STATE(667), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42565,7 +45772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [23190] = 10, + [25297] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42574,15 +45781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1132), 1, + ACTIONS(1192), 1, sym_identifier, - ACTIONS(1451), 1, + ACTIONS(1563), 1, anon_sym_function, - STATE(603), 1, + STATE(655), 1, aux_sym_moduleClause_repeat1, - STATE(608), 1, + STATE(662), 1, sym_modifier, - STATE(613), 2, + STATE(668), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -42593,7 +45800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [23228] = 10, + [25335] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42602,22 +45809,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1494), 1, - anon_sym_DQUOTE_POUND_POUND_POUND, - ACTIONS(1496), 1, + ACTIONS(1598), 1, + anon_sym_DQUOTE, + ACTIONS(1600), 1, + sym_escapeSequence, + ACTIONS(1602), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1604), 1, + sym__sl_string_chars, + STATE(732), 1, + aux_sym_slStringLiteralExpr_repeat1, + STATE(669), 2, + sym_shebangComment, + sym_lineComment, + STATE(861), 2, + sym_slStringLiteralPart, + sym_stringInterpolation, + [25371] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + ACTIONS(1608), 1, + sym_escapeSequence1, + ACTIONS(1610), 1, + anon_sym_BSLASH_POUND_LPAREN, + ACTIONS(1612), 1, + sym__ml1_string_chars, + STATE(686), 1, + aux_sym_mlStringLiteralExpr_repeat2, + STATE(670), 2, + sym_shebangComment, + sym_lineComment, + STATE(860), 2, + sym_mlStringLiteralPart1, + sym_stringInterpolation1, + [25407] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + ACTIONS(1614), 1, + sym_escapeSequence2, + ACTIONS(1616), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1618), 1, + sym__ml2_string_chars, + STATE(687), 1, + aux_sym_mlStringLiteralExpr_repeat3, + STATE(671), 2, + sym_shebangComment, + sym_lineComment, + STATE(863), 2, + sym_mlStringLiteralPart2, + sym_stringInterpolation2, + [25443] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + ACTIONS(1620), 1, sym_escapeSequence3, - ACTIONS(1499), 1, + ACTIONS(1622), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1502), 1, - sym__sl3_string_chars, - STATE(776), 2, - sym_slStringLiteralPart3, + ACTIONS(1624), 1, + sym__ml3_string_chars, + STATE(688), 1, + aux_sym_mlStringLiteralExpr_repeat4, + STATE(672), 2, + sym_shebangComment, + sym_lineComment, + STATE(866), 2, + sym_mlStringLiteralPart3, sym_stringInterpolation3, - STATE(614), 3, + [25479] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + ACTIONS(1626), 1, + sym_escapeSequence4, + ACTIONS(1628), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1630), 1, + sym__ml4_string_chars, + STATE(689), 1, + aux_sym_mlStringLiteralExpr_repeat5, + STATE(673), 2, sym_shebangComment, sym_lineComment, - aux_sym_slStringLiteralExpr_repeat4, - [23262] = 10, + STATE(869), 2, + sym_mlStringLiteralPart4, + sym_stringInterpolation4, + [25515] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42626,22 +45934,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1505), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1507), 1, - sym_escapeSequence6, - ACTIONS(1510), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1513), 1, - sym__ml6_string_chars, - STATE(779), 2, - sym_mlStringLiteralPart6, - sym_stringInterpolation6, - STATE(615), 3, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + ACTIONS(1632), 1, + sym_escapeSequence5, + ACTIONS(1634), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1636), 1, + sym__ml5_string_chars, + STATE(690), 1, + aux_sym_mlStringLiteralExpr_repeat6, + STATE(674), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat7, - [23296] = 10, + STATE(827), 2, + sym_mlStringLiteralPart5, + sym_stringInterpolation5, + [25551] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42650,22 +45959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1516), 1, - anon_sym_DQUOTE, - ACTIONS(1518), 1, - sym_escapeSequence, - ACTIONS(1521), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(1524), 1, - sym__sl_string_chars, - STATE(768), 2, - sym_slStringLiteralPart, - sym_stringInterpolation, - STATE(616), 3, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + ACTIONS(1638), 1, + sym_escapeSequence6, + ACTIONS(1640), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1642), 1, + sym__ml6_string_chars, + STATE(691), 1, + aux_sym_mlStringLiteralExpr_repeat7, + STATE(675), 2, sym_shebangComment, sym_lineComment, - aux_sym_slStringLiteralExpr_repeat1, - [23330] = 8, + STATE(831), 2, + sym_mlStringLiteralPart6, + sym_stringInterpolation6, + [25587] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42674,20 +45984,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(268), 1, - anon_sym_COLON, - STATE(729), 1, - sym_typeAnnotation, - STATE(617), 2, + ACTIONS(1614), 1, + sym_escapeSequence2, + ACTIONS(1616), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1618), 1, + sym__ml2_string_chars, + ACTIONS(1644), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + STATE(694), 1, + aux_sym_mlStringLiteralExpr_repeat3, + STATE(676), 2, sym_shebangComment, sym_lineComment, - ACTIONS(266), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [23360] = 10, + STATE(863), 2, + sym_mlStringLiteralPart2, + sym_stringInterpolation2, + [25623] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42696,22 +46009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1527), 1, - anon_sym_DQUOTE_POUND, - ACTIONS(1529), 1, - sym_escapeSequence1, - ACTIONS(1532), 1, - anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1535), 1, - sym__sl1_string_chars, - STATE(770), 2, - sym_slStringLiteralPart1, - sym_stringInterpolation1, - STATE(618), 3, + ACTIONS(1638), 1, + sym_escapeSequence6, + ACTIONS(1640), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1642), 1, + sym__ml6_string_chars, + ACTIONS(1646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + STATE(735), 1, + aux_sym_mlStringLiteralExpr_repeat7, + STATE(677), 2, sym_shebangComment, sym_lineComment, - aux_sym_slStringLiteralExpr_repeat2, - [23394] = 10, + STATE(831), 2, + sym_mlStringLiteralPart6, + sym_stringInterpolation6, + [25659] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42720,22 +46034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1538), 1, - anon_sym_DQUOTE_POUND_POUND, - ACTIONS(1540), 1, - sym_escapeSequence2, - ACTIONS(1543), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1546), 1, - sym__sl2_string_chars, - STATE(773), 2, - sym_slStringLiteralPart2, - sym_stringInterpolation2, - STATE(619), 3, + ACTIONS(1600), 1, + sym_escapeSequence, + ACTIONS(1602), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1648), 1, + anon_sym_DQUOTE, + STATE(732), 1, + aux_sym_slStringLiteralExpr_repeat1, + STATE(678), 2, sym_shebangComment, sym_lineComment, - aux_sym_slStringLiteralExpr_repeat3, - [23428] = 11, + STATE(861), 2, + sym_slStringLiteralPart, + sym_stringInterpolation, + [25695] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42744,23 +46059,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1551), 1, + ACTIONS(1650), 1, sym_escapeSequence1, - ACTIONS(1553), 1, + ACTIONS(1652), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - STATE(618), 1, + STATE(741), 1, aux_sym_slStringLiteralExpr_repeat2, - STATE(620), 2, + STATE(679), 2, sym_shebangComment, sym_lineComment, - STATE(770), 2, + STATE(833), 2, sym_slStringLiteralPart1, sym_stringInterpolation1, - [23464] = 11, + [25731] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42769,23 +46084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE_POUND_POUND, - ACTIONS(1557), 1, + ACTIONS(1656), 1, sym_escapeSequence2, - ACTIONS(1559), 1, + ACTIONS(1658), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1660), 1, sym__sl2_string_chars, - STATE(619), 1, + STATE(745), 1, aux_sym_slStringLiteralExpr_repeat3, - STATE(621), 2, + STATE(680), 2, sym_shebangComment, sym_lineComment, - STATE(773), 2, + STATE(856), 2, sym_slStringLiteralPart2, sym_stringInterpolation2, - [23500] = 11, + [25767] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42794,23 +46109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - ACTIONS(1563), 1, + ACTIONS(1662), 1, sym_escapeSequence3, - ACTIONS(1565), 1, + ACTIONS(1664), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1666), 1, sym__sl3_string_chars, - STATE(614), 1, + STATE(750), 1, aux_sym_slStringLiteralExpr_repeat4, - STATE(622), 2, + STATE(681), 2, sym_shebangComment, sym_lineComment, - STATE(776), 2, + STATE(867), 2, sym_slStringLiteralPart3, sym_stringInterpolation3, - [23536] = 11, + [25803] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42819,23 +46134,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1569), 1, + ACTIONS(1668), 1, sym_escapeSequence4, - ACTIONS(1571), 1, + ACTIONS(1670), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1573), 1, + ACTIONS(1672), 1, sym__sl4_string_chars, - STATE(628), 1, + STATE(761), 1, aux_sym_slStringLiteralExpr_repeat5, - STATE(623), 2, + STATE(682), 2, sym_shebangComment, sym_lineComment, - STATE(790), 2, + STATE(832), 2, sym_slStringLiteralPart4, sym_stringInterpolation4, - [23572] = 11, + [25839] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42844,23 +46159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1575), 1, + ACTIONS(1674), 1, sym_escapeSequence5, - ACTIONS(1577), 1, + ACTIONS(1676), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1678), 1, sym__sl5_string_chars, - STATE(662), 1, + STATE(717), 1, aux_sym_slStringLiteralExpr_repeat6, - STATE(624), 2, + STATE(683), 2, sym_shebangComment, sym_lineComment, - STATE(792), 2, + STATE(838), 2, sym_slStringLiteralPart5, sym_stringInterpolation5, - [23608] = 11, + [25875] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42869,23 +46184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1581), 1, + ACTIONS(1680), 1, sym_escapeSequence6, - ACTIONS(1583), 1, + ACTIONS(1682), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1585), 1, + ACTIONS(1684), 1, sym__sl6_string_chars, - STATE(663), 1, + STATE(737), 1, aux_sym_slStringLiteralExpr_repeat7, - STATE(625), 2, + STATE(684), 2, sym_shebangComment, sym_lineComment, - STATE(794), 2, + STATE(853), 2, sym_slStringLiteralPart6, sym_stringInterpolation6, - [23644] = 11, + [25911] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42894,23 +46209,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1587), 1, + ACTIONS(1686), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1589), 1, + ACTIONS(1688), 1, sym_escapeSequence, - ACTIONS(1591), 1, + ACTIONS(1690), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1593), 1, + ACTIONS(1692), 1, sym__ml_string_chars, - STATE(706), 1, + STATE(692), 1, aux_sym_mlStringLiteralExpr_repeat1, - STATE(626), 2, + STATE(685), 2, sym_shebangComment, sym_lineComment, - STATE(802), 2, + STATE(857), 2, sym_mlStringLiteralPart, sym_stringInterpolation, - [23680] = 11, + [25947] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42919,23 +46234,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1587), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - ACTIONS(1595), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1597), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - STATE(707), 1, + ACTIONS(1686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + STATE(693), 1, aux_sym_mlStringLiteralExpr_repeat2, - STATE(627), 2, + STATE(686), 2, sym_shebangComment, sym_lineComment, - STATE(757), 2, + STATE(860), 2, sym_mlStringLiteralPart1, sym_stringInterpolation1, - [23716] = 10, + [25983] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42944,47 +46259,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1601), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1603), 1, - sym_escapeSequence4, - ACTIONS(1606), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1609), 1, - sym__sl4_string_chars, - STATE(790), 2, - sym_slStringLiteralPart4, - sym_stringInterpolation4, - STATE(628), 3, - sym_shebangComment, - sym_lineComment, - aux_sym_slStringLiteralExpr_repeat5, - [23750] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1587), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - ACTIONS(1612), 1, - sym_escapeSequence2, ACTIONS(1614), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, + sym_escapeSequence2, ACTIONS(1616), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1618), 1, sym__ml2_string_chars, - STATE(708), 1, + ACTIONS(1686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + STATE(694), 1, aux_sym_mlStringLiteralExpr_repeat3, - STATE(629), 2, + STATE(687), 2, sym_shebangComment, sym_lineComment, - STATE(759), 2, + STATE(863), 2, sym_mlStringLiteralPart2, sym_stringInterpolation2, - [23786] = 11, + [26019] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42993,23 +46284,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1587), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - ACTIONS(1618), 1, - sym_escapeSequence3, ACTIONS(1620), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + sym_escapeSequence3, ACTIONS(1622), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1624), 1, sym__ml3_string_chars, - STATE(709), 1, + ACTIONS(1686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + STATE(695), 1, aux_sym_mlStringLiteralExpr_repeat4, - STATE(630), 2, + STATE(688), 2, sym_shebangComment, sym_lineComment, - STATE(762), 2, + STATE(866), 2, sym_mlStringLiteralPart3, sym_stringInterpolation3, - [23822] = 11, + [26055] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43018,23 +46309,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1587), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1624), 1, - sym_escapeSequence4, ACTIONS(1626), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + sym_escapeSequence4, ACTIONS(1628), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1630), 1, sym__ml4_string_chars, - STATE(710), 1, + ACTIONS(1686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + STATE(697), 1, aux_sym_mlStringLiteralExpr_repeat5, - STATE(631), 2, + STATE(689), 2, sym_shebangComment, sym_lineComment, - STATE(764), 2, + STATE(869), 2, sym_mlStringLiteralPart4, sym_stringInterpolation4, - [23858] = 11, + [26091] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43043,73 +46334,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1630), 1, - anon_sym_DQUOTE, ACTIONS(1632), 1, - sym_escapeSequence, + sym_escapeSequence5, ACTIONS(1634), 1, - anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, ACTIONS(1636), 1, - sym__sl_string_chars, - STATE(647), 1, - aux_sym_slStringLiteralExpr_repeat1, - STATE(632), 2, - sym_shebangComment, - sym_lineComment, - STATE(768), 2, - sym_slStringLiteralPart, - sym_stringInterpolation, - [23894] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1551), 1, - sym_escapeSequence1, - ACTIONS(1553), 1, - anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1630), 1, - anon_sym_DQUOTE_POUND, - STATE(648), 1, - aux_sym_slStringLiteralExpr_repeat2, - STATE(633), 2, - sym_shebangComment, - sym_lineComment, - STATE(770), 2, - sym_slStringLiteralPart1, - sym_stringInterpolation1, - [23930] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1557), 1, - sym_escapeSequence2, - ACTIONS(1559), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1561), 1, - sym__sl2_string_chars, - ACTIONS(1630), 1, - anon_sym_DQUOTE_POUND_POUND, - STATE(649), 1, - aux_sym_slStringLiteralExpr_repeat3, - STATE(634), 2, + sym__ml5_string_chars, + ACTIONS(1686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + STATE(698), 1, + aux_sym_mlStringLiteralExpr_repeat6, + STATE(690), 2, sym_shebangComment, sym_lineComment, - STATE(773), 2, - sym_slStringLiteralPart2, - sym_stringInterpolation2, - [23966] = 11, + STATE(827), 2, + sym_mlStringLiteralPart5, + sym_stringInterpolation5, + [26127] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43118,23 +46359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1563), 1, - sym_escapeSequence3, - ACTIONS(1565), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1567), 1, - sym__sl3_string_chars, - ACTIONS(1630), 1, - anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(650), 1, - aux_sym_slStringLiteralExpr_repeat4, - STATE(635), 2, + ACTIONS(1638), 1, + sym_escapeSequence6, + ACTIONS(1640), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1642), 1, + sym__ml6_string_chars, + ACTIONS(1686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + STATE(700), 1, + aux_sym_mlStringLiteralExpr_repeat7, + STATE(691), 2, sym_shebangComment, sym_lineComment, - STATE(776), 2, - sym_slStringLiteralPart3, - sym_stringInterpolation3, - [24002] = 11, + STATE(831), 2, + sym_mlStringLiteralPart6, + sym_stringInterpolation6, + [26163] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43143,23 +46384,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1569), 1, - sym_escapeSequence4, - ACTIONS(1571), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1573), 1, - sym__sl4_string_chars, - ACTIONS(1630), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(651), 1, - aux_sym_slStringLiteralExpr_repeat5, - STATE(636), 2, + ACTIONS(1694), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1696), 1, + sym_escapeSequence, + ACTIONS(1699), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1702), 1, + sym__ml_string_chars, + STATE(857), 2, + sym_mlStringLiteralPart, + sym_stringInterpolation, + STATE(692), 3, sym_shebangComment, sym_lineComment, - STATE(790), 2, - sym_slStringLiteralPart4, - sym_stringInterpolation4, - [24038] = 11, + aux_sym_mlStringLiteralExpr_repeat1, + [26197] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43168,23 +46408,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1575), 1, - sym_escapeSequence5, - ACTIONS(1577), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1579), 1, - sym__sl5_string_chars, - ACTIONS(1630), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(652), 1, - aux_sym_slStringLiteralExpr_repeat6, - STATE(637), 2, + ACTIONS(1705), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + ACTIONS(1707), 1, + sym_escapeSequence1, + ACTIONS(1710), 1, + anon_sym_BSLASH_POUND_LPAREN, + ACTIONS(1713), 1, + sym__ml1_string_chars, + STATE(860), 2, + sym_mlStringLiteralPart1, + sym_stringInterpolation1, + STATE(693), 3, sym_shebangComment, sym_lineComment, - STATE(792), 2, - sym_slStringLiteralPart5, - sym_stringInterpolation5, - [24074] = 11, + aux_sym_mlStringLiteralExpr_repeat2, + [26231] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43193,23 +46432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1581), 1, - sym_escapeSequence6, - ACTIONS(1583), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1585), 1, - sym__sl6_string_chars, - ACTIONS(1630), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(653), 1, - aux_sym_slStringLiteralExpr_repeat7, - STATE(638), 2, + ACTIONS(1716), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + ACTIONS(1718), 1, + sym_escapeSequence2, + ACTIONS(1721), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1724), 1, + sym__ml2_string_chars, + STATE(863), 2, + sym_mlStringLiteralPart2, + sym_stringInterpolation2, + STATE(694), 3, sym_shebangComment, sym_lineComment, - STATE(794), 2, - sym_slStringLiteralPart6, - sym_stringInterpolation6, - [24110] = 11, + aux_sym_mlStringLiteralExpr_repeat3, + [26265] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43218,23 +46456,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1589), 1, - sym_escapeSequence, - ACTIONS(1591), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(1593), 1, - sym__ml_string_chars, - ACTIONS(1638), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(654), 1, - aux_sym_mlStringLiteralExpr_repeat1, - STATE(639), 2, + ACTIONS(1727), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + ACTIONS(1729), 1, + sym_escapeSequence3, + ACTIONS(1732), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1735), 1, + sym__ml3_string_chars, + STATE(866), 2, + sym_mlStringLiteralPart3, + sym_stringInterpolation3, + STATE(695), 3, sym_shebangComment, sym_lineComment, - STATE(802), 2, - sym_mlStringLiteralPart, - sym_stringInterpolation, - [24146] = 11, + aux_sym_mlStringLiteralExpr_repeat4, + [26299] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43243,23 +46480,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1595), 1, - sym_escapeSequence1, - ACTIONS(1597), 1, - anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1599), 1, - sym__ml1_string_chars, - ACTIONS(1638), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(655), 1, - aux_sym_mlStringLiteralExpr_repeat2, - STATE(640), 2, + ACTIONS(1598), 1, + anon_sym_DQUOTE_POUND_POUND, + ACTIONS(1656), 1, + sym_escapeSequence2, + ACTIONS(1658), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1660), 1, + sym__sl2_string_chars, + STATE(745), 1, + aux_sym_slStringLiteralExpr_repeat3, + STATE(696), 2, sym_shebangComment, sym_lineComment, - STATE(757), 2, - sym_mlStringLiteralPart1, - sym_stringInterpolation1, - [24182] = 11, + STATE(856), 2, + sym_slStringLiteralPart2, + sym_stringInterpolation2, + [26335] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43268,23 +46505,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1612), 1, - sym_escapeSequence2, - ACTIONS(1614), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1616), 1, - sym__ml2_string_chars, - ACTIONS(1638), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(656), 1, - aux_sym_mlStringLiteralExpr_repeat3, - STATE(641), 2, + ACTIONS(1738), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + ACTIONS(1740), 1, + sym_escapeSequence4, + ACTIONS(1743), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1746), 1, + sym__ml4_string_chars, + STATE(869), 2, + sym_mlStringLiteralPart4, + sym_stringInterpolation4, + STATE(697), 3, sym_shebangComment, sym_lineComment, - STATE(759), 2, - sym_mlStringLiteralPart2, - sym_stringInterpolation2, - [24218] = 11, + aux_sym_mlStringLiteralExpr_repeat5, + [26369] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43293,23 +46529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1618), 1, - sym_escapeSequence3, - ACTIONS(1620), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1622), 1, - sym__ml3_string_chars, - ACTIONS(1638), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(657), 1, - aux_sym_mlStringLiteralExpr_repeat4, - STATE(642), 2, + ACTIONS(1749), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + ACTIONS(1751), 1, + sym_escapeSequence5, + ACTIONS(1754), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1757), 1, + sym__ml5_string_chars, + STATE(827), 2, + sym_mlStringLiteralPart5, + sym_stringInterpolation5, + STATE(698), 3, sym_shebangComment, sym_lineComment, - STATE(762), 2, - sym_mlStringLiteralPart3, - sym_stringInterpolation3, - [24254] = 11, + aux_sym_mlStringLiteralExpr_repeat6, + [26403] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43318,48 +46553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1624), 1, - sym_escapeSequence4, ACTIONS(1626), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + sym_escapeSequence4, ACTIONS(1628), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1630), 1, sym__ml4_string_chars, - ACTIONS(1638), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(658), 1, + STATE(716), 1, aux_sym_mlStringLiteralExpr_repeat5, - STATE(643), 2, + STATE(699), 2, sym_shebangComment, sym_lineComment, - STATE(764), 2, + STATE(869), 2, sym_mlStringLiteralPart4, sym_stringInterpolation4, - [24290] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1638), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1640), 1, - sym_escapeSequence5, - ACTIONS(1642), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1644), 1, - sym__ml5_string_chars, - STATE(659), 1, - aux_sym_mlStringLiteralExpr_repeat6, - STATE(644), 2, - sym_shebangComment, - sym_lineComment, - STATE(777), 2, - sym_mlStringLiteralPart5, - sym_stringInterpolation5, - [24326] = 11, + [26439] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43368,23 +46578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1638), 1, + ACTIONS(1760), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1646), 1, + ACTIONS(1762), 1, sym_escapeSequence6, - ACTIONS(1648), 1, + ACTIONS(1765), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1650), 1, + ACTIONS(1768), 1, sym__ml6_string_chars, - STATE(660), 1, - aux_sym_mlStringLiteralExpr_repeat7, - STATE(645), 2, - sym_shebangComment, - sym_lineComment, - STATE(779), 2, + STATE(831), 2, sym_mlStringLiteralPart6, sym_stringInterpolation6, - [24362] = 11, + STATE(700), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_mlStringLiteralExpr_repeat7, + [26473] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43393,23 +46602,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1587), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1640), 1, - sym_escapeSequence5, - ACTIONS(1642), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1620), 1, + sym_escapeSequence3, + ACTIONS(1622), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1624), 1, + sym__ml3_string_chars, ACTIONS(1644), 1, - sym__ml5_string_chars, - STATE(711), 1, - aux_sym_mlStringLiteralExpr_repeat6, - STATE(646), 2, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + STATE(695), 1, + aux_sym_mlStringLiteralExpr_repeat4, + STATE(701), 2, sym_shebangComment, sym_lineComment, - STATE(777), 2, - sym_mlStringLiteralPart5, - sym_stringInterpolation5, - [24398] = 11, + STATE(866), 2, + sym_mlStringLiteralPart3, + sym_stringInterpolation3, + [26509] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43418,23 +46627,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1632), 1, + ACTIONS(1600), 1, sym_escapeSequence, - ACTIONS(1634), 1, + ACTIONS(1602), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE, - STATE(616), 1, + STATE(719), 1, aux_sym_slStringLiteralExpr_repeat1, - STATE(647), 2, + STATE(702), 2, sym_shebangComment, sym_lineComment, - STATE(768), 2, + STATE(861), 2, sym_slStringLiteralPart, sym_stringInterpolation, - [24434] = 11, + [26545] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43443,23 +46652,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1551), 1, + ACTIONS(1650), 1, sym_escapeSequence1, - ACTIONS(1553), 1, + ACTIONS(1652), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE_POUND, - STATE(618), 1, + STATE(720), 1, aux_sym_slStringLiteralExpr_repeat2, - STATE(648), 2, + STATE(703), 2, sym_shebangComment, sym_lineComment, - STATE(770), 2, + STATE(833), 2, sym_slStringLiteralPart1, sym_stringInterpolation1, - [24470] = 11, + [26581] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43468,23 +46677,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1557), 1, + ACTIONS(1656), 1, sym_escapeSequence2, - ACTIONS(1559), 1, + ACTIONS(1658), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1660), 1, sym__sl2_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(619), 1, + STATE(721), 1, aux_sym_slStringLiteralExpr_repeat3, - STATE(649), 2, + STATE(704), 2, sym_shebangComment, sym_lineComment, - STATE(773), 2, + STATE(856), 2, sym_slStringLiteralPart2, sym_stringInterpolation2, - [24506] = 11, + [26617] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43493,23 +46702,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1563), 1, + ACTIONS(1662), 1, sym_escapeSequence3, - ACTIONS(1565), 1, + ACTIONS(1664), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1666), 1, sym__sl3_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(614), 1, + STATE(722), 1, aux_sym_slStringLiteralExpr_repeat4, - STATE(650), 2, + STATE(705), 2, sym_shebangComment, sym_lineComment, - STATE(776), 2, + STATE(867), 2, sym_slStringLiteralPart3, sym_stringInterpolation3, - [24542] = 11, + [26653] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43518,23 +46727,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1569), 1, + ACTIONS(1668), 1, sym_escapeSequence4, - ACTIONS(1571), 1, + ACTIONS(1670), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1573), 1, + ACTIONS(1672), 1, sym__sl4_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(628), 1, + STATE(723), 1, aux_sym_slStringLiteralExpr_repeat5, - STATE(651), 2, + STATE(706), 2, sym_shebangComment, sym_lineComment, - STATE(790), 2, + STATE(832), 2, sym_slStringLiteralPart4, sym_stringInterpolation4, - [24578] = 11, + [26689] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43543,23 +46752,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1575), 1, + ACTIONS(1674), 1, sym_escapeSequence5, - ACTIONS(1577), 1, + ACTIONS(1676), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1678), 1, sym__sl5_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(662), 1, + STATE(724), 1, aux_sym_slStringLiteralExpr_repeat6, - STATE(652), 2, + STATE(707), 2, sym_shebangComment, sym_lineComment, - STATE(792), 2, + STATE(838), 2, sym_slStringLiteralPart5, sym_stringInterpolation5, - [24614] = 11, + [26725] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43568,23 +46777,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1581), 1, + ACTIONS(1680), 1, sym_escapeSequence6, - ACTIONS(1583), 1, + ACTIONS(1682), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1585), 1, + ACTIONS(1684), 1, sym__sl6_string_chars, - ACTIONS(1652), 1, + ACTIONS(1771), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(663), 1, + STATE(725), 1, aux_sym_slStringLiteralExpr_repeat7, - STATE(653), 2, + STATE(708), 2, sym_shebangComment, sym_lineComment, - STATE(794), 2, + STATE(853), 2, sym_slStringLiteralPart6, sym_stringInterpolation6, - [24650] = 11, + [26761] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43593,23 +46802,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1589), 1, + ACTIONS(1688), 1, sym_escapeSequence, - ACTIONS(1591), 1, + ACTIONS(1690), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1593), 1, + ACTIONS(1692), 1, sym__ml_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(706), 1, + STATE(726), 1, aux_sym_mlStringLiteralExpr_repeat1, - STATE(654), 2, + STATE(709), 2, sym_shebangComment, sym_lineComment, - STATE(802), 2, + STATE(857), 2, sym_mlStringLiteralPart, sym_stringInterpolation, - [24686] = 11, + [26797] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43618,23 +46827,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1595), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1597), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(707), 1, + STATE(727), 1, aux_sym_mlStringLiteralExpr_repeat2, - STATE(655), 2, + STATE(710), 2, sym_shebangComment, sym_lineComment, - STATE(757), 2, + STATE(860), 2, sym_mlStringLiteralPart1, sym_stringInterpolation1, - [24722] = 11, + [26833] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43643,23 +46852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1612), 1, - sym_escapeSequence2, ACTIONS(1614), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, + sym_escapeSequence2, ACTIONS(1616), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1618), 1, sym__ml2_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(708), 1, + STATE(767), 1, aux_sym_mlStringLiteralExpr_repeat3, - STATE(656), 2, + STATE(711), 2, sym_shebangComment, sym_lineComment, - STATE(759), 2, + STATE(863), 2, sym_mlStringLiteralPart2, sym_stringInterpolation2, - [24758] = 11, + [26869] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43668,23 +46877,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1618), 1, - sym_escapeSequence3, ACTIONS(1620), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + sym_escapeSequence3, ACTIONS(1622), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1624), 1, sym__ml3_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(709), 1, + STATE(728), 1, aux_sym_mlStringLiteralExpr_repeat4, - STATE(657), 2, + STATE(712), 2, sym_shebangComment, sym_lineComment, - STATE(762), 2, + STATE(866), 2, sym_mlStringLiteralPart3, sym_stringInterpolation3, - [24794] = 11, + [26905] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43693,23 +46902,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1624), 1, - sym_escapeSequence4, ACTIONS(1626), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + sym_escapeSequence4, ACTIONS(1628), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1630), 1, sym__ml4_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(710), 1, + STATE(729), 1, aux_sym_mlStringLiteralExpr_repeat5, - STATE(658), 2, + STATE(713), 2, sym_shebangComment, sym_lineComment, - STATE(764), 2, + STATE(869), 2, sym_mlStringLiteralPart4, sym_stringInterpolation4, - [24830] = 11, + [26941] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43718,23 +46927,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1640), 1, + ACTIONS(1632), 1, sym_escapeSequence5, - ACTIONS(1642), 1, + ACTIONS(1634), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1644), 1, + ACTIONS(1636), 1, sym__ml5_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(711), 1, + STATE(730), 1, aux_sym_mlStringLiteralExpr_repeat6, - STATE(659), 2, + STATE(714), 2, sym_shebangComment, sym_lineComment, - STATE(777), 2, + STATE(827), 2, sym_mlStringLiteralPart5, sym_stringInterpolation5, - [24866] = 11, + [26977] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43743,23 +46952,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1646), 1, + ACTIONS(1638), 1, sym_escapeSequence6, - ACTIONS(1648), 1, + ACTIONS(1640), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1650), 1, + ACTIONS(1642), 1, sym__ml6_string_chars, - ACTIONS(1654), 1, + ACTIONS(1773), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(615), 1, + STATE(731), 1, aux_sym_mlStringLiteralExpr_repeat7, - STATE(660), 2, + STATE(715), 2, sym_shebangComment, sym_lineComment, - STATE(779), 2, + STATE(831), 2, sym_mlStringLiteralPart6, sym_stringInterpolation6, - [24902] = 11, + [27013] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43768,23 +46977,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1587), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1646), 1, - sym_escapeSequence6, - ACTIONS(1648), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1650), 1, - sym__ml6_string_chars, - STATE(615), 1, - aux_sym_mlStringLiteralExpr_repeat7, - STATE(661), 2, + ACTIONS(1626), 1, + sym_escapeSequence4, + ACTIONS(1628), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1630), 1, + sym__ml4_string_chars, + ACTIONS(1644), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + STATE(697), 1, + aux_sym_mlStringLiteralExpr_repeat5, + STATE(716), 2, sym_shebangComment, sym_lineComment, - STATE(779), 2, - sym_mlStringLiteralPart6, - sym_stringInterpolation6, - [24938] = 10, + STATE(869), 2, + sym_mlStringLiteralPart4, + sym_stringInterpolation4, + [27049] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43793,22 +47002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1656), 1, + ACTIONS(1775), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1658), 1, + ACTIONS(1777), 1, sym_escapeSequence5, - ACTIONS(1661), 1, + ACTIONS(1780), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1664), 1, + ACTIONS(1783), 1, sym__sl5_string_chars, - STATE(792), 2, + STATE(838), 2, sym_slStringLiteralPart5, sym_stringInterpolation5, - STATE(662), 3, + STATE(717), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteralExpr_repeat6, - [24972] = 10, + [27083] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43817,22 +47026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1667), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1669), 1, - sym_escapeSequence6, - ACTIONS(1672), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1675), 1, - sym__sl6_string_chars, - STATE(794), 2, - sym_slStringLiteralPart6, - sym_stringInterpolation6, - STATE(663), 3, + ACTIONS(1632), 1, + sym_escapeSequence5, + ACTIONS(1634), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1636), 1, + sym__ml5_string_chars, + ACTIONS(1646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + STATE(733), 1, + aux_sym_mlStringLiteralExpr_repeat6, + STATE(718), 2, sym_shebangComment, sym_lineComment, - aux_sym_slStringLiteralExpr_repeat7, - [25006] = 11, + STATE(827), 2, + sym_mlStringLiteralPart5, + sym_stringInterpolation5, + [27119] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43841,23 +47051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1632), 1, + ACTIONS(1600), 1, sym_escapeSequence, - ACTIONS(1634), 1, + ACTIONS(1602), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1678), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE, - STATE(712), 1, + STATE(732), 1, aux_sym_slStringLiteralExpr_repeat1, - STATE(664), 2, + STATE(719), 2, sym_shebangComment, sym_lineComment, - STATE(768), 2, + STATE(861), 2, sym_slStringLiteralPart, sym_stringInterpolation, - [25042] = 11, + [27155] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43866,23 +47076,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1551), 1, + ACTIONS(1650), 1, sym_escapeSequence1, - ACTIONS(1553), 1, + ACTIONS(1652), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1678), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE_POUND, - STATE(620), 1, + STATE(741), 1, aux_sym_slStringLiteralExpr_repeat2, - STATE(665), 2, + STATE(720), 2, sym_shebangComment, sym_lineComment, - STATE(770), 2, + STATE(833), 2, sym_slStringLiteralPart1, sym_stringInterpolation1, - [25078] = 11, + [27191] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43891,23 +47101,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1557), 1, + ACTIONS(1656), 1, sym_escapeSequence2, - ACTIONS(1559), 1, + ACTIONS(1658), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1660), 1, sym__sl2_string_chars, - ACTIONS(1678), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(621), 1, + STATE(745), 1, aux_sym_slStringLiteralExpr_repeat3, - STATE(666), 2, + STATE(721), 2, sym_shebangComment, sym_lineComment, - STATE(773), 2, + STATE(856), 2, sym_slStringLiteralPart2, sym_stringInterpolation2, - [25114] = 11, + [27227] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43916,23 +47126,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1563), 1, + ACTIONS(1662), 1, sym_escapeSequence3, - ACTIONS(1565), 1, + ACTIONS(1664), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1666), 1, sym__sl3_string_chars, - ACTIONS(1678), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(622), 1, + STATE(750), 1, aux_sym_slStringLiteralExpr_repeat4, - STATE(667), 2, + STATE(722), 2, sym_shebangComment, sym_lineComment, - STATE(776), 2, + STATE(867), 2, sym_slStringLiteralPart3, sym_stringInterpolation3, - [25150] = 11, + [27263] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43941,23 +47151,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1569), 1, + ACTIONS(1668), 1, sym_escapeSequence4, - ACTIONS(1571), 1, + ACTIONS(1670), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1573), 1, + ACTIONS(1672), 1, sym__sl4_string_chars, - ACTIONS(1678), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(623), 1, + STATE(761), 1, aux_sym_slStringLiteralExpr_repeat5, - STATE(668), 2, + STATE(723), 2, sym_shebangComment, sym_lineComment, - STATE(790), 2, + STATE(832), 2, sym_slStringLiteralPart4, sym_stringInterpolation4, - [25186] = 11, + [27299] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43966,23 +47176,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1575), 1, + ACTIONS(1674), 1, sym_escapeSequence5, - ACTIONS(1577), 1, + ACTIONS(1676), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1579), 1, - sym__sl5_string_chars, ACTIONS(1678), 1, + sym__sl5_string_chars, + ACTIONS(1786), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(624), 1, + STATE(717), 1, aux_sym_slStringLiteralExpr_repeat6, - STATE(669), 2, + STATE(724), 2, sym_shebangComment, sym_lineComment, - STATE(792), 2, + STATE(838), 2, sym_slStringLiteralPart5, sym_stringInterpolation5, - [25222] = 11, + [27335] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43991,23 +47201,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1581), 1, + ACTIONS(1680), 1, sym_escapeSequence6, - ACTIONS(1583), 1, + ACTIONS(1682), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1585), 1, + ACTIONS(1684), 1, sym__sl6_string_chars, - ACTIONS(1678), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(625), 1, + STATE(737), 1, aux_sym_slStringLiteralExpr_repeat7, - STATE(670), 2, + STATE(725), 2, sym_shebangComment, sym_lineComment, - STATE(794), 2, + STATE(853), 2, sym_slStringLiteralPart6, sym_stringInterpolation6, - [25258] = 11, + [27371] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44016,23 +47226,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1589), 1, + ACTIONS(1688), 1, sym_escapeSequence, - ACTIONS(1591), 1, + ACTIONS(1690), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1593), 1, + ACTIONS(1692), 1, sym__ml_string_chars, - ACTIONS(1680), 1, + ACTIONS(1788), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(626), 1, + STATE(692), 1, aux_sym_mlStringLiteralExpr_repeat1, - STATE(671), 2, + STATE(726), 2, sym_shebangComment, sym_lineComment, - STATE(802), 2, + STATE(857), 2, sym_mlStringLiteralPart, sym_stringInterpolation, - [25294] = 11, + [27407] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44041,23 +47251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1632), 1, - sym_escapeSequence, - ACTIONS(1634), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE, - STATE(690), 1, - aux_sym_slStringLiteralExpr_repeat1, - STATE(672), 2, + ACTIONS(1608), 1, + sym_escapeSequence1, + ACTIONS(1610), 1, + anon_sym_BSLASH_POUND_LPAREN, + ACTIONS(1612), 1, + sym__ml1_string_chars, + ACTIONS(1788), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + STATE(693), 1, + aux_sym_mlStringLiteralExpr_repeat2, + STATE(727), 2, sym_shebangComment, sym_lineComment, - STATE(768), 2, - sym_slStringLiteralPart, - sym_stringInterpolation, - [25330] = 11, + STATE(860), 2, + sym_mlStringLiteralPart1, + sym_stringInterpolation1, + [27443] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44066,23 +47276,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1551), 1, - sym_escapeSequence1, - ACTIONS(1553), 1, - anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE_POUND, - STATE(691), 1, - aux_sym_slStringLiteralExpr_repeat2, - STATE(673), 2, + ACTIONS(1620), 1, + sym_escapeSequence3, + ACTIONS(1622), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1624), 1, + sym__ml3_string_chars, + ACTIONS(1788), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + STATE(695), 1, + aux_sym_mlStringLiteralExpr_repeat4, + STATE(728), 2, sym_shebangComment, sym_lineComment, - STATE(770), 2, - sym_slStringLiteralPart1, - sym_stringInterpolation1, - [25366] = 11, + STATE(866), 2, + sym_mlStringLiteralPart3, + sym_stringInterpolation3, + [27479] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44091,23 +47301,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1557), 1, - sym_escapeSequence2, - ACTIONS(1559), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1561), 1, - sym__sl2_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE_POUND_POUND, - STATE(692), 1, - aux_sym_slStringLiteralExpr_repeat3, - STATE(674), 2, + ACTIONS(1626), 1, + sym_escapeSequence4, + ACTIONS(1628), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1630), 1, + sym__ml4_string_chars, + ACTIONS(1788), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + STATE(697), 1, + aux_sym_mlStringLiteralExpr_repeat5, + STATE(729), 2, sym_shebangComment, sym_lineComment, - STATE(773), 2, - sym_slStringLiteralPart2, - sym_stringInterpolation2, - [25402] = 11, + STATE(869), 2, + sym_mlStringLiteralPart4, + sym_stringInterpolation4, + [27515] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44116,23 +47326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1563), 1, - sym_escapeSequence3, - ACTIONS(1565), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1567), 1, - sym__sl3_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(693), 1, - aux_sym_slStringLiteralExpr_repeat4, - STATE(675), 2, + ACTIONS(1632), 1, + sym_escapeSequence5, + ACTIONS(1634), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1636), 1, + sym__ml5_string_chars, + ACTIONS(1788), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + STATE(698), 1, + aux_sym_mlStringLiteralExpr_repeat6, + STATE(730), 2, sym_shebangComment, sym_lineComment, - STATE(776), 2, - sym_slStringLiteralPart3, - sym_stringInterpolation3, - [25438] = 11, + STATE(827), 2, + sym_mlStringLiteralPart5, + sym_stringInterpolation5, + [27551] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44141,23 +47351,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1569), 1, - sym_escapeSequence4, - ACTIONS(1571), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1573), 1, - sym__sl4_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(694), 1, - aux_sym_slStringLiteralExpr_repeat5, - STATE(676), 2, + ACTIONS(1638), 1, + sym_escapeSequence6, + ACTIONS(1640), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1642), 1, + sym__ml6_string_chars, + ACTIONS(1788), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + STATE(700), 1, + aux_sym_mlStringLiteralExpr_repeat7, + STATE(731), 2, sym_shebangComment, sym_lineComment, - STATE(790), 2, - sym_slStringLiteralPart4, - sym_stringInterpolation4, - [25474] = 11, + STATE(831), 2, + sym_mlStringLiteralPart6, + sym_stringInterpolation6, + [27587] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44166,23 +47376,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1575), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + sym_escapeSequence, + ACTIONS(1795), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1798), 1, + sym__sl_string_chars, + STATE(861), 2, + sym_slStringLiteralPart, + sym_stringInterpolation, + STATE(732), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_slStringLiteralExpr_repeat1, + [27621] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1632), 1, sym_escapeSequence5, - ACTIONS(1577), 1, + ACTIONS(1634), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1579), 1, - sym__sl5_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(695), 1, - aux_sym_slStringLiteralExpr_repeat6, - STATE(677), 2, + ACTIONS(1636), 1, + sym__ml5_string_chars, + ACTIONS(1644), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + STATE(698), 1, + aux_sym_mlStringLiteralExpr_repeat6, + STATE(733), 2, sym_shebangComment, sym_lineComment, - STATE(792), 2, - sym_slStringLiteralPart5, + STATE(827), 2, + sym_mlStringLiteralPart5, sym_stringInterpolation5, - [25510] = 11, + [27657] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1598), 1, + anon_sym_DQUOTE_POUND_POUND_POUND, + ACTIONS(1662), 1, + sym_escapeSequence3, + ACTIONS(1664), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1666), 1, + sym__sl3_string_chars, + STATE(750), 1, + aux_sym_slStringLiteralExpr_repeat4, + STATE(734), 2, + sym_shebangComment, + sym_lineComment, + STATE(867), 2, + sym_slStringLiteralPart3, + sym_stringInterpolation3, + [27693] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44191,23 +47450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1581), 1, + ACTIONS(1638), 1, sym_escapeSequence6, - ACTIONS(1583), 1, + ACTIONS(1640), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1585), 1, - sym__sl6_string_chars, - ACTIONS(1682), 1, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(696), 1, - aux_sym_slStringLiteralExpr_repeat7, - STATE(678), 2, + ACTIONS(1642), 1, + sym__ml6_string_chars, + ACTIONS(1644), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + STATE(700), 1, + aux_sym_mlStringLiteralExpr_repeat7, + STATE(735), 2, sym_shebangComment, sym_lineComment, - STATE(794), 2, - sym_slStringLiteralPart6, + STATE(831), 2, + sym_mlStringLiteralPart6, sym_stringInterpolation6, - [25546] = 11, + [27729] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44216,23 +47475,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1589), 1, - sym_escapeSequence, - ACTIONS(1591), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(1593), 1, - sym__ml_string_chars, - ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(697), 1, - aux_sym_mlStringLiteralExpr_repeat1, - STATE(679), 2, + ACTIONS(1598), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND, + ACTIONS(1668), 1, + sym_escapeSequence4, + ACTIONS(1670), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1672), 1, + sym__sl4_string_chars, + STATE(761), 1, + aux_sym_slStringLiteralExpr_repeat5, + STATE(736), 2, sym_shebangComment, sym_lineComment, - STATE(802), 2, - sym_mlStringLiteralPart, - sym_stringInterpolation, - [25582] = 11, + STATE(832), 2, + sym_slStringLiteralPart4, + sym_stringInterpolation4, + [27765] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44241,23 +47500,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1595), 1, - sym_escapeSequence1, - ACTIONS(1597), 1, - anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1599), 1, - sym__ml1_string_chars, - ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(698), 1, - aux_sym_mlStringLiteralExpr_repeat2, - STATE(680), 2, + ACTIONS(1801), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + ACTIONS(1803), 1, + sym_escapeSequence6, + ACTIONS(1806), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1809), 1, + sym__sl6_string_chars, + STATE(853), 2, + sym_slStringLiteralPart6, + sym_stringInterpolation6, + STATE(737), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_slStringLiteralExpr_repeat7, + [27799] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1688), 1, + sym_escapeSequence, + ACTIONS(1690), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1692), 1, + sym__ml_string_chars, + STATE(759), 1, + aux_sym_mlStringLiteralExpr_repeat1, + STATE(738), 2, sym_shebangComment, sym_lineComment, - STATE(757), 2, - sym_mlStringLiteralPart1, - sym_stringInterpolation1, - [25618] = 11, + STATE(857), 2, + sym_mlStringLiteralPart, + sym_stringInterpolation, + [27835] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44266,23 +47549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1612), 1, - sym_escapeSequence2, - ACTIONS(1614), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1616), 1, - sym__ml2_string_chars, - ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(699), 1, - aux_sym_mlStringLiteralExpr_repeat3, - STATE(681), 2, + ACTIONS(1598), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, + ACTIONS(1674), 1, + sym_escapeSequence5, + ACTIONS(1676), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1678), 1, + sym__sl5_string_chars, + STATE(717), 1, + aux_sym_slStringLiteralExpr_repeat6, + STATE(739), 2, sym_shebangComment, sym_lineComment, - STATE(759), 2, - sym_mlStringLiteralPart2, - sym_stringInterpolation2, - [25654] = 11, + STATE(838), 2, + sym_slStringLiteralPart5, + sym_stringInterpolation5, + [27871] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44291,23 +47574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1618), 1, - sym_escapeSequence3, - ACTIONS(1620), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1622), 1, - sym__ml3_string_chars, - ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(700), 1, - aux_sym_mlStringLiteralExpr_repeat4, - STATE(682), 2, + ACTIONS(1600), 1, + sym_escapeSequence, + ACTIONS(1602), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE, + STATE(669), 1, + aux_sym_slStringLiteralExpr_repeat1, + STATE(740), 2, sym_shebangComment, sym_lineComment, - STATE(762), 2, - sym_mlStringLiteralPart3, - sym_stringInterpolation3, - [25690] = 11, + STATE(861), 2, + sym_slStringLiteralPart, + sym_stringInterpolation, + [27907] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44316,23 +47599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1624), 1, - sym_escapeSequence4, - ACTIONS(1626), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1628), 1, - sym__ml4_string_chars, - ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(701), 1, - aux_sym_mlStringLiteralExpr_repeat5, - STATE(683), 2, + ACTIONS(1814), 1, + anon_sym_DQUOTE_POUND, + ACTIONS(1816), 1, + sym_escapeSequence1, + ACTIONS(1819), 1, + anon_sym_BSLASH_POUND_LPAREN, + ACTIONS(1822), 1, + sym__sl1_string_chars, + STATE(833), 2, + sym_slStringLiteralPart1, + sym_stringInterpolation1, + STATE(741), 3, sym_shebangComment, sym_lineComment, - STATE(764), 2, - sym_mlStringLiteralPart4, - sym_stringInterpolation4, - [25726] = 11, + aux_sym_slStringLiteralExpr_repeat2, + [27941] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44341,23 +47623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1640), 1, - sym_escapeSequence5, - ACTIONS(1642), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1644), 1, - sym__ml5_string_chars, - ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(702), 1, - aux_sym_mlStringLiteralExpr_repeat6, - STATE(684), 2, + ACTIONS(1608), 1, + sym_escapeSequence1, + ACTIONS(1610), 1, + anon_sym_BSLASH_POUND_LPAREN, + ACTIONS(1612), 1, + sym__ml1_string_chars, + ACTIONS(1646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + STATE(760), 1, + aux_sym_mlStringLiteralExpr_repeat2, + STATE(742), 2, sym_shebangComment, sym_lineComment, - STATE(777), 2, - sym_mlStringLiteralPart5, - sym_stringInterpolation5, - [25762] = 11, + STATE(860), 2, + sym_mlStringLiteralPart1, + sym_stringInterpolation1, + [27977] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44366,23 +47648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1646), 1, + ACTIONS(1598), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + ACTIONS(1680), 1, sym_escapeSequence6, - ACTIONS(1648), 1, + ACTIONS(1682), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1650), 1, - sym__ml6_string_chars, ACTIONS(1684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(703), 1, - aux_sym_mlStringLiteralExpr_repeat7, - STATE(685), 2, + sym__sl6_string_chars, + STATE(737), 1, + aux_sym_slStringLiteralExpr_repeat7, + STATE(743), 2, sym_shebangComment, sym_lineComment, - STATE(779), 2, - sym_mlStringLiteralPart6, + STATE(853), 2, + sym_slStringLiteralPart6, sym_stringInterpolation6, - [25798] = 11, + [28013] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44391,23 +47673,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1595), 1, + ACTIONS(1598), 1, + anon_sym_DQUOTE_POUND, + ACTIONS(1650), 1, sym_escapeSequence1, - ACTIONS(1597), 1, + ACTIONS(1652), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1599), 1, - sym__ml1_string_chars, - ACTIONS(1680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(627), 1, - aux_sym_mlStringLiteralExpr_repeat2, - STATE(686), 2, + ACTIONS(1654), 1, + sym__sl1_string_chars, + STATE(741), 1, + aux_sym_slStringLiteralExpr_repeat2, + STATE(744), 2, sym_shebangComment, sym_lineComment, - STATE(757), 2, - sym_mlStringLiteralPart1, + STATE(833), 2, + sym_slStringLiteralPart1, sym_stringInterpolation1, - [25834] = 11, + [28049] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44416,23 +47698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1612), 1, + ACTIONS(1825), 1, + anon_sym_DQUOTE_POUND_POUND, + ACTIONS(1827), 1, sym_escapeSequence2, - ACTIONS(1614), 1, + ACTIONS(1830), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1616), 1, - sym__ml2_string_chars, - ACTIONS(1680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(629), 1, - aux_sym_mlStringLiteralExpr_repeat3, - STATE(687), 2, + ACTIONS(1833), 1, + sym__sl2_string_chars, + STATE(856), 2, + sym_slStringLiteralPart2, + sym_stringInterpolation2, + STATE(745), 3, sym_shebangComment, sym_lineComment, - STATE(759), 2, - sym_mlStringLiteralPart2, - sym_stringInterpolation2, - [25870] = 11, + aux_sym_slStringLiteralExpr_repeat3, + [28083] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44441,23 +47722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1618), 1, - sym_escapeSequence3, - ACTIONS(1620), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1622), 1, - sym__ml3_string_chars, - ACTIONS(1680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(630), 1, - aux_sym_mlStringLiteralExpr_repeat4, - STATE(688), 2, + ACTIONS(1650), 1, + sym_escapeSequence1, + ACTIONS(1652), 1, + anon_sym_BSLASH_POUND_LPAREN, + ACTIONS(1654), 1, + sym__sl1_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE_POUND, + STATE(744), 1, + aux_sym_slStringLiteralExpr_repeat2, + STATE(746), 2, sym_shebangComment, sym_lineComment, - STATE(762), 2, - sym_mlStringLiteralPart3, - sym_stringInterpolation3, - [25906] = 11, + STATE(833), 2, + sym_slStringLiteralPart1, + sym_stringInterpolation1, + [28119] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44466,23 +47747,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1624), 1, - sym_escapeSequence4, - ACTIONS(1626), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1628), 1, - sym__ml4_string_chars, - ACTIONS(1680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(631), 1, - aux_sym_mlStringLiteralExpr_repeat5, - STATE(689), 2, + ACTIONS(1614), 1, + sym_escapeSequence2, + ACTIONS(1616), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1618), 1, + sym__ml2_string_chars, + ACTIONS(1646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + STATE(676), 1, + aux_sym_mlStringLiteralExpr_repeat3, + STATE(747), 2, sym_shebangComment, sym_lineComment, - STATE(764), 2, - sym_mlStringLiteralPart4, - sym_stringInterpolation4, - [25942] = 11, + STATE(863), 2, + sym_mlStringLiteralPart2, + sym_stringInterpolation2, + [28155] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44491,23 +47772,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1632), 1, + ACTIONS(1600), 1, sym_escapeSequence, - ACTIONS(1634), 1, + ACTIONS(1602), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE, - STATE(616), 1, + STATE(678), 1, aux_sym_slStringLiteralExpr_repeat1, - STATE(690), 2, + STATE(748), 2, sym_shebangComment, sym_lineComment, - STATE(768), 2, + STATE(861), 2, sym_slStringLiteralPart, sym_stringInterpolation, - [25978] = 11, + [28191] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44516,23 +47797,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1551), 1, + ACTIONS(1650), 1, sym_escapeSequence1, - ACTIONS(1553), 1, + ACTIONS(1652), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE_POUND, - STATE(618), 1, + STATE(679), 1, aux_sym_slStringLiteralExpr_repeat2, - STATE(691), 2, + STATE(749), 2, sym_shebangComment, sym_lineComment, - STATE(770), 2, + STATE(833), 2, sym_slStringLiteralPart1, sym_stringInterpolation1, - [26014] = 11, + [28227] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1838), 1, + anon_sym_DQUOTE_POUND_POUND_POUND, + ACTIONS(1840), 1, + sym_escapeSequence3, + ACTIONS(1843), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1846), 1, + sym__sl3_string_chars, + STATE(867), 2, + sym_slStringLiteralPart3, + sym_stringInterpolation3, + STATE(750), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_slStringLiteralExpr_repeat4, + [28261] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44541,23 +47846,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1557), 1, + ACTIONS(1656), 1, sym_escapeSequence2, - ACTIONS(1559), 1, + ACTIONS(1658), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1660), 1, sym__sl2_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(619), 1, + STATE(680), 1, aux_sym_slStringLiteralExpr_repeat3, - STATE(692), 2, + STATE(751), 2, sym_shebangComment, sym_lineComment, - STATE(773), 2, + STATE(856), 2, sym_slStringLiteralPart2, sym_stringInterpolation2, - [26050] = 11, + [28297] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44566,23 +47871,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1563), 1, + ACTIONS(1662), 1, sym_escapeSequence3, - ACTIONS(1565), 1, + ACTIONS(1664), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1666), 1, sym__sl3_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(614), 1, + STATE(681), 1, aux_sym_slStringLiteralExpr_repeat4, - STATE(693), 2, + STATE(752), 2, sym_shebangComment, sym_lineComment, - STATE(776), 2, + STATE(867), 2, sym_slStringLiteralPart3, sym_stringInterpolation3, - [26086] = 11, + [28333] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44591,23 +47896,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1569), 1, + ACTIONS(1668), 1, sym_escapeSequence4, - ACTIONS(1571), 1, + ACTIONS(1670), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1573), 1, + ACTIONS(1672), 1, sym__sl4_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(628), 1, + STATE(682), 1, aux_sym_slStringLiteralExpr_repeat5, - STATE(694), 2, + STATE(753), 2, sym_shebangComment, sym_lineComment, - STATE(790), 2, + STATE(832), 2, sym_slStringLiteralPart4, sym_stringInterpolation4, - [26122] = 11, + [28369] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1656), 1, + sym_escapeSequence2, + ACTIONS(1658), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1660), 1, + sym__sl2_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE_POUND_POUND, + STATE(696), 1, + aux_sym_slStringLiteralExpr_repeat3, + STATE(754), 2, + sym_shebangComment, + sym_lineComment, + STATE(856), 2, + sym_slStringLiteralPart2, + sym_stringInterpolation2, + [28405] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44616,23 +47946,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1575), 1, + ACTIONS(1674), 1, sym_escapeSequence5, - ACTIONS(1577), 1, + ACTIONS(1676), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1678), 1, sym__sl5_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(662), 1, + STATE(683), 1, aux_sym_slStringLiteralExpr_repeat6, - STATE(695), 2, + STATE(755), 2, sym_shebangComment, sym_lineComment, - STATE(792), 2, + STATE(838), 2, sym_slStringLiteralPart5, sym_stringInterpolation5, - [26158] = 11, + [28441] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1620), 1, + sym_escapeSequence3, + ACTIONS(1622), 1, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + ACTIONS(1624), 1, + sym__ml3_string_chars, + ACTIONS(1646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + STATE(701), 1, + aux_sym_mlStringLiteralExpr_repeat4, + STATE(756), 2, + sym_shebangComment, + sym_lineComment, + STATE(866), 2, + sym_mlStringLiteralPart3, + sym_stringInterpolation3, + [28477] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44641,23 +47996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1581), 1, + ACTIONS(1680), 1, sym_escapeSequence6, - ACTIONS(1583), 1, + ACTIONS(1682), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1585), 1, + ACTIONS(1684), 1, sym__sl6_string_chars, - ACTIONS(1686), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(663), 1, + STATE(684), 1, aux_sym_slStringLiteralExpr_repeat7, - STATE(696), 2, + STATE(757), 2, sym_shebangComment, sym_lineComment, - STATE(794), 2, + STATE(853), 2, sym_slStringLiteralPart6, sym_stringInterpolation6, - [26194] = 11, + [28513] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44666,23 +48021,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1589), 1, + ACTIONS(1606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1688), 1, sym_escapeSequence, - ACTIONS(1591), 1, + ACTIONS(1690), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1593), 1, + ACTIONS(1692), 1, sym__ml_string_chars, - ACTIONS(1688), 1, + STATE(685), 1, + aux_sym_mlStringLiteralExpr_repeat1, + STATE(758), 2, + sym_shebangComment, + sym_lineComment, + STATE(857), 2, + sym_mlStringLiteralPart, + sym_stringInterpolation, + [28549] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1644), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(706), 1, + ACTIONS(1688), 1, + sym_escapeSequence, + ACTIONS(1690), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(1692), 1, + sym__ml_string_chars, + STATE(692), 1, aux_sym_mlStringLiteralExpr_repeat1, - STATE(697), 2, + STATE(759), 2, sym_shebangComment, sym_lineComment, - STATE(802), 2, + STATE(857), 2, sym_mlStringLiteralPart, sym_stringInterpolation, - [26230] = 11, + [28585] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44691,23 +48071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1595), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1597), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1688), 1, + ACTIONS(1644), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(707), 1, + STATE(693), 1, aux_sym_mlStringLiteralExpr_repeat2, - STATE(698), 2, + STATE(760), 2, sym_shebangComment, sym_lineComment, - STATE(757), 2, + STATE(860), 2, sym_mlStringLiteralPart1, sym_stringInterpolation1, - [26266] = 11, + [28621] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44716,23 +48096,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1612), 1, - sym_escapeSequence2, - ACTIONS(1614), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1616), 1, - sym__ml2_string_chars, - ACTIONS(1688), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(708), 1, - aux_sym_mlStringLiteralExpr_repeat3, - STATE(699), 2, + ACTIONS(1849), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND, + ACTIONS(1851), 1, + sym_escapeSequence4, + ACTIONS(1854), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1857), 1, + sym__sl4_string_chars, + STATE(832), 2, + sym_slStringLiteralPart4, + sym_stringInterpolation4, + STATE(761), 3, sym_shebangComment, sym_lineComment, - STATE(759), 2, - sym_mlStringLiteralPart2, - sym_stringInterpolation2, - [26302] = 11, + aux_sym_slStringLiteralExpr_repeat5, + [28655] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44741,23 +48120,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1618), 1, + ACTIONS(1662), 1, sym_escapeSequence3, - ACTIONS(1620), 1, + ACTIONS(1664), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1622), 1, - sym__ml3_string_chars, - ACTIONS(1688), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(709), 1, - aux_sym_mlStringLiteralExpr_repeat4, - STATE(700), 2, + ACTIONS(1666), 1, + sym__sl3_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE_POUND_POUND_POUND, + STATE(734), 1, + aux_sym_slStringLiteralExpr_repeat4, + STATE(762), 2, sym_shebangComment, sym_lineComment, - STATE(762), 2, - sym_mlStringLiteralPart3, + STATE(867), 2, + sym_slStringLiteralPart3, sym_stringInterpolation3, - [26338] = 11, + [28691] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44766,23 +48145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1624), 1, + ACTIONS(1668), 1, sym_escapeSequence4, - ACTIONS(1626), 1, + ACTIONS(1670), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1628), 1, - sym__ml4_string_chars, - ACTIONS(1688), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(710), 1, - aux_sym_mlStringLiteralExpr_repeat5, - STATE(701), 2, + ACTIONS(1672), 1, + sym__sl4_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND, + STATE(736), 1, + aux_sym_slStringLiteralExpr_repeat5, + STATE(763), 2, sym_shebangComment, sym_lineComment, - STATE(764), 2, - sym_mlStringLiteralPart4, + STATE(832), 2, + sym_slStringLiteralPart4, sym_stringInterpolation4, - [26374] = 11, + [28727] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44791,23 +48170,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1640), 1, + ACTIONS(1674), 1, sym_escapeSequence5, - ACTIONS(1642), 1, + ACTIONS(1676), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1644), 1, - sym__ml5_string_chars, - ACTIONS(1688), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(711), 1, - aux_sym_mlStringLiteralExpr_repeat6, - STATE(702), 2, + ACTIONS(1678), 1, + sym__sl5_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, + STATE(739), 1, + aux_sym_slStringLiteralExpr_repeat6, + STATE(764), 2, sym_shebangComment, sym_lineComment, - STATE(777), 2, - sym_mlStringLiteralPart5, + STATE(838), 2, + sym_slStringLiteralPart5, sym_stringInterpolation5, - [26410] = 11, + [28763] = 8, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(268), 1, + anon_sym_COLON, + STATE(806), 1, + sym_typeAnnotation, + STATE(765), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(266), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [28793] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1680), 1, + sym_escapeSequence6, + ACTIONS(1682), 1, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + ACTIONS(1684), 1, + sym__sl6_string_chars, + ACTIONS(1812), 1, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + STATE(743), 1, + aux_sym_slStringLiteralExpr_repeat7, + STATE(766), 2, + sym_shebangComment, + sym_lineComment, + STATE(853), 2, + sym_slStringLiteralPart6, + sym_stringInterpolation6, + [28829] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1614), 1, + sym_escapeSequence2, + ACTIONS(1616), 1, + anon_sym_BSLASH_POUND_POUND_LPAREN, + ACTIONS(1618), 1, + sym__ml2_string_chars, + ACTIONS(1788), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + STATE(694), 1, + aux_sym_mlStringLiteralExpr_repeat3, + STATE(767), 2, + sym_shebangComment, + sym_lineComment, + STATE(863), 2, + sym_mlStringLiteralPart2, + sym_stringInterpolation2, + [28865] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44816,23 +48267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1646), 1, - sym_escapeSequence6, - ACTIONS(1648), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1650), 1, - sym__ml6_string_chars, - ACTIONS(1688), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(615), 1, - aux_sym_mlStringLiteralExpr_repeat7, - STATE(703), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_COLON, + ACTIONS(1860), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(546), 1, + sym_typeAnnotation, + STATE(590), 1, + aux_sym_classProperty_repeat1, + STATE(768), 2, sym_shebangComment, sym_lineComment, - STATE(779), 2, - sym_mlStringLiteralPart6, - sym_stringInterpolation6, - [26446] = 11, + [28900] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44841,23 +48291,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1640), 1, - sym_escapeSequence5, - ACTIONS(1642), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1644), 1, - sym__ml5_string_chars, - ACTIONS(1680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(646), 1, - aux_sym_mlStringLiteralExpr_repeat6, - STATE(704), 2, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1862), 1, + anon_sym_COMMA, + ACTIONS(1864), 1, + anon_sym_RPAREN, + STATE(903), 1, + aux_sym_functionLiteralType_repeat1, + STATE(769), 2, sym_shebangComment, sym_lineComment, - STATE(777), 2, - sym_mlStringLiteralPart5, - sym_stringInterpolation5, - [26482] = 11, + [28935] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44866,23 +48315,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1646), 1, - sym_escapeSequence6, - ACTIONS(1648), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1650), 1, - sym__ml6_string_chars, - ACTIONS(1680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(661), 1, - aux_sym_mlStringLiteralExpr_repeat7, - STATE(705), 2, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1868), 1, + anon_sym_GT, + STATE(879), 1, + aux_sym_functionLiteralType_repeat1, + STATE(770), 2, sym_shebangComment, sym_lineComment, - STATE(779), 2, - sym_mlStringLiteralPart6, - sym_stringInterpolation6, - [26518] = 10, + [28970] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44891,22 +48339,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1690), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1692), 1, - sym_escapeSequence, - ACTIONS(1695), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(1698), 1, - sym__ml_string_chars, - STATE(802), 2, - sym_mlStringLiteralPart, - sym_stringInterpolation, - STATE(706), 3, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1870), 1, + anon_sym_COMMA, + ACTIONS(1872), 1, + anon_sym_GT, + STATE(884), 1, + aux_sym_functionLiteralType_repeat1, + STATE(771), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat1, - [26552] = 10, + [29005] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44915,22 +48363,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1701), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - ACTIONS(1703), 1, - sym_escapeSequence1, - ACTIONS(1706), 1, - anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1709), 1, - sym__ml1_string_chars, - STATE(757), 2, - sym_mlStringLiteralPart1, - sym_stringInterpolation1, - STATE(707), 3, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1874), 1, + anon_sym_COMMA, + ACTIONS(1876), 1, + anon_sym_RPAREN, + STATE(893), 1, + aux_sym_functionLiteralType_repeat1, + STATE(772), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat2, - [26586] = 10, + [29040] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44939,22 +48387,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1712), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - ACTIONS(1714), 1, - sym_escapeSequence2, - ACTIONS(1717), 1, - anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1720), 1, - sym__ml2_string_chars, - STATE(759), 2, - sym_mlStringLiteralPart2, - sym_stringInterpolation2, - STATE(708), 3, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_COLON, + ACTIONS(1367), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(575), 1, + sym_typeAnnotation, + STATE(593), 1, + aux_sym_classProperty_repeat1, + STATE(773), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat3, - [26620] = 10, + [29075] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44963,22 +48411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1723), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - ACTIONS(1725), 1, - sym_escapeSequence3, - ACTIONS(1728), 1, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1731), 1, - sym__ml3_string_chars, - STATE(762), 2, - sym_mlStringLiteralPart3, - sym_stringInterpolation3, - STATE(709), 3, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1878), 1, + anon_sym_COMMA, + ACTIONS(1880), 1, + anon_sym_GT, + STATE(889), 1, + aux_sym_functionLiteralType_repeat1, + STATE(774), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat4, - [26654] = 10, + [29110] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44987,22 +48435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1734), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1736), 1, - sym_escapeSequence4, - ACTIONS(1739), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1742), 1, - sym__ml4_string_chars, - STATE(764), 2, - sym_mlStringLiteralPart4, - sym_stringInterpolation4, - STATE(710), 3, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_COLON, + ACTIONS(1377), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(548), 1, + sym_typeAnnotation, + STATE(588), 1, + aux_sym_classProperty_repeat1, + STATE(775), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat5, - [26688] = 10, + [29145] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45011,22 +48459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1745), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1747), 1, - sym_escapeSequence5, - ACTIONS(1750), 1, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1753), 1, - sym__ml5_string_chars, - STATE(777), 2, - sym_mlStringLiteralPart5, - sym_stringInterpolation5, - STATE(711), 3, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1882), 1, + anon_sym_COMMA, + ACTIONS(1884), 1, + anon_sym_RPAREN, + STATE(881), 1, + aux_sym_functionLiteralType_repeat1, + STATE(776), 2, sym_shebangComment, sym_lineComment, - aux_sym_mlStringLiteralExpr_repeat6, - [26722] = 11, + [29180] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45035,23 +48483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1549), 1, - anon_sym_DQUOTE, - ACTIONS(1632), 1, - sym_escapeSequence, - ACTIONS(1634), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(1636), 1, - sym__sl_string_chars, - STATE(616), 1, - aux_sym_slStringLiteralExpr_repeat1, - STATE(712), 2, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1886), 1, + anon_sym_COMMA, + ACTIONS(1888), 1, + anon_sym_GT, + STATE(874), 1, + aux_sym_functionLiteralType_repeat1, + STATE(777), 2, sym_shebangComment, sym_lineComment, - STATE(768), 2, - sym_slStringLiteralPart, - sym_stringInterpolation, - [26758] = 11, + [29215] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45060,22 +48507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(268), 1, - anon_sym_COLON, - ACTIONS(1275), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(522), 1, - sym_typeAnnotation, - STATE(535), 1, - aux_sym_classProperty_repeat1, - STATE(713), 2, + ACTIONS(1043), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, + anon_sym_PIPE, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1890), 1, + anon_sym_COMMA, + ACTIONS(1892), 1, + anon_sym_RPAREN, + STATE(902), 1, + aux_sym_functionLiteralType_repeat1, + STATE(778), 2, sym_shebangComment, sym_lineComment, - [26793] = 11, + [29250] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45088,18 +48535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(268), 1, anon_sym_COLON, - ACTIONS(1235), 1, + ACTIONS(1894), 1, anon_sym_EQ, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(509), 1, - sym_typeAnnotation, - STATE(537), 1, + STATE(232), 1, aux_sym_classProperty_repeat1, - STATE(714), 2, + STATE(962), 1, + sym_typeAnnotation, + STATE(779), 2, sym_shebangComment, sym_lineComment, - [26828] = 11, + [29285] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45108,22 +48555,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(1043), 1, anon_sym_QMARK, - ACTIONS(989), 1, + ACTIONS(1045), 1, anon_sym_PIPE, - ACTIONS(1756), 1, + ACTIONS(1047), 1, + sym__open_argument_paren, + ACTIONS(1896), 1, anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(835), 1, + ACTIONS(1898), 1, + anon_sym_GT, + STATE(895), 1, aux_sym_functionLiteralType_repeat1, - STATE(715), 2, + STATE(780), 2, sym_shebangComment, sym_lineComment, - [26863] = 11, + [29320] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45132,22 +48579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(1043), 1, anon_sym_QMARK, - ACTIONS(989), 1, + ACTIONS(1045), 1, anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1760), 1, - anon_sym_GT, - STATE(839), 1, - aux_sym_functionLiteralType_repeat1, - STATE(716), 2, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(781), 2, sym_shebangComment, sym_lineComment, - [26898] = 11, + ACTIONS(1900), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + [29351] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45160,18 +48605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(268), 1, anon_sym_COLON, - ACTIONS(1762), 1, + ACTIONS(1353), 1, anon_sym_EQ, - STATE(212), 1, + STATE(230), 1, sym_objectBody, - STATE(490), 1, + STATE(552), 1, sym_typeAnnotation, - STATE(525), 1, + STATE(597), 1, aux_sym_classProperty_repeat1, - STATE(717), 2, + STATE(782), 2, sym_shebangComment, sym_lineComment, - [26933] = 9, + [29386] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45180,20 +48625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(718), 2, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1902), 1, + anon_sym_DQUOTE, + ACTIONS(1904), 1, + sym_escapeSequence, + STATE(800), 1, + aux_sym_stringConstant_repeat1, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(783), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1764), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - [26964] = 11, + [29418] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45202,22 +48647,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(881), 1, + anon_sym_LBRACE, + ACTIONS(1043), 1, anon_sym_QMARK, - ACTIONS(989), 1, + ACTIONS(1045), 1, anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1766), 1, - anon_sym_GT, - STATE(815), 1, - aux_sym_functionLiteralType_repeat1, - STATE(719), 2, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(275), 1, + sym_objectBody, + STATE(784), 2, sym_shebangComment, sym_lineComment, - [26999] = 11, + [29450] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45226,22 +48669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1768), 1, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + ACTIONS(1908), 1, anon_sym_RPAREN, - STATE(840), 1, - aux_sym_functionLiteralType_repeat1, - STATE(720), 2, + STATE(807), 1, + sym_typedIdentifier, + STATE(901), 1, + sym__parameter, + STATE(785), 2, sym_shebangComment, sym_lineComment, - [27034] = 11, + [29482] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45250,22 +48691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1770), 1, - anon_sym_GT, - STATE(812), 1, - aux_sym_functionLiteralType_repeat1, - STATE(721), 2, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1904), 1, + sym_escapeSequence, + ACTIONS(1910), 1, + anon_sym_DQUOTE, + STATE(797), 1, + aux_sym_stringConstant_repeat1, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(786), 2, sym_shebangComment, sym_lineComment, - [27069] = 11, + [29514] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45274,22 +48713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(1037), 1, + anon_sym_LBRACE, + ACTIONS(1043), 1, anon_sym_QMARK, - ACTIONS(989), 1, + ACTIONS(1045), 1, anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1772), 1, - anon_sym_RPAREN, - STATE(844), 1, - aux_sym_functionLiteralType_repeat1, - STATE(722), 2, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(386), 1, + sym_objectBody, + STATE(787), 2, sym_shebangComment, sym_lineComment, - [27104] = 11, + [29546] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45298,22 +48735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(1043), 1, anon_sym_QMARK, - ACTIONS(989), 1, + ACTIONS(1045), 1, anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1774), 1, - anon_sym_GT, - STATE(822), 1, - aux_sym_functionLiteralType_repeat1, - STATE(723), 2, + ACTIONS(1047), 1, + sym__open_argument_paren, + STATE(56), 1, + sym_objectBody, + STATE(788), 2, sym_shebangComment, sym_lineComment, - [27139] = 11, + [29578] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45322,22 +48757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1776), 1, - anon_sym_GT, - STATE(826), 1, - aux_sym_functionLiteralType_repeat1, - STATE(724), 2, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1904), 1, + sym_escapeSequence, + ACTIONS(1912), 1, + anon_sym_DQUOTE, + STATE(793), 1, + aux_sym_stringConstant_repeat1, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(789), 2, sym_shebangComment, sym_lineComment, - [27174] = 11, + [29610] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45346,22 +48779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(268), 1, - anon_sym_COLON, - ACTIONS(1778), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(213), 1, - aux_sym_classProperty_repeat1, - STATE(878), 1, - sym_typeAnnotation, - STATE(725), 2, + ACTIONS(1654), 1, + sym__sl1_string_chars, + ACTIONS(1910), 1, + anon_sym_DQUOTE_POUND, + ACTIONS(1914), 1, + sym_escapeSequence1, + STATE(798), 1, + aux_sym_stringConstant_repeat2, + STATE(894), 1, + sym_slStringLiteralPart1, + STATE(790), 2, sym_shebangComment, sym_lineComment, - [27209] = 11, + [29642] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45370,22 +48801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1780), 1, - anon_sym_RPAREN, - STATE(833), 1, - aux_sym_functionLiteralType_repeat1, - STATE(726), 2, + ACTIONS(1654), 1, + sym__sl1_string_chars, + ACTIONS(1912), 1, + anon_sym_DQUOTE_POUND, + ACTIONS(1914), 1, + sym_escapeSequence1, + STATE(794), 1, + aux_sym_stringConstant_repeat2, + STATE(894), 1, + sym_slStringLiteralPart1, + STATE(791), 2, sym_shebangComment, sym_lineComment, - [27244] = 11, + [29674] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45394,22 +48823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(268), 1, - anon_sym_COLON, - ACTIONS(1259), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(483), 1, - sym_typeAnnotation, - STATE(544), 1, - aux_sym_classProperty_repeat1, - STATE(727), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(613), 1, + anon_sym_RPAREN, + ACTIONS(1906), 1, + sym_identifier, + STATE(807), 1, + sym_typedIdentifier, + STATE(906), 1, + sym__parameter, + STATE(792), 2, sym_shebangComment, sym_lineComment, - [27279] = 10, + [29706] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45418,20 +48845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1782), 1, - anon_sym_DQUOTE, - ACTIONS(1784), 1, + ACTIONS(1904), 1, sym_escapeSequence, - STATE(736), 1, + ACTIONS(1916), 1, + anon_sym_DQUOTE, + STATE(797), 1, aux_sym_stringConstant_repeat1, - STATE(823), 1, + STATE(883), 1, sym_slStringLiteralPart, - STATE(728), 2, + STATE(793), 2, sym_shebangComment, sym_lineComment, - [27311] = 6, + [29738] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45440,16 +48867,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(729), 2, + ACTIONS(1654), 1, + sym__sl1_string_chars, + ACTIONS(1914), 1, + sym_escapeSequence1, + ACTIONS(1916), 1, + anon_sym_DQUOTE_POUND, + STATE(798), 1, + aux_sym_stringConstant_repeat2, + STATE(894), 1, + sym_slStringLiteralPart1, + STATE(794), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1786), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [27335] = 10, + [29770] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45458,20 +48889,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(833), 1, - anon_sym_LBRACE, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(255), 1, - sym_objectBody, - STATE(730), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_DASH_GT, + STATE(807), 1, + sym_typedIdentifier, + STATE(901), 1, + sym__parameter, + STATE(795), 2, sym_shebangComment, sym_lineComment, - [27367] = 10, + [29802] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45480,20 +48911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1784), 1, + ACTIONS(1904), 1, sym_escapeSequence, - ACTIONS(1788), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - STATE(738), 1, + STATE(786), 1, aux_sym_stringConstant_repeat1, - STATE(823), 1, + STATE(883), 1, sym_slStringLiteralPart, - STATE(731), 2, + STATE(796), 2, sym_shebangComment, sym_lineComment, - [27399] = 6, + [29834] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45502,16 +48933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(732), 2, + ACTIONS(1922), 1, + anon_sym_DQUOTE, + ACTIONS(1924), 1, + sym_escapeSequence, + ACTIONS(1927), 1, + sym__sl_string_chars, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(797), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1790), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [27423] = 10, + aux_sym_stringConstant_repeat1, + [29864] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45520,20 +48954,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1792), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1794), 1, + ACTIONS(1932), 1, sym_escapeSequence1, - STATE(751), 1, - aux_sym_stringConstant_repeat2, - STATE(834), 1, + ACTIONS(1935), 1, + sym__sl1_string_chars, + STATE(894), 1, sym_slStringLiteralPart1, - STATE(733), 2, + STATE(798), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_stringConstant_repeat2, + [29894] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1904), 1, + sym_escapeSequence, + ACTIONS(1938), 1, + anon_sym_DQUOTE, + STATE(797), 1, + aux_sym_stringConstant_repeat1, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(799), 2, + sym_shebangComment, + sym_lineComment, + [29926] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1904), 1, + sym_escapeSequence, + ACTIONS(1940), 1, + anon_sym_DQUOTE, + STATE(797), 1, + aux_sym_stringConstant_repeat1, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(800), 2, sym_shebangComment, sym_lineComment, - [27455] = 10, + [29958] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45542,20 +49019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1782), 1, - anon_sym_DQUOTE_POUND, - ACTIONS(1794), 1, - sym_escapeSequence1, - STATE(737), 1, - aux_sym_stringConstant_repeat2, - STATE(834), 1, - sym_slStringLiteralPart1, - STATE(734), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + ACTIONS(1942), 1, + anon_sym_DASH_GT, + STATE(807), 1, + sym_typedIdentifier, + STATE(901), 1, + sym__parameter, + STATE(801), 2, sym_shebangComment, sym_lineComment, - [27487] = 10, + [29990] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45564,20 +49041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1788), 1, - anon_sym_DQUOTE_POUND, - ACTIONS(1794), 1, - sym_escapeSequence1, - STATE(739), 1, - aux_sym_stringConstant_repeat2, - STATE(834), 1, - sym_slStringLiteralPart1, - STATE(735), 2, + ACTIONS(1944), 1, + sym_identifier, + ACTIONS(1948), 1, + anon_sym_GT, + STATE(917), 1, + sym_typeParameter, + ACTIONS(1946), 2, + anon_sym_in, + anon_sym_out, + STATE(802), 2, sym_shebangComment, sym_lineComment, - [27519] = 10, + [30020] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45586,20 +49062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1784), 1, + ACTIONS(1904), 1, sym_escapeSequence, - ACTIONS(1796), 1, + ACTIONS(1950), 1, anon_sym_DQUOTE, - STATE(753), 1, + STATE(799), 1, aux_sym_stringConstant_repeat1, - STATE(823), 1, + STATE(883), 1, sym_slStringLiteralPart, - STATE(736), 2, + STATE(803), 2, sym_shebangComment, sym_lineComment, - [27551] = 10, + [30052] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45608,42 +49084,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1794), 1, + ACTIONS(1914), 1, sym_escapeSequence1, - ACTIONS(1796), 1, + ACTIONS(1938), 1, anon_sym_DQUOTE_POUND, - STATE(755), 1, + STATE(798), 1, aux_sym_stringConstant_repeat2, - STATE(834), 1, + STATE(894), 1, sym_slStringLiteralPart1, - STATE(737), 2, - sym_shebangComment, - sym_lineComment, - [27583] = 10, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1784), 1, - sym_escapeSequence, - ACTIONS(1798), 1, - anon_sym_DQUOTE, - STATE(753), 1, - aux_sym_stringConstant_repeat1, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(738), 2, + STATE(804), 2, sym_shebangComment, sym_lineComment, - [27615] = 10, + [30084] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45652,20 +49106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1794), 1, + ACTIONS(1914), 1, sym_escapeSequence1, - ACTIONS(1798), 1, + ACTIONS(1940), 1, anon_sym_DQUOTE_POUND, - STATE(755), 1, + STATE(798), 1, aux_sym_stringConstant_repeat2, - STATE(834), 1, + STATE(894), 1, sym_slStringLiteralPart1, - STATE(739), 2, + STATE(805), 2, sym_shebangComment, sym_lineComment, - [27647] = 10, + [30116] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45674,20 +49128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1784), 1, - sym_escapeSequence, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - STATE(753), 1, - aux_sym_stringConstant_repeat1, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(740), 2, + STATE(806), 2, sym_shebangComment, sym_lineComment, - [27679] = 10, + ACTIONS(1952), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [30140] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45696,20 +49146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1784), 1, - sym_escapeSequence, - ACTIONS(1802), 1, - anon_sym_DQUOTE, - STATE(748), 1, - aux_sym_stringConstant_repeat1, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(741), 2, + STATE(807), 2, sym_shebangComment, sym_lineComment, - [27711] = 10, + ACTIONS(1954), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [30164] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45718,20 +49164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1784), 1, - sym_escapeSequence, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - STATE(744), 1, - aux_sym_stringConstant_repeat1, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(742), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + ACTIONS(1956), 1, + anon_sym_RPAREN, + STATE(807), 1, + sym_typedIdentifier, + STATE(901), 1, + sym__parameter, + STATE(808), 2, sym_shebangComment, sym_lineComment, - [27743] = 10, + [30196] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45740,20 +49186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1794), 1, + ACTIONS(1914), 1, sym_escapeSequence1, - ACTIONS(1804), 1, + ACTIONS(1950), 1, anon_sym_DQUOTE_POUND, - STATE(745), 1, + STATE(804), 1, aux_sym_stringConstant_repeat2, - STATE(834), 1, + STATE(894), 1, sym_slStringLiteralPart1, - STATE(743), 2, + STATE(809), 2, sym_shebangComment, sym_lineComment, - [27775] = 10, + [30228] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45762,20 +49208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1784), 1, - sym_escapeSequence, - ACTIONS(1806), 1, - anon_sym_DQUOTE, - STATE(753), 1, - aux_sym_stringConstant_repeat1, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(744), 2, + ACTIONS(1944), 1, + sym_identifier, + ACTIONS(1958), 1, + anon_sym_GT, + STATE(917), 1, + sym_typeParameter, + ACTIONS(1946), 2, + anon_sym_in, + anon_sym_out, + STATE(810), 2, sym_shebangComment, sym_lineComment, - [27807] = 10, + [30258] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45784,20 +49229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1794), 1, - sym_escapeSequence1, - ACTIONS(1806), 1, - anon_sym_DQUOTE_POUND, - STATE(755), 1, - aux_sym_stringConstant_repeat2, - STATE(834), 1, - sym_slStringLiteralPart1, - STATE(745), 2, + ACTIONS(1604), 1, + sym__sl_string_chars, + ACTIONS(1904), 1, + sym_escapeSequence, + ACTIONS(1960), 1, + anon_sym_DQUOTE, + STATE(814), 1, + aux_sym_stringConstant_repeat1, + STATE(883), 1, + sym_slStringLiteralPart, + STATE(811), 2, sym_shebangComment, sym_lineComment, - [27839] = 10, + [30290] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45806,20 +49251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(981), 1, - anon_sym_LBRACE, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(364), 1, - sym_objectBody, - STATE(746), 2, + ACTIONS(1654), 1, + sym__sl1_string_chars, + ACTIONS(1914), 1, + sym_escapeSequence1, + ACTIONS(1960), 1, + anon_sym_DQUOTE_POUND, + STATE(815), 1, + aux_sym_stringConstant_repeat2, + STATE(894), 1, + sym_slStringLiteralPart1, + STATE(812), 2, sym_shebangComment, sym_lineComment, - [27871] = 10, + [30322] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45828,20 +49273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1794), 1, - sym_escapeSequence1, - ACTIONS(1802), 1, + ACTIONS(1902), 1, anon_sym_DQUOTE_POUND, - STATE(749), 1, + ACTIONS(1914), 1, + sym_escapeSequence1, + STATE(805), 1, aux_sym_stringConstant_repeat2, - STATE(834), 1, + STATE(894), 1, sym_slStringLiteralPart1, - STATE(747), 2, + STATE(813), 2, sym_shebangComment, sym_lineComment, - [27903] = 10, + [30354] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45850,20 +49295,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1604), 1, sym__sl_string_chars, - ACTIONS(1784), 1, + ACTIONS(1904), 1, sym_escapeSequence, - ACTIONS(1808), 1, + ACTIONS(1962), 1, anon_sym_DQUOTE, - STATE(753), 1, + STATE(797), 1, aux_sym_stringConstant_repeat1, - STATE(823), 1, + STATE(883), 1, sym_slStringLiteralPart, - STATE(748), 2, + STATE(814), 2, sym_shebangComment, sym_lineComment, - [27935] = 10, + [30386] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45872,20 +49317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, + ACTIONS(1654), 1, sym__sl1_string_chars, - ACTIONS(1794), 1, + ACTIONS(1914), 1, sym_escapeSequence1, - ACTIONS(1808), 1, + ACTIONS(1962), 1, anon_sym_DQUOTE_POUND, - STATE(755), 1, + STATE(798), 1, aux_sym_stringConstant_repeat2, - STATE(834), 1, + STATE(894), 1, sym_slStringLiteralPart1, - STATE(749), 2, + STATE(815), 2, sym_shebangComment, sym_lineComment, - [27967] = 10, + [30418] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45894,20 +49339,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(983), 1, - sym__open_argument_paren, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(989), 1, - anon_sym_PIPE, - STATE(55), 1, - sym_objectBody, - STATE(750), 2, + ACTIONS(1654), 1, + sym__sl1_string_chars, + ACTIONS(1914), 1, + sym_escapeSequence1, + ACTIONS(1920), 1, + anon_sym_DQUOTE_POUND, + STATE(790), 1, + aux_sym_stringConstant_repeat2, + STATE(894), 1, + sym_slStringLiteralPart1, + STATE(816), 2, sym_shebangComment, sym_lineComment, - [27999] = 10, + [30450] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45916,20 +49361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1555), 1, - sym__sl1_string_chars, - ACTIONS(1794), 1, - sym_escapeSequence1, - ACTIONS(1800), 1, - anon_sym_DQUOTE_POUND, - STATE(755), 1, - aux_sym_stringConstant_repeat2, - STATE(834), 1, - sym_slStringLiteralPart1, - STATE(751), 2, + STATE(817), 2, sym_shebangComment, sym_lineComment, - [28031] = 10, + ACTIONS(1964), 4, + sym__ml_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escapeSequence, + anon_sym_BSLASH_LPAREN, + [30473] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45938,20 +49378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, - sym__sl_string_chars, - ACTIONS(1784), 1, - sym_escapeSequence, - ACTIONS(1792), 1, - anon_sym_DQUOTE, - STATE(740), 1, - aux_sym_stringConstant_repeat1, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(752), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + STATE(807), 1, + sym_typedIdentifier, + STATE(994), 1, + sym__parameter, + STATE(818), 2, sym_shebangComment, sym_lineComment, - [28063] = 9, + [30502] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45960,19 +49398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, - anon_sym_DQUOTE, - ACTIONS(1812), 1, - sym_escapeSequence, - ACTIONS(1815), 1, - sym__sl_string_chars, - STATE(823), 1, - sym_slStringLiteralPart, - STATE(753), 3, + STATE(819), 2, sym_shebangComment, sym_lineComment, - aux_sym_stringConstant_repeat1, - [28093] = 10, + ACTIONS(1966), 4, + sym__sl_string_chars, + anon_sym_DQUOTE, + sym_escapeSequence, + anon_sym_BSLASH_LPAREN, + [30525] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45981,20 +49415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(61), 1, - sym_blankIdentifier, - ACTIONS(613), 1, - anon_sym_RPAREN, - ACTIONS(1818), 1, - sym_identifier, - STATE(732), 1, - sym_typedIdentifier, - STATE(817), 1, - sym__parameter, - STATE(754), 2, + STATE(820), 2, sym_shebangComment, sym_lineComment, - [28125] = 9, + ACTIONS(1968), 4, + sym__sl1_string_chars, + anon_sym_DQUOTE_POUND, + sym_escapeSequence1, + anon_sym_BSLASH_POUND_LPAREN, + [30548] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46003,19 +49432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1820), 1, - anon_sym_DQUOTE_POUND, - ACTIONS(1822), 1, - sym_escapeSequence1, - ACTIONS(1825), 1, - sym__sl1_string_chars, - STATE(834), 1, - sym_slStringLiteralPart1, - STATE(755), 3, + STATE(821), 2, sym_shebangComment, sym_lineComment, - aux_sym_stringConstant_repeat2, - [28155] = 9, + ACTIONS(1970), 4, + sym__sl2_string_chars, + anon_sym_DQUOTE_POUND_POUND, + sym_escapeSequence2, + anon_sym_BSLASH_POUND_POUND_LPAREN, + [30571] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46024,18 +49449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(1828), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(216), 1, - aux_sym_classProperty_repeat1, - STATE(756), 2, + STATE(822), 2, sym_shebangComment, sym_lineComment, - [28184] = 6, + ACTIONS(1972), 4, + sym__sl3_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND, + sym_escapeSequence3, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + [30594] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46044,15 +49466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(757), 2, + STATE(823), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1830), 4, - sym__ml1_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - sym_escapeSequence1, - anon_sym_BSLASH_POUND_LPAREN, - [28207] = 6, + ACTIONS(1974), 4, + sym__sl4_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND, + sym_escapeSequence4, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + [30617] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46061,15 +49483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(758), 2, + STATE(824), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1832), 4, - sym__ml2_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - sym_escapeSequence2, - anon_sym_BSLASH_POUND_POUND_LPAREN, - [28230] = 6, + ACTIONS(1976), 4, + sym__sl5_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence5, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30640] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46078,15 +49500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(759), 2, + STATE(825), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1834), 4, - sym__ml2_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - sym_escapeSequence2, - anon_sym_BSLASH_POUND_POUND_LPAREN, - [28253] = 9, + ACTIONS(1978), 4, + sym__sl6_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence6, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30663] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46097,16 +49519,16 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(61), 1, sym_blankIdentifier, - ACTIONS(1818), 1, + ACTIONS(1906), 1, sym_identifier, - STATE(732), 1, + STATE(807), 1, sym_typedIdentifier, - STATE(866), 1, + STATE(916), 1, sym__parameter, - STATE(760), 2, + STATE(826), 2, sym_shebangComment, sym_lineComment, - [28282] = 6, + [30692] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46115,15 +49537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(761), 2, + STATE(827), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1836), 4, - sym__ml3_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - sym_escapeSequence3, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [28305] = 6, + ACTIONS(1980), 4, + sym__ml5_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence5, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30715] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46132,15 +49554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(762), 2, + STATE(828), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1838), 4, - sym__ml3_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - sym_escapeSequence3, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [28328] = 6, + ACTIONS(1982), 4, + sym__sl4_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND, + sym_escapeSequence4, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + [30738] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46149,15 +49571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(763), 2, + ACTIONS(1984), 1, + anon_sym_COMMA, + ACTIONS(1987), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + STATE(829), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1840), 4, - sym__ml4_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - sym_escapeSequence4, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [28351] = 6, + aux_sym_objectBodyParameters_repeat1, + [30763] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46166,15 +49589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(764), 2, + STATE(830), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1842), 4, - sym__ml4_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - sym_escapeSequence4, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [28374] = 6, + ACTIONS(1989), 4, + sym__ml6_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence6, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30786] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46183,15 +49606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(765), 2, + STATE(831), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1844), 4, - sym__ml5_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence5, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [28397] = 6, + ACTIONS(1991), 4, + sym__ml6_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence6, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30809] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46200,15 +49623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(766), 2, + STATE(832), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1846), 4, - sym__ml1_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - sym_escapeSequence1, - anon_sym_BSLASH_POUND_LPAREN, - [28420] = 9, + ACTIONS(1993), 4, + sym__sl4_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND, + sym_escapeSequence4, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + [30832] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46217,18 +49640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1181), 1, - anon_sym_LT, - ACTIONS(1848), 1, - anon_sym_LPAREN, - STATE(530), 1, - sym_parameterList, - STATE(854), 1, - sym_typeParameterList, - STATE(767), 2, + STATE(833), 2, sym_shebangComment, sym_lineComment, - [28449] = 6, + ACTIONS(1995), 4, + sym__sl1_string_chars, + anon_sym_DQUOTE_POUND, + sym_escapeSequence1, + anon_sym_BSLASH_POUND_LPAREN, + [30855] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46237,15 +49657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(768), 2, + ACTIONS(1245), 1, + anon_sym_LT, + ACTIONS(1997), 1, + anon_sym_LPAREN, + STATE(598), 1, + sym_parameterList, + STATE(920), 1, + sym_typeParameterList, + STATE(834), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1850), 4, - sym__sl_string_chars, - anon_sym_DQUOTE, - sym_escapeSequence, - anon_sym_BSLASH_LPAREN, - [28472] = 6, + [30884] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46254,15 +49677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(769), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + STATE(807), 1, + sym_typedIdentifier, + STATE(993), 1, + sym__parameter, + STATE(835), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1852), 4, - sym__sl_string_chars, - anon_sym_DQUOTE, - sym_escapeSequence, - anon_sym_BSLASH_LPAREN, - [28495] = 6, + [30913] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46271,15 +49697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(770), 2, + STATE(836), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1854), 4, - sym__sl1_string_chars, - anon_sym_DQUOTE_POUND, - sym_escapeSequence1, - anon_sym_BSLASH_POUND_LPAREN, - [28518] = 8, + ACTIONS(1999), 4, + sym__sl5_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence5, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30936] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46288,17 +49714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1856), 1, - sym_identifier, - STATE(847), 1, - sym_typeParameter, - ACTIONS(1858), 2, - anon_sym_in, - anon_sym_out, - STATE(771), 2, + STATE(837), 2, sym_shebangComment, sym_lineComment, - [28545] = 6, + ACTIONS(2001), 4, + sym__sl_string_chars, + anon_sym_DQUOTE, + sym_escapeSequence, + anon_sym_BSLASH_LPAREN, + [30959] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46307,15 +49731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(772), 2, + STATE(838), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1860), 4, - sym__sl2_string_chars, - anon_sym_DQUOTE_POUND_POUND, - sym_escapeSequence2, - anon_sym_BSLASH_POUND_POUND_LPAREN, - [28568] = 6, + ACTIONS(2003), 4, + sym__sl5_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence5, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + [30982] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46324,15 +49748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(773), 2, + ACTIONS(1245), 1, + anon_sym_LT, + ACTIONS(1997), 1, + anon_sym_LPAREN, + STATE(596), 1, + sym_parameterList, + STATE(922), 1, + sym_typeParameterList, + STATE(839), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1862), 4, - sym__sl2_string_chars, - anon_sym_DQUOTE_POUND_POUND, - sym_escapeSequence2, - anon_sym_BSLASH_POUND_POUND_LPAREN, - [28591] = 6, + [31011] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46341,15 +49768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(774), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + STATE(807), 1, + sym_typedIdentifier, + STATE(901), 1, + sym__parameter, + STATE(840), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1864), 4, - sym__sl3_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND, - sym_escapeSequence3, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [28614] = 9, + [31040] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46358,18 +49788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(61), 1, - sym_blankIdentifier, - ACTIONS(1818), 1, - sym_identifier, - STATE(732), 1, - sym_typedIdentifier, - STATE(871), 1, - sym__parameter, - STATE(775), 2, + STATE(841), 2, sym_shebangComment, sym_lineComment, - [28643] = 6, + ACTIONS(2005), 4, + sym__sl1_string_chars, + anon_sym_DQUOTE_POUND, + sym_escapeSequence1, + anon_sym_BSLASH_POUND_LPAREN, + [31063] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46378,15 +49805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(776), 2, + ACTIONS(2007), 1, + anon_sym_COMMA, + ACTIONS(1900), 2, + anon_sym_RPAREN, + anon_sym_GT, + STATE(842), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1866), 4, - sym__sl3_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND, - sym_escapeSequence3, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [28666] = 6, + aux_sym_functionLiteralType_repeat1, + [31088] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46395,15 +49823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(777), 2, + STATE(843), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1868), 4, - sym__ml5_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence5, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [28689] = 6, + ACTIONS(2010), 4, + sym__sl6_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence6, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + [31111] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46412,15 +49840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(778), 2, + STATE(844), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1870), 4, - sym__ml6_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence6, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [28712] = 6, + ACTIONS(1966), 4, + sym__ml_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escapeSequence, + anon_sym_BSLASH_LPAREN, + [31134] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46429,15 +49857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(779), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + STATE(807), 1, + sym_typedIdentifier, + STATE(954), 1, + sym__parameter, + STATE(845), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1872), 4, - sym__ml6_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence6, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [28735] = 6, + [31163] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46446,15 +49877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(780), 2, + STATE(846), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1874), 4, - sym__ml1_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - sym_escapeSequence1, - anon_sym_BSLASH_POUND_LPAREN, - [28758] = 6, + ACTIONS(1970), 4, + sym__ml2_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + sym_escapeSequence2, + anon_sym_BSLASH_POUND_POUND_LPAREN, + [31186] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46463,15 +49894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(781), 2, + STATE(847), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1846), 4, - sym__sl1_string_chars, - anon_sym_DQUOTE_POUND, - sym_escapeSequence1, - anon_sym_BSLASH_POUND_LPAREN, - [28781] = 6, + ACTIONS(1972), 4, + sym__ml3_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + sym_escapeSequence3, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + [31209] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46480,15 +49911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(782), 2, + STATE(848), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1876), 4, - sym__sl2_string_chars, - anon_sym_DQUOTE_POUND_POUND, - sym_escapeSequence2, - anon_sym_BSLASH_POUND_POUND_LPAREN, - [28804] = 6, + ACTIONS(1974), 4, + sym__ml4_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + sym_escapeSequence4, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + [31232] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46497,15 +49928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(783), 2, + STATE(849), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1878), 4, - sym__sl3_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND, - sym_escapeSequence3, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [28827] = 6, + ACTIONS(1976), 4, + sym__ml5_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence5, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + [31255] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46514,15 +49945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(784), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(2012), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(234), 1, + aux_sym_classProperty_repeat1, + STATE(850), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1880), 4, - sym__sl4_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - sym_escapeSequence4, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [28850] = 9, + [31284] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46531,18 +49965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(61), 1, - sym_blankIdentifier, - ACTIONS(1818), 1, - sym_identifier, - STATE(732), 1, - sym_typedIdentifier, - STATE(829), 1, - sym__parameter, - STATE(785), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + ACTIONS(2014), 1, + anon_sym_EQ, + STATE(230), 1, + sym_objectBody, + STATE(233), 1, + aux_sym_classProperty_repeat1, + STATE(851), 2, sym_shebangComment, sym_lineComment, - [28879] = 6, + [31313] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46551,15 +49985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(786), 2, + STATE(852), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1882), 4, - sym__sl5_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence5, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [28902] = 6, + ACTIONS(1978), 4, + sym__ml6_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence6, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, + [31336] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46568,15 +50002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(787), 2, + STATE(853), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1884), 4, + ACTIONS(2016), 4, sym__sl6_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [28925] = 7, + [31359] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46585,16 +50019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1886), 1, - anon_sym_COMMA, - ACTIONS(1889), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - STATE(788), 3, + ACTIONS(1944), 1, + sym_identifier, + STATE(897), 1, + sym_typeParameter, + ACTIONS(1946), 2, + anon_sym_in, + anon_sym_out, + STATE(854), 2, sym_shebangComment, sym_lineComment, - aux_sym_objectBodyParameters_repeat1, - [28950] = 6, + [31386] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46603,15 +50038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(789), 2, + STATE(855), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1891), 4, - sym__sl4_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - sym_escapeSequence4, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [28973] = 6, + ACTIONS(2018), 4, + sym__sl2_string_chars, + anon_sym_DQUOTE_POUND_POUND, + sym_escapeSequence2, + anon_sym_BSLASH_POUND_POUND_LPAREN, + [31409] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46620,15 +50055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(790), 2, + STATE(856), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1893), 4, - sym__sl4_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - sym_escapeSequence4, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [28996] = 6, + ACTIONS(2020), 4, + sym__sl2_string_chars, + anon_sym_DQUOTE_POUND_POUND, + sym_escapeSequence2, + anon_sym_BSLASH_POUND_POUND_LPAREN, + [31432] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46637,15 +50072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(791), 2, + STATE(857), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1895), 4, - sym__sl5_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence5, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [29019] = 6, + ACTIONS(2022), 4, + sym__ml_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escapeSequence, + anon_sym_BSLASH_LPAREN, + [31455] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46654,15 +50089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(792), 2, + ACTIONS(1944), 1, + sym_identifier, + STATE(917), 1, + sym_typeParameter, + ACTIONS(1946), 2, + anon_sym_in, + anon_sym_out, + STATE(858), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1897), 4, - sym__sl5_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence5, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [29042] = 6, + [31482] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46671,15 +50108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(793), 2, + STATE(859), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1899), 4, - sym__sl6_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence6, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [29065] = 6, + ACTIONS(2024), 4, + sym__ml1_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + sym_escapeSequence1, + anon_sym_BSLASH_POUND_LPAREN, + [31505] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46688,15 +50125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(794), 2, + STATE(860), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1901), 4, - sym__sl6_string_chars, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence6, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [29088] = 6, + ACTIONS(2026), 4, + sym__ml1_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + sym_escapeSequence1, + anon_sym_BSLASH_POUND_LPAREN, + [31528] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46705,15 +50142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(795), 2, + STATE(861), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1903), 4, - sym__ml_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2028), 4, + sym__sl_string_chars, + anon_sym_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [29111] = 6, + [31551] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46722,15 +50159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(796), 2, + STATE(862), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1905), 4, - sym__ml_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_escapeSequence, - anon_sym_BSLASH_LPAREN, - [29134] = 7, + ACTIONS(2030), 4, + sym__ml2_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + sym_escapeSequence2, + anon_sym_BSLASH_POUND_POUND_LPAREN, + [31574] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46739,16 +50176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1907), 1, - anon_sym_COMMA, - ACTIONS(1764), 2, - anon_sym_RPAREN, - anon_sym_GT, - STATE(797), 3, + STATE(863), 2, sym_shebangComment, sym_lineComment, - aux_sym_functionLiteralType_repeat1, - [29159] = 6, + ACTIONS(2032), 4, + sym__ml2_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, + sym_escapeSequence2, + anon_sym_BSLASH_POUND_POUND_LPAREN, + [31597] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46757,15 +50193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(798), 2, + STATE(864), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1878), 4, - sym__ml3_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + ACTIONS(2034), 4, + sym__sl3_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [29182] = 9, + [31620] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46774,18 +50210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(61), 1, - sym_blankIdentifier, - ACTIONS(1818), 1, - sym_identifier, - STATE(732), 1, - sym_typedIdentifier, - STATE(910), 1, - sym__parameter, - STATE(799), 2, + STATE(865), 2, sym_shebangComment, sym_lineComment, - [29211] = 6, + ACTIONS(2036), 4, + sym__ml3_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + sym_escapeSequence3, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + [31643] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46794,15 +50227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(800), 2, + STATE(866), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1880), 4, - sym__ml4_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - sym_escapeSequence4, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [29234] = 9, + ACTIONS(2038), 4, + sym__ml3_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, + sym_escapeSequence3, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + [31666] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46811,18 +50244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1181), 1, - anon_sym_LT, - ACTIONS(1848), 1, - anon_sym_LPAREN, - STATE(529), 1, - sym_parameterList, - STATE(856), 1, - sym_typeParameterList, - STATE(801), 2, + STATE(867), 2, sym_shebangComment, sym_lineComment, - [29263] = 6, + ACTIONS(2040), 4, + sym__sl3_string_chars, + anon_sym_DQUOTE_POUND_POUND_POUND, + sym_escapeSequence3, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, + [31689] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46831,15 +50261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(802), 2, + STATE(868), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1910), 4, - sym__ml_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_escapeSequence, - anon_sym_BSLASH_LPAREN, - [29286] = 6, + ACTIONS(2042), 4, + sym__ml4_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + sym_escapeSequence4, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + [31712] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46848,15 +50278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(803), 2, + STATE(869), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1912), 4, - sym__sl1_string_chars, - anon_sym_DQUOTE_POUND, - sym_escapeSequence1, - anon_sym_BSLASH_POUND_LPAREN, - [29309] = 6, + ACTIONS(2044), 4, + sym__ml4_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, + sym_escapeSequence4, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, + [31735] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46865,15 +50295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(804), 2, + ACTIONS(61), 1, + sym_blankIdentifier, + ACTIONS(1906), 1, + sym_identifier, + STATE(807), 1, + sym_typedIdentifier, + STATE(988), 1, + sym__parameter, + STATE(870), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1876), 4, - sym__ml2_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - sym_escapeSequence2, - anon_sym_BSLASH_POUND_POUND_LPAREN, - [29332] = 9, + [31764] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46882,18 +50315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - ACTIONS(1914), 1, - anon_sym_EQ, - STATE(212), 1, - sym_objectBody, - STATE(215), 1, - aux_sym_classProperty_repeat1, - STATE(805), 2, + STATE(871), 2, sym_shebangComment, sym_lineComment, - [29361] = 6, + ACTIONS(2046), 4, + sym__ml5_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, + sym_escapeSequence5, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, + [31787] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46902,15 +50332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(806), 2, + STATE(872), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1882), 4, - sym__ml5_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence5, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [29384] = 6, + ACTIONS(1968), 4, + sym__ml1_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, + sym_escapeSequence1, + anon_sym_BSLASH_POUND_LPAREN, + [31810] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46919,15 +50349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(807), 2, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2050), 1, + anon_sym_POUND_DQUOTE, + STATE(603), 1, + sym_stringConstant, + STATE(873), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1884), 4, - sym__ml6_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - sym_escapeSequence6, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [29407] = 9, + [31836] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46936,18 +50367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(61), 1, - sym_blankIdentifier, - ACTIONS(1818), 1, - sym_identifier, - STATE(732), 1, - sym_typedIdentifier, - STATE(923), 1, - sym__parameter, - STATE(808), 2, + ACTIONS(1275), 1, + anon_sym_GT, + ACTIONS(2052), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(874), 2, sym_shebangComment, sym_lineComment, - [29436] = 8, + [31862] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46956,17 +50385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1856), 1, - sym_identifier, - STATE(851), 1, - sym_typeParameter, - ACTIONS(1858), 2, - anon_sym_in, - anon_sym_out, - STATE(809), 2, + ACTIONS(655), 1, + anon_sym_RPAREN, + ACTIONS(2054), 1, + anon_sym_COMMA, + STATE(899), 1, + aux_sym_constrainedType_repeat1, + STATE(875), 2, sym_shebangComment, sym_lineComment, - [29463] = 9, + [31888] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46975,18 +50403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(61), 1, - sym_blankIdentifier, - ACTIONS(1818), 1, - sym_identifier, - STATE(732), 1, - sym_typedIdentifier, - STATE(929), 1, - sym__parameter, - STATE(810), 2, + ACTIONS(1245), 1, + anon_sym_LT, + ACTIONS(2056), 1, + anon_sym_EQ, + STATE(943), 1, + sym_typeParameterList, + STATE(876), 2, sym_shebangComment, sym_lineComment, - [29492] = 6, + [31914] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46995,15 +50421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(811), 2, + ACTIONS(665), 1, + anon_sym_RPAREN, + ACTIONS(2058), 1, + anon_sym_COMMA, + STATE(899), 1, + aux_sym_constrainedType_repeat1, + STATE(877), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1903), 4, - sym__sl_string_chars, - anon_sym_DQUOTE, - sym_escapeSequence, - anon_sym_BSLASH_LPAREN, - [29515] = 8, + [31940] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47012,16 +50439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, + ACTIONS(1956), 1, + anon_sym_RPAREN, + ACTIONS(2060), 1, anon_sym_COMMA, - ACTIONS(1916), 1, - anon_sym_GT, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(812), 2, + STATE(829), 1, + aux_sym_objectBodyParameters_repeat1, + STATE(878), 2, sym_shebangComment, sym_lineComment, - [29541] = 8, + [31966] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47030,16 +50457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, + ACTIONS(1277), 1, + anon_sym_GT, + ACTIONS(2062), 1, anon_sym_COMMA, - ACTIONS(1918), 1, - anon_sym_RPAREN, - STATE(820), 1, - aux_sym_constrainedType_repeat1, - STATE(813), 2, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(879), 2, sym_shebangComment, sym_lineComment, - [29567] = 8, + [31992] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47048,16 +50475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1181), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_EQ, - STATE(899), 1, - sym_typeParameterList, - STATE(814), 2, + ACTIONS(2064), 1, + anon_sym_COMMA, + ACTIONS(2066), 1, + anon_sym_DASH_GT, + STATE(886), 1, + aux_sym_objectBodyParameters_repeat1, + STATE(880), 2, sym_shebangComment, sym_lineComment, - [29593] = 8, + [32018] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47066,16 +50493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, + ACTIONS(1253), 1, + anon_sym_RPAREN, + ACTIONS(2068), 1, anon_sym_COMMA, - ACTIONS(1922), 1, - anon_sym_GT, - STATE(797), 1, + STATE(842), 1, aux_sym_functionLiteralType_repeat1, - STATE(815), 2, + STATE(881), 2, sym_shebangComment, sym_lineComment, - [29619] = 8, + [32044] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47084,16 +50511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(1924), 1, + ACTIONS(651), 1, anon_sym_RPAREN, - STATE(820), 1, + ACTIONS(2070), 1, + anon_sym_COMMA, + STATE(899), 1, aux_sym_constrainedType_repeat1, - STATE(816), 2, + STATE(882), 2, sym_shebangComment, sym_lineComment, - [29645] = 8, + [32070] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47102,16 +50529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1926), 1, - anon_sym_COMMA, - ACTIONS(1928), 1, - anon_sym_RPAREN, - STATE(836), 1, - aux_sym_objectBodyParameters_repeat1, - STATE(817), 2, + STATE(883), 2, sym_shebangComment, sym_lineComment, - [29671] = 8, + ACTIONS(2072), 3, + sym__sl_string_chars, + anon_sym_DQUOTE, + sym_escapeSequence, + [32092] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47120,16 +50545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1181), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_EQ, - STATE(924), 1, - sym_typeParameterList, - STATE(818), 2, + ACTIONS(1281), 1, + anon_sym_GT, + ACTIONS(2074), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(884), 2, sym_shebangComment, sym_lineComment, - [29697] = 8, + [32118] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47138,16 +50563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, + ACTIONS(2048), 1, anon_sym_DQUOTE, - ACTIONS(1934), 1, + ACTIONS(2050), 1, anon_sym_POUND_DQUOTE, - STATE(563), 1, + STATE(978), 1, sym_stringConstant, - STATE(819), 2, + STATE(885), 2, sym_shebangComment, sym_lineComment, - [29723] = 7, + [32144] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47156,15 +50581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(991), 1, - anon_sym_RPAREN, - ACTIONS(1936), 1, + ACTIONS(1942), 1, + anon_sym_DASH_GT, + ACTIONS(2076), 1, anon_sym_COMMA, - STATE(820), 3, + STATE(829), 1, + aux_sym_objectBodyParameters_repeat1, + STATE(886), 2, sym_shebangComment, sym_lineComment, - aux_sym_constrainedType_repeat1, - [29747] = 8, + [32170] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47173,16 +50599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(1939), 1, - anon_sym_RPAREN, - STATE(820), 1, - aux_sym_constrainedType_repeat1, - STATE(821), 2, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2050), 1, + anon_sym_POUND_DQUOTE, + STATE(602), 1, + sym_stringConstant, + STATE(887), 2, sym_shebangComment, sym_lineComment, - [29773] = 8, + [32196] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47191,16 +50617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1941), 1, - anon_sym_GT, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(822), 2, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2050), 1, + anon_sym_POUND_DQUOTE, + STATE(929), 1, + sym_stringConstant, + STATE(888), 2, sym_shebangComment, sym_lineComment, - [29799] = 6, + [32222] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47209,14 +50635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(823), 2, + ACTIONS(1265), 1, + anon_sym_GT, + ACTIONS(2078), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(889), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1943), 3, - sym__sl_string_chars, - anon_sym_DQUOTE, - sym_escapeSequence, - [29821] = 8, + [32248] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47225,16 +50653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(1945), 1, + ACTIONS(659), 1, anon_sym_RPAREN, - STATE(820), 1, + ACTIONS(2080), 1, + anon_sym_COMMA, + STATE(899), 1, aux_sym_constrainedType_repeat1, - STATE(824), 2, + STATE(890), 2, sym_shebangComment, sym_lineComment, - [29847] = 8, + [32274] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47243,16 +50671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1934), 1, - anon_sym_POUND_DQUOTE, - STATE(908), 1, - sym_stringConstant, - STATE(825), 2, + ACTIONS(645), 1, + anon_sym_RPAREN, + ACTIONS(2082), 1, + anon_sym_COMMA, + STATE(899), 1, + aux_sym_constrainedType_repeat1, + STATE(891), 2, sym_shebangComment, sym_lineComment, - [29873] = 8, + [32300] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47261,16 +50689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, + ACTIONS(663), 1, + anon_sym_RPAREN, + ACTIONS(2084), 1, anon_sym_COMMA, - ACTIONS(1947), 1, - anon_sym_GT, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(826), 2, + STATE(899), 1, + aux_sym_constrainedType_repeat1, + STATE(892), 2, sym_shebangComment, sym_lineComment, - [29899] = 8, + [32326] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47279,16 +50707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1934), 1, - anon_sym_POUND_DQUOTE, - STATE(884), 1, - sym_stringConstant, - STATE(827), 2, + ACTIONS(1285), 1, + anon_sym_RPAREN, + ACTIONS(2086), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(893), 2, sym_shebangComment, sym_lineComment, - [29925] = 8, + [32352] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47297,16 +50725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1926), 1, - anon_sym_COMMA, - ACTIONS(1949), 1, - anon_sym_DASH_GT, - STATE(843), 1, - aux_sym_objectBodyParameters_repeat1, - STATE(828), 2, + STATE(894), 2, sym_shebangComment, sym_lineComment, - [29951] = 6, + ACTIONS(2088), 3, + sym__sl1_string_chars, + anon_sym_DQUOTE_POUND, + sym_escapeSequence1, + [32374] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47315,14 +50741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(829), 2, + ACTIONS(1269), 1, + anon_sym_GT, + ACTIONS(2090), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(895), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1889), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [29973] = 8, + [32400] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47331,16 +50759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(1951), 1, - anon_sym_RPAREN, - STATE(820), 1, - aux_sym_constrainedType_repeat1, - STATE(830), 2, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2050), 1, + anon_sym_POUND_DQUOTE, + STATE(935), 1, + sym_stringConstant, + STATE(896), 2, sym_shebangComment, sym_lineComment, - [29999] = 8, + [32426] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47349,16 +50777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1934), 1, - anon_sym_POUND_DQUOTE, - STATE(551), 1, - sym_stringConstant, - STATE(831), 2, + ACTIONS(2092), 1, + anon_sym_COMMA, + ACTIONS(2094), 1, + anon_sym_GT, + STATE(907), 1, + aux_sym_typeParameterList_repeat1, + STATE(897), 2, sym_shebangComment, sym_lineComment, - [30025] = 8, + [32452] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47367,16 +50795,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1181), 1, + ACTIONS(1245), 1, anon_sym_LT, - ACTIONS(1953), 1, + ACTIONS(2096), 1, anon_sym_EQ, - STATE(922), 1, + STATE(945), 1, sym_typeParameterList, - STATE(832), 2, + STATE(898), 2, sym_shebangComment, sym_lineComment, - [30051] = 8, + [32478] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47385,16 +50813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1955), 1, + ACTIONS(1049), 1, anon_sym_RPAREN, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(833), 2, + ACTIONS(2098), 1, + anon_sym_COMMA, + STATE(899), 3, sym_shebangComment, sym_lineComment, - [30077] = 6, + aux_sym_constrainedType_repeat1, + [32502] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47403,14 +50830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(834), 2, + ACTIONS(2101), 1, + anon_sym_COMMA, + ACTIONS(2104), 1, + anon_sym_GT, + STATE(900), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1957), 3, - sym__sl1_string_chars, - anon_sym_DQUOTE_POUND, - sym_escapeSequence1, - [30099] = 8, + aux_sym_typeParameterList_repeat1, + [32526] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47419,16 +50847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1959), 1, - anon_sym_RPAREN, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(835), 2, + STATE(901), 2, sym_shebangComment, sym_lineComment, - [30125] = 8, + ACTIONS(1987), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [32548] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47437,16 +50863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1926), 1, - anon_sym_COMMA, - ACTIONS(1961), 1, + ACTIONS(1291), 1, anon_sym_RPAREN, - STATE(788), 1, - aux_sym_objectBodyParameters_repeat1, - STATE(836), 2, + ACTIONS(2106), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(902), 2, sym_shebangComment, sym_lineComment, - [30151] = 8, + [32574] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47455,16 +50881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1934), 1, - anon_sym_POUND_DQUOTE, - STATE(894), 1, - sym_stringConstant, - STATE(837), 2, + ACTIONS(1297), 1, + anon_sym_RPAREN, + ACTIONS(2108), 1, + anon_sym_COMMA, + STATE(842), 1, + aux_sym_functionLiteralType_repeat1, + STATE(903), 2, sym_shebangComment, sym_lineComment, - [30177] = 8, + [32600] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47473,16 +50899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1181), 1, + ACTIONS(1245), 1, anon_sym_LT, - ACTIONS(1963), 1, + ACTIONS(2110), 1, anon_sym_EQ, - STATE(895), 1, + STATE(956), 1, sym_typeParameterList, - STATE(838), 2, + STATE(904), 2, sym_shebangComment, sym_lineComment, - [30203] = 8, + [32626] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47491,16 +50917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_GT, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(839), 2, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2050), 1, + anon_sym_POUND_DQUOTE, + STATE(617), 1, + sym_stringConstant, + STATE(905), 2, sym_shebangComment, sym_lineComment, - [30229] = 8, + [32652] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47509,16 +50935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, + ACTIONS(2112), 1, anon_sym_COMMA, - ACTIONS(1967), 1, + ACTIONS(2114), 1, anon_sym_RPAREN, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(840), 2, + STATE(878), 1, + aux_sym_objectBodyParameters_repeat1, + STATE(906), 2, sym_shebangComment, sym_lineComment, - [30255] = 7, + [32678] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47527,15 +50953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1969), 1, - anon_sym_COMMA, - ACTIONS(1972), 1, + ACTIONS(1948), 1, anon_sym_GT, - STATE(841), 3, + ACTIONS(2116), 1, + anon_sym_COMMA, + STATE(900), 1, + aux_sym_typeParameterList_repeat1, + STATE(907), 2, sym_shebangComment, sym_lineComment, - aux_sym_typeParameterList_repeat1, - [30279] = 8, + [32704] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47544,16 +50971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(1974), 1, + ACTIONS(669), 1, anon_sym_RPAREN, - STATE(820), 1, + ACTIONS(2118), 1, + anon_sym_COMMA, + STATE(899), 1, aux_sym_constrainedType_repeat1, - STATE(842), 2, + STATE(908), 2, sym_shebangComment, sym_lineComment, - [30305] = 8, + [32730] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47562,16 +50989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1926), 1, - anon_sym_COMMA, - ACTIONS(1976), 1, - anon_sym_DASH_GT, - STATE(788), 1, - aux_sym_objectBodyParameters_repeat1, - STATE(843), 2, + ACTIONS(1245), 1, + anon_sym_LT, + ACTIONS(2120), 1, + anon_sym_EQ, + STATE(955), 1, + sym_typeParameterList, + STATE(909), 2, sym_shebangComment, sym_lineComment, - [30331] = 8, + [32756] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47580,16 +51007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1756), 1, + ACTIONS(1894), 1, + anon_sym_EQ, + ACTIONS(1952), 2, anon_sym_COMMA, - ACTIONS(1978), 1, - anon_sym_RPAREN, - STATE(797), 1, - aux_sym_functionLiteralType_repeat1, - STATE(844), 2, + anon_sym_DASH_GT, + STATE(910), 2, sym_shebangComment, sym_lineComment, - [30357] = 7, + [32780] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47598,15 +51024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1778), 1, - anon_sym_EQ, - ACTIONS(1786), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - STATE(845), 2, + ACTIONS(2122), 1, + sym_identifier, + STATE(584), 1, + sym_qualifiedIdentifier, + STATE(911), 2, sym_shebangComment, sym_lineComment, - [30381] = 8, + [32803] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47615,16 +51040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1980), 1, - anon_sym_COMMA, - ACTIONS(1982), 1, - anon_sym_GT, - STATE(841), 1, - aux_sym_typeParameterList_repeat1, - STATE(846), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_objectBody, + STATE(912), 2, sym_shebangComment, sym_lineComment, - [30407] = 8, + [32826] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47633,16 +51056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1980), 1, - anon_sym_COMMA, - ACTIONS(1984), 1, - anon_sym_GT, - STATE(846), 1, - aux_sym_typeParameterList_repeat1, - STATE(847), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_objectBody, + STATE(913), 2, sym_shebangComment, sym_lineComment, - [30433] = 8, + [32849] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47651,16 +51072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(961), 1, - anon_sym_COMMA, - ACTIONS(1986), 1, - anon_sym_RPAREN, - STATE(820), 1, - aux_sym_constrainedType_repeat1, - STATE(848), 2, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2126), 1, + sym__open_subscript_bracket, + STATE(914), 2, sym_shebangComment, sym_lineComment, - [30459] = 8, + [32872] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47669,16 +51088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1934), 1, - anon_sym_POUND_DQUOTE, - STATE(552), 1, - sym_stringConstant, - STATE(849), 2, + ACTIONS(2122), 1, + sym_identifier, + STATE(613), 1, + sym_qualifiedIdentifier, + STATE(915), 2, sym_shebangComment, sym_lineComment, - [30485] = 7, + [32895] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47687,14 +51104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - sym__open_subscript_bracket, - STATE(850), 2, + ACTIONS(2128), 1, + anon_sym_COMMA, + ACTIONS(2130), 1, + anon_sym_in, + STATE(916), 2, sym_shebangComment, sym_lineComment, - [30508] = 6, + [32918] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47703,13 +51120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1972), 2, + ACTIONS(2104), 2, anon_sym_COMMA, anon_sym_GT, - STATE(851), 2, + STATE(917), 2, sym_shebangComment, sym_lineComment, - [30529] = 7, + [32939] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47718,14 +51135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_objectBody, - STATE(852), 2, + ACTIONS(2132), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(918), 2, sym_shebangComment, sym_lineComment, - [30552] = 7, + [32960] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47734,14 +51150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1992), 1, - sym_identifier, - STATE(534), 1, - sym_qualifiedIdentifier, - STATE(853), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_objectBody, + STATE(919), 2, sym_shebangComment, sym_lineComment, - [30575] = 7, + [32983] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47750,14 +51166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1848), 1, + ACTIONS(1997), 1, anon_sym_LPAREN, - STATE(529), 1, + STATE(596), 1, sym_parameterList, - STATE(854), 2, + STATE(920), 2, sym_shebangComment, sym_lineComment, - [30598] = 7, + [33006] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47766,14 +51182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(1996), 1, - sym__open_subscript_bracket, - STATE(855), 2, + ACTIONS(2122), 1, + sym_identifier, + STATE(595), 1, + sym_qualifiedIdentifier, + STATE(921), 2, sym_shebangComment, sym_lineComment, - [30621] = 7, + [33029] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47782,14 +51198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1848), 1, + ACTIONS(1997), 1, anon_sym_LPAREN, - STATE(538), 1, + STATE(579), 1, sym_parameterList, - STATE(856), 2, + STATE(922), 2, sym_shebangComment, sym_lineComment, - [30644] = 7, + [33052] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47798,14 +51214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(217), 1, - sym_objectBody, - STATE(857), 2, + ACTIONS(2134), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(923), 2, sym_shebangComment, sym_lineComment, - [30667] = 7, + [33073] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47814,14 +51229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1992), 1, - sym_identifier, - STATE(542), 1, - sym_qualifiedIdentifier, - STATE(858), 2, + ACTIONS(2136), 1, + anon_sym_DOT, + ACTIONS(2138), 1, + sym__open_subscript_bracket, + STATE(924), 2, sym_shebangComment, sym_lineComment, - [30690] = 7, + [33096] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47830,14 +51245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_objectBody, - STATE(859), 2, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + sym__open_subscript_bracket, + STATE(925), 2, sym_shebangComment, sym_lineComment, - [30713] = 6, + [33119] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47846,13 +51261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1998), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(860), 2, + ACTIONS(2122), 1, + sym_identifier, + STATE(605), 1, + sym_qualifiedIdentifier, + STATE(926), 2, sym_shebangComment, sym_lineComment, - [30734] = 7, + [33142] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47861,14 +51277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1992), 1, - sym_identifier, - STATE(553), 1, - sym_qualifiedIdentifier, - STATE(861), 2, + ACTIONS(262), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_objectBody, + STATE(927), 2, sym_shebangComment, sym_lineComment, - [30757] = 7, + [33165] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47877,14 +51293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2000), 1, - anon_sym_DOT, - ACTIONS(2002), 1, - sym__open_subscript_bracket, - STATE(862), 2, + ACTIONS(2144), 1, + anon_sym_LPAREN, + STATE(928), 2, sym_shebangComment, sym_lineComment, - [30780] = 6, + [33185] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47893,13 +51307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2004), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(863), 2, + ACTIONS(2146), 1, + anon_sym_RPAREN, + STATE(929), 2, sym_shebangComment, sym_lineComment, - [30801] = 7, + [33205] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47908,14 +51321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1992), 1, + ACTIONS(2148), 1, sym_identifier, - STATE(560), 1, - sym_qualifiedIdentifier, - STATE(864), 2, + STATE(930), 2, sym_shebangComment, sym_lineComment, - [30824] = 7, + [33225] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47924,14 +51335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(224), 1, - sym_objectBody, - STATE(865), 2, + ACTIONS(2150), 1, + sym_identifier, + STATE(931), 2, sym_shebangComment, sym_lineComment, - [30847] = 7, + [33245] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47940,14 +51349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2006), 1, - anon_sym_COMMA, - ACTIONS(2008), 1, - anon_sym_in, - STATE(866), 2, + ACTIONS(2152), 1, + sym_identifier, + STATE(932), 2, sym_shebangComment, sym_lineComment, - [30870] = 6, + [33265] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47956,12 +51363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2010), 1, - anon_sym_LPAREN, - STATE(867), 2, + ACTIONS(2154), 1, + anon_sym_DASH_GT, + STATE(933), 2, sym_shebangComment, sym_lineComment, - [30890] = 6, + [33285] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47970,12 +51377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2012), 1, + ACTIONS(2156), 1, anon_sym_LPAREN, - STATE(868), 2, + STATE(934), 2, sym_shebangComment, sym_lineComment, - [30910] = 6, + [33305] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47984,12 +51391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1778), 1, - anon_sym_EQ, - STATE(869), 2, + ACTIONS(2158), 1, + anon_sym_RPAREN, + STATE(935), 2, sym_shebangComment, sym_lineComment, - [30930] = 6, + [33325] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47998,12 +51405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2014), 1, - anon_sym_DASH_GT, - STATE(870), 2, + ACTIONS(2160), 1, + anon_sym_LPAREN, + STATE(936), 2, sym_shebangComment, sym_lineComment, - [30950] = 6, + [33345] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48012,12 +51419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2016), 1, - anon_sym_in, - STATE(871), 2, + ACTIONS(2162), 1, + anon_sym_LPAREN, + STATE(937), 2, sym_shebangComment, sym_lineComment, - [30970] = 6, + [33365] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48026,26 +51433,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2018), 1, + ACTIONS(2164), 1, sym_identifier, - STATE(872), 2, + STATE(938), 2, sym_shebangComment, sym_lineComment, - [30990] = 6, + [33385] = 6, + ACTIONS(3), 1, + anon_sym_POUND_BANG, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2020), 1, - anon_sym_POUND_BANG, - ACTIONS(2022), 1, - aux_sym_shebangComment_token1, - ACTIONS(2024), 1, + ACTIONS(9), 1, sym_blockComment, - STATE(873), 2, + ACTIONS(2166), 1, + anon_sym_LPAREN, + STATE(939), 2, sym_shebangComment, sym_lineComment, - [31010] = 6, + [33405] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48054,12 +51461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2026), 1, - sym_identifier, - STATE(874), 2, + ACTIONS(2168), 1, + ts_builtin_sym_end, + STATE(940), 2, sym_shebangComment, sym_lineComment, - [31030] = 6, + [33425] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48068,12 +51475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2028), 1, - sym_identifier, - STATE(875), 2, + ACTIONS(2170), 1, + anon_sym_DASH_GT, + STATE(941), 2, sym_shebangComment, sym_lineComment, - [31050] = 6, + [33445] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48082,12 +51489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2030), 1, + ACTIONS(2172), 1, sym_identifier, - STATE(876), 2, + STATE(942), 2, sym_shebangComment, sym_lineComment, - [31070] = 6, + [33465] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48096,12 +51503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2032), 1, - anon_sym_DASH_GT, - STATE(877), 2, + ACTIONS(2096), 1, + anon_sym_EQ, + STATE(943), 2, sym_shebangComment, sym_lineComment, - [31090] = 6, + [33485] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48110,12 +51517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2034), 1, - anon_sym_EQ, - STATE(878), 2, + ACTIONS(2174), 1, + sym_identifier, + STATE(944), 2, sym_shebangComment, sym_lineComment, - [31110] = 6, + [33505] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48124,12 +51531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2036), 1, - sym_identifier, - STATE(879), 2, + ACTIONS(2176), 1, + anon_sym_EQ, + STATE(945), 2, sym_shebangComment, sym_lineComment, - [31130] = 6, + [33525] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48138,12 +51545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2038), 1, + ACTIONS(2178), 1, anon_sym_DASH_GT, - STATE(880), 2, + STATE(946), 2, sym_shebangComment, sym_lineComment, - [31150] = 6, + [33545] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48152,26 +51559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2040), 1, + ACTIONS(2180), 1, anon_sym_DASH_GT, - STATE(881), 2, + STATE(947), 2, sym_shebangComment, sym_lineComment, - [31170] = 6, - ACTIONS(3), 1, - anon_sym_POUND_BANG, + [33565] = 6, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, + ACTIONS(2182), 1, + anon_sym_POUND_BANG, + ACTIONS(2184), 1, + aux_sym_shebangComment_token1, + ACTIONS(2186), 1, sym_blockComment, - ACTIONS(2042), 1, - sym_identifier, - STATE(882), 2, + STATE(948), 2, sym_shebangComment, sym_lineComment, - [31190] = 6, + [33585] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48180,12 +51587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2044), 1, - sym_identifier, - STATE(883), 2, + ACTIONS(2188), 1, + anon_sym_DASH_GT, + STATE(949), 2, sym_shebangComment, sym_lineComment, - [31210] = 6, + [33605] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48194,12 +51601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2046), 1, - anon_sym_RPAREN, - STATE(884), 2, + ACTIONS(2190), 1, + anon_sym_DASH_GT, + STATE(950), 2, sym_shebangComment, sym_lineComment, - [31230] = 6, + [33625] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48208,12 +51615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2048), 1, + ACTIONS(2192), 1, sym_identifier, - STATE(885), 2, + STATE(951), 2, sym_shebangComment, sym_lineComment, - [31250] = 6, + [33645] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48222,12 +51629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2050), 1, - anon_sym_DASH_GT, - STATE(886), 2, + ACTIONS(2194), 1, + sym_identifier, + STATE(952), 2, sym_shebangComment, sym_lineComment, - [31270] = 6, + [33665] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48236,12 +51643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2052), 1, - anon_sym_DASH_GT, - STATE(887), 2, + ACTIONS(2196), 1, + anon_sym_EQ, + STATE(953), 2, sym_shebangComment, sym_lineComment, - [31290] = 6, + [33685] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48250,12 +51657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2054), 1, - sym_identifier, - STATE(888), 2, + ACTIONS(2198), 1, + anon_sym_in, + STATE(954), 2, sym_shebangComment, sym_lineComment, - [31310] = 6, + [33705] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48264,26 +51671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2056), 1, - anon_sym_DASH_GT, - STATE(889), 2, - sym_shebangComment, - sym_lineComment, - [31330] = 6, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2020), 1, - anon_sym_POUND_BANG, - ACTIONS(2024), 1, - sym_blockComment, - ACTIONS(2058), 1, - aux_sym_shebangComment_token1, - STATE(890), 2, + ACTIONS(2110), 1, + anon_sym_EQ, + STATE(955), 2, sym_shebangComment, sym_lineComment, - [31350] = 6, + [33725] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48292,12 +51685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2060), 1, - sym_identifier, - STATE(891), 2, + ACTIONS(2056), 1, + anon_sym_EQ, + STATE(956), 2, sym_shebangComment, sym_lineComment, - [31370] = 6, + [33745] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48306,12 +51699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2062), 1, - sym_identifier, - STATE(892), 2, + ACTIONS(1894), 1, + anon_sym_EQ, + STATE(957), 2, sym_shebangComment, sym_lineComment, - [31390] = 6, + [33765] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48320,12 +51713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2064), 1, + ACTIONS(2200), 1, sym_identifier, - STATE(893), 2, + STATE(958), 2, sym_shebangComment, sym_lineComment, - [31410] = 6, + [33785] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48334,26 +51727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2066), 1, - anon_sym_RPAREN, - STATE(894), 2, + ACTIONS(2202), 1, + anon_sym_DASH_GT, + STATE(959), 2, sym_shebangComment, sym_lineComment, - [31430] = 6, - ACTIONS(3), 1, - anon_sym_POUND_BANG, + [33805] = 6, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, + ACTIONS(2182), 1, + anon_sym_POUND_BANG, + ACTIONS(2186), 1, sym_blockComment, - ACTIONS(1953), 1, - anon_sym_EQ, - STATE(895), 2, + ACTIONS(2204), 1, + aux_sym_shebangComment_token1, + STATE(960), 2, sym_shebangComment, sym_lineComment, - [31450] = 6, + [33825] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48362,12 +51755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2068), 1, - ts_builtin_sym_end, - STATE(896), 2, + ACTIONS(2206), 1, + anon_sym_DASH_GT, + STATE(961), 2, sym_shebangComment, sym_lineComment, - [31470] = 6, + [33845] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48376,12 +51769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2070), 1, - anon_sym_LPAREN, - STATE(897), 2, + ACTIONS(2208), 1, + anon_sym_EQ, + STATE(962), 2, sym_shebangComment, sym_lineComment, - [31490] = 6, + [33865] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48390,12 +51783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2072), 1, - anon_sym_LPAREN, - STATE(898), 2, + ACTIONS(2210), 1, + sym_identifier, + STATE(963), 2, sym_shebangComment, sym_lineComment, - [31510] = 6, + [33885] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48404,12 +51797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1963), 1, - anon_sym_EQ, - STATE(899), 2, + ACTIONS(2212), 1, + sym_identifier, + STATE(964), 2, sym_shebangComment, sym_lineComment, - [31530] = 6, + [33905] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48418,12 +51811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2074), 1, - anon_sym_LPAREN, - STATE(900), 2, + ACTIONS(2214), 1, + sym_identifier, + STATE(965), 2, sym_shebangComment, sym_lineComment, - [31550] = 6, + [33925] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48432,12 +51825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2076), 1, - anon_sym_LPAREN, - STATE(901), 2, + ACTIONS(2216), 1, + sym_identifier, + STATE(966), 2, sym_shebangComment, sym_lineComment, - [31570] = 6, + [33945] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48446,12 +51839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2078), 1, - anon_sym_LPAREN, - STATE(902), 2, + ACTIONS(2218), 1, + sym_identifier, + STATE(967), 2, sym_shebangComment, sym_lineComment, - [31590] = 6, + [33965] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48460,12 +51853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2080), 1, + ACTIONS(2220), 1, sym_identifier, - STATE(903), 2, + STATE(968), 2, sym_shebangComment, sym_lineComment, - [31610] = 6, + [33985] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48474,12 +51867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2082), 1, - sym_identifier, - STATE(904), 2, + ACTIONS(2222), 1, + anon_sym_LPAREN, + STATE(969), 2, sym_shebangComment, sym_lineComment, - [31630] = 6, + [34005] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48488,12 +51881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2084), 1, + ACTIONS(2224), 1, sym_identifier, - STATE(905), 2, + STATE(970), 2, sym_shebangComment, sym_lineComment, - [31650] = 6, + [34025] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48502,12 +51895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2086), 1, - sym_identifier, - STATE(906), 2, + ACTIONS(2226), 1, + anon_sym_LPAREN, + STATE(971), 2, sym_shebangComment, sym_lineComment, - [31670] = 6, + [34045] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48516,12 +51909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2088), 1, + ACTIONS(2228), 1, anon_sym_DASH_GT, - STATE(907), 2, + STATE(972), 2, sym_shebangComment, sym_lineComment, - [31690] = 6, + [34065] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48530,12 +51923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2090), 1, - anon_sym_RPAREN, - STATE(908), 2, + ACTIONS(2230), 1, + anon_sym_DASH_GT, + STATE(973), 2, sym_shebangComment, sym_lineComment, - [31710] = 6, + [34085] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48544,12 +51937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2092), 1, - sym_identifier, - STATE(909), 2, + ACTIONS(2232), 1, + anon_sym_DASH_GT, + STATE(974), 2, sym_shebangComment, sym_lineComment, - [31730] = 6, + [34105] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48558,12 +51951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2094), 1, - anon_sym_EQ, - STATE(910), 2, + ACTIONS(2234), 1, + sym_identifier, + STATE(975), 2, sym_shebangComment, sym_lineComment, - [31750] = 6, + [34125] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48572,12 +51965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2096), 1, - sym_identifier, - STATE(911), 2, + ACTIONS(2236), 1, + anon_sym_DASH_GT, + STATE(976), 2, sym_shebangComment, sym_lineComment, - [31770] = 6, + [34145] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48586,12 +51979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2098), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(912), 2, + STATE(977), 2, sym_shebangComment, sym_lineComment, - [31790] = 6, + [34165] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48600,12 +51993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2100), 1, - anon_sym_LPAREN, - STATE(913), 2, + ACTIONS(2240), 1, + anon_sym_RPAREN, + STATE(978), 2, sym_shebangComment, sym_lineComment, - [31810] = 6, + [34185] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48614,12 +52007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2102), 1, + ACTIONS(2242), 1, sym_identifier, - STATE(914), 2, + STATE(979), 2, sym_shebangComment, sym_lineComment, - [31830] = 6, + [34205] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48628,12 +52021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2104), 1, - anon_sym_DASH_GT, - STATE(915), 2, + ACTIONS(2244), 1, + sym_identifier, + STATE(980), 2, sym_shebangComment, sym_lineComment, - [31850] = 6, + [34225] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48642,12 +52035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2106), 1, + ACTIONS(2246), 1, sym_identifier, - STATE(916), 2, + STATE(981), 2, sym_shebangComment, sym_lineComment, - [31870] = 6, + [34245] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48656,12 +52049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2108), 1, - sym_identifier, - STATE(917), 2, + ACTIONS(2248), 1, + anon_sym_DASH_GT, + STATE(982), 2, sym_shebangComment, sym_lineComment, - [31890] = 6, + [34265] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48670,12 +52063,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2110), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - STATE(918), 2, + STATE(983), 2, sym_shebangComment, sym_lineComment, - [31910] = 6, + [34285] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48684,12 +52077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2112), 1, - anon_sym_LPAREN, - STATE(919), 2, + ACTIONS(2252), 1, + anon_sym_DASH_GT, + STATE(984), 2, sym_shebangComment, sym_lineComment, - [31930] = 6, + [34305] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48698,12 +52091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2114), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - STATE(920), 2, + STATE(985), 2, sym_shebangComment, sym_lineComment, - [31950] = 6, + [34325] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48712,12 +52105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2116), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - STATE(921), 2, + STATE(986), 2, sym_shebangComment, sym_lineComment, - [31970] = 6, + [34345] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48726,12 +52119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2118), 1, - anon_sym_EQ, - STATE(922), 2, + ACTIONS(2258), 1, + sym_identifier, + STATE(987), 2, sym_shebangComment, sym_lineComment, - [31990] = 6, + [34365] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48740,12 +52133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2120), 1, + ACTIONS(2260), 1, anon_sym_EQ, - STATE(923), 2, + STATE(988), 2, sym_shebangComment, sym_lineComment, - [32010] = 6, + [34385] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48754,12 +52147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1920), 1, - anon_sym_EQ, - STATE(924), 2, + ACTIONS(2262), 1, + anon_sym_LPAREN, + STATE(989), 2, sym_shebangComment, sym_lineComment, - [32030] = 6, + [34405] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48768,12 +52161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2122), 1, + ACTIONS(2264), 1, anon_sym_LPAREN, - STATE(925), 2, + STATE(990), 2, sym_shebangComment, sym_lineComment, - [32050] = 6, + [34425] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48782,12 +52175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2124), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - STATE(926), 2, + STATE(991), 2, sym_shebangComment, sym_lineComment, - [32070] = 6, + [34445] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48796,12 +52189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2126), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - STATE(927), 2, + STATE(992), 2, sym_shebangComment, sym_lineComment, - [32090] = 6, + [34465] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48810,12 +52203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2128), 1, - sym_identifier, - STATE(928), 2, + ACTIONS(2270), 1, + anon_sym_EQ, + STATE(993), 2, sym_shebangComment, sym_lineComment, - [32110] = 6, + [34485] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48824,12 +52217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2130), 1, + ACTIONS(2272), 1, anon_sym_EQ, - STATE(929), 2, + STATE(994), 2, sym_shebangComment, sym_lineComment, - [32130] = 6, + [34505] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48838,12 +52231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2132), 1, - anon_sym_EQ, - STATE(930), 2, + ACTIONS(2274), 1, + sym_identifier, + STATE(995), 2, sym_shebangComment, sym_lineComment, - [32150] = 6, + [34525] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48852,12 +52245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2134), 1, + ACTIONS(2276), 1, sym_identifier, - STATE(931), 2, + STATE(996), 2, sym_shebangComment, sym_lineComment, - [32170] = 6, + [34545] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48866,12 +52259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2136), 1, - anon_sym_DASH_GT, - STATE(932), 2, + ACTIONS(2278), 1, + anon_sym_LPAREN, + STATE(997), 2, sym_shebangComment, sym_lineComment, - [32190] = 6, + [34565] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48880,12 +52273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2138), 1, + ACTIONS(2280), 1, anon_sym_DASH_GT, - STATE(933), 2, + STATE(998), 2, sym_shebangComment, sym_lineComment, - [32210] = 6, + [34585] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48894,12 +52287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2140), 1, + ACTIONS(2282), 1, anon_sym_LPAREN, - STATE(934), 2, + STATE(999), 2, sym_shebangComment, sym_lineComment, - [32230] = 6, + [34605] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48908,12 +52301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2142), 1, + ACTIONS(2284), 1, anon_sym_LPAREN, - STATE(935), 2, + STATE(1000), 2, sym_shebangComment, sym_lineComment, - [32250] = 6, + [34625] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48922,12 +52315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2144), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - STATE(936), 2, + STATE(1001), 2, sym_shebangComment, sym_lineComment, - [32270] = 6, + [34645] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48936,12 +52329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2146), 1, + ACTIONS(2288), 1, anon_sym_LPAREN, - STATE(937), 2, + STATE(1002), 2, sym_shebangComment, sym_lineComment, - [32290] = 6, + [34665] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48950,1769 +52343,1887 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2148), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(938), 2, + STATE(1003), 2, sym_shebangComment, sym_lineComment, - [32310] = 1, - ACTIONS(2150), 1, + [34685] = 1, + ACTIONS(1327), 1, ts_builtin_sym_end, - [32314] = 1, - ACTIONS(1251), 1, + [34689] = 1, + ACTIONS(2292), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(212)] = 0, - [SMALL_STATE(213)] = 79, - [SMALL_STATE(214)] = 161, - [SMALL_STATE(215)] = 243, - [SMALL_STATE(216)] = 325, - [SMALL_STATE(217)] = 407, - [SMALL_STATE(218)] = 483, - [SMALL_STATE(219)] = 556, - [SMALL_STATE(220)] = 629, - [SMALL_STATE(221)] = 702, - [SMALL_STATE(222)] = 775, - [SMALL_STATE(223)] = 848, - [SMALL_STATE(224)] = 921, - [SMALL_STATE(225)] = 994, - [SMALL_STATE(226)] = 1061, - [SMALL_STATE(227)] = 1128, - [SMALL_STATE(228)] = 1193, - [SMALL_STATE(229)] = 1260, - [SMALL_STATE(230)] = 1325, - [SMALL_STATE(231)] = 1393, - [SMALL_STATE(232)] = 1455, - [SMALL_STATE(233)] = 1517, - [SMALL_STATE(234)] = 1585, - [SMALL_STATE(235)] = 1653, - [SMALL_STATE(236)] = 1715, - [SMALL_STATE(237)] = 1777, - [SMALL_STATE(238)] = 1839, - [SMALL_STATE(239)] = 1901, - [SMALL_STATE(240)] = 1963, - [SMALL_STATE(241)] = 2031, - [SMALL_STATE(242)] = 2095, - [SMALL_STATE(243)] = 2157, - [SMALL_STATE(244)] = 2219, - [SMALL_STATE(245)] = 2285, - [SMALL_STATE(246)] = 2347, - [SMALL_STATE(247)] = 2409, - [SMALL_STATE(248)] = 2477, - [SMALL_STATE(249)] = 2539, - [SMALL_STATE(250)] = 2604, - [SMALL_STATE(251)] = 2669, - [SMALL_STATE(252)] = 2734, - [SMALL_STATE(253)] = 2799, - [SMALL_STATE(254)] = 2859, - [SMALL_STATE(255)] = 2919, - [SMALL_STATE(256)] = 2979, - [SMALL_STATE(257)] = 3039, - [SMALL_STATE(258)] = 3099, - [SMALL_STATE(259)] = 3159, - [SMALL_STATE(260)] = 3219, - [SMALL_STATE(261)] = 3278, - [SMALL_STATE(262)] = 3337, - [SMALL_STATE(263)] = 3396, - [SMALL_STATE(264)] = 3455, - [SMALL_STATE(265)] = 3514, - [SMALL_STATE(266)] = 3579, - [SMALL_STATE(267)] = 3644, - [SMALL_STATE(268)] = 3703, - [SMALL_STATE(269)] = 3794, - [SMALL_STATE(270)] = 3853, - [SMALL_STATE(271)] = 3944, - [SMALL_STATE(272)] = 4035, - [SMALL_STATE(273)] = 4094, - [SMALL_STATE(274)] = 4153, - [SMALL_STATE(275)] = 4212, - [SMALL_STATE(276)] = 4303, - [SMALL_STATE(277)] = 4374, - [SMALL_STATE(278)] = 4441, - [SMALL_STATE(279)] = 4514, - [SMALL_STATE(280)] = 4605, - [SMALL_STATE(281)] = 4696, - [SMALL_STATE(282)] = 4777, - [SMALL_STATE(283)] = 4860, - [SMALL_STATE(284)] = 4945, - [SMALL_STATE(285)] = 5032, - [SMALL_STATE(286)] = 5091, - [SMALL_STATE(287)] = 5150, - [SMALL_STATE(288)] = 5209, - [SMALL_STATE(289)] = 5268, - [SMALL_STATE(290)] = 5327, - [SMALL_STATE(291)] = 5386, - [SMALL_STATE(292)] = 5445, - [SMALL_STATE(293)] = 5504, - [SMALL_STATE(294)] = 5563, - [SMALL_STATE(295)] = 5654, - [SMALL_STATE(296)] = 5745, - [SMALL_STATE(297)] = 5836, - [SMALL_STATE(298)] = 5927, - [SMALL_STATE(299)] = 6018, - [SMALL_STATE(300)] = 6109, - [SMALL_STATE(301)] = 6176, - [SMALL_STATE(302)] = 6266, - [SMALL_STATE(303)] = 6356, - [SMALL_STATE(304)] = 6446, - [SMALL_STATE(305)] = 6536, - [SMALL_STATE(306)] = 6626, - [SMALL_STATE(307)] = 6688, - [SMALL_STATE(308)] = 6741, - [SMALL_STATE(309)] = 6794, - [SMALL_STATE(310)] = 6847, - [SMALL_STATE(311)] = 6900, - [SMALL_STATE(312)] = 6951, - [SMALL_STATE(313)] = 7004, - [SMALL_STATE(314)] = 7055, - [SMALL_STATE(315)] = 7106, - [SMALL_STATE(316)] = 7160, - [SMALL_STATE(317)] = 7208, - [SMALL_STATE(318)] = 7260, - [SMALL_STATE(319)] = 7312, - [SMALL_STATE(320)] = 7360, - [SMALL_STATE(321)] = 7414, - [SMALL_STATE(322)] = 7462, - [SMALL_STATE(323)] = 7516, - [SMALL_STATE(324)] = 7564, - [SMALL_STATE(325)] = 7612, - [SMALL_STATE(326)] = 7660, - [SMALL_STATE(327)] = 7708, - [SMALL_STATE(328)] = 7756, - [SMALL_STATE(329)] = 7804, - [SMALL_STATE(330)] = 7852, - [SMALL_STATE(331)] = 7900, - [SMALL_STATE(332)] = 7954, - [SMALL_STATE(333)] = 8004, - [SMALL_STATE(334)] = 8052, - [SMALL_STATE(335)] = 8100, - [SMALL_STATE(336)] = 8154, - [SMALL_STATE(337)] = 8231, - [SMALL_STATE(338)] = 8282, - [SMALL_STATE(339)] = 8357, - [SMALL_STATE(340)] = 8438, - [SMALL_STATE(341)] = 8489, - [SMALL_STATE(342)] = 8540, - [SMALL_STATE(343)] = 8617, - [SMALL_STATE(344)] = 8698, - [SMALL_STATE(345)] = 8779, - [SMALL_STATE(346)] = 8860, - [SMALL_STATE(347)] = 8941, - [SMALL_STATE(348)] = 9022, - [SMALL_STATE(349)] = 9099, - [SMALL_STATE(350)] = 9180, - [SMALL_STATE(351)] = 9231, - [SMALL_STATE(352)] = 9308, - [SMALL_STATE(353)] = 9354, - [SMALL_STATE(354)] = 9400, - [SMALL_STATE(355)] = 9448, - [SMALL_STATE(356)] = 9494, - [SMALL_STATE(357)] = 9542, - [SMALL_STATE(358)] = 9588, - [SMALL_STATE(359)] = 9634, - [SMALL_STATE(360)] = 9686, - [SMALL_STATE(361)] = 9736, - [SMALL_STATE(362)] = 9782, - [SMALL_STATE(363)] = 9828, - [SMALL_STATE(364)] = 9874, - [SMALL_STATE(365)] = 9920, - [SMALL_STATE(366)] = 9972, - [SMALL_STATE(367)] = 10018, - [SMALL_STATE(368)] = 10064, - [SMALL_STATE(369)] = 10110, - [SMALL_STATE(370)] = 10186, - [SMALL_STATE(371)] = 10232, - [SMALL_STATE(372)] = 10284, - [SMALL_STATE(373)] = 10330, - [SMALL_STATE(374)] = 10376, - [SMALL_STATE(375)] = 10422, - [SMALL_STATE(376)] = 10468, - [SMALL_STATE(377)] = 10514, - [SMALL_STATE(378)] = 10589, - [SMALL_STATE(379)] = 10664, - [SMALL_STATE(380)] = 10709, - [SMALL_STATE(381)] = 10784, - [SMALL_STATE(382)] = 10829, - [SMALL_STATE(383)] = 10904, - [SMALL_STATE(384)] = 10949, - [SMALL_STATE(385)] = 11024, - [SMALL_STATE(386)] = 11099, - [SMALL_STATE(387)] = 11156, - [SMALL_STATE(388)] = 11209, - [SMALL_STATE(389)] = 11268, - [SMALL_STATE(390)] = 11343, - [SMALL_STATE(391)] = 11396, - [SMALL_STATE(392)] = 11461, - [SMALL_STATE(393)] = 11528, - [SMALL_STATE(394)] = 11597, - [SMALL_STATE(395)] = 11668, - [SMALL_STATE(396)] = 11743, - [SMALL_STATE(397)] = 11788, - [SMALL_STATE(398)] = 11833, - [SMALL_STATE(399)] = 11878, - [SMALL_STATE(400)] = 11923, - [SMALL_STATE(401)] = 11968, - [SMALL_STATE(402)] = 12013, - [SMALL_STATE(403)] = 12058, - [SMALL_STATE(404)] = 12103, - [SMALL_STATE(405)] = 12148, - [SMALL_STATE(406)] = 12193, - [SMALL_STATE(407)] = 12268, - [SMALL_STATE(408)] = 12343, - [SMALL_STATE(409)] = 12418, - [SMALL_STATE(410)] = 12493, - [SMALL_STATE(411)] = 12568, - [SMALL_STATE(412)] = 12643, - [SMALL_STATE(413)] = 12718, - [SMALL_STATE(414)] = 12793, - [SMALL_STATE(415)] = 12868, - [SMALL_STATE(416)] = 12943, - [SMALL_STATE(417)] = 12988, - [SMALL_STATE(418)] = 13063, - [SMALL_STATE(419)] = 13108, - [SMALL_STATE(420)] = 13183, - [SMALL_STATE(421)] = 13258, - [SMALL_STATE(422)] = 13333, - [SMALL_STATE(423)] = 13408, - [SMALL_STATE(424)] = 13483, - [SMALL_STATE(425)] = 13558, - [SMALL_STATE(426)] = 13633, - [SMALL_STATE(427)] = 13708, - [SMALL_STATE(428)] = 13783, - [SMALL_STATE(429)] = 13858, - [SMALL_STATE(430)] = 13933, - [SMALL_STATE(431)] = 14008, - [SMALL_STATE(432)] = 14083, - [SMALL_STATE(433)] = 14158, - [SMALL_STATE(434)] = 14233, - [SMALL_STATE(435)] = 14308, - [SMALL_STATE(436)] = 14383, - [SMALL_STATE(437)] = 14458, - [SMALL_STATE(438)] = 14533, - [SMALL_STATE(439)] = 14608, - [SMALL_STATE(440)] = 14683, - [SMALL_STATE(441)] = 14758, - [SMALL_STATE(442)] = 14833, - [SMALL_STATE(443)] = 14908, - [SMALL_STATE(444)] = 14983, - [SMALL_STATE(445)] = 15058, - [SMALL_STATE(446)] = 15133, - [SMALL_STATE(447)] = 15208, - [SMALL_STATE(448)] = 15253, - [SMALL_STATE(449)] = 15298, - [SMALL_STATE(450)] = 15349, - [SMALL_STATE(451)] = 15400, - [SMALL_STATE(452)] = 15451, - [SMALL_STATE(453)] = 15496, - [SMALL_STATE(454)] = 15571, - [SMALL_STATE(455)] = 15646, - [SMALL_STATE(456)] = 15721, - [SMALL_STATE(457)] = 15766, - [SMALL_STATE(458)] = 15812, - [SMALL_STATE(459)] = 15860, - [SMALL_STATE(460)] = 15908, - [SMALL_STATE(461)] = 15977, - [SMALL_STATE(462)] = 16046, - [SMALL_STATE(463)] = 16089, - [SMALL_STATE(464)] = 16158, - [SMALL_STATE(465)] = 16222, - [SMALL_STATE(466)] = 16286, - [SMALL_STATE(467)] = 16350, - [SMALL_STATE(468)] = 16416, - [SMALL_STATE(469)] = 16482, - [SMALL_STATE(470)] = 16546, - [SMALL_STATE(471)] = 16599, - [SMALL_STATE(472)] = 16660, - [SMALL_STATE(473)] = 16713, - [SMALL_STATE(474)] = 16766, - [SMALL_STATE(475)] = 16827, - [SMALL_STATE(476)] = 16888, - [SMALL_STATE(477)] = 16949, - [SMALL_STATE(478)] = 17002, - [SMALL_STATE(479)] = 17060, - [SMALL_STATE(480)] = 17118, - [SMALL_STATE(481)] = 17162, - [SMALL_STATE(482)] = 17220, - [SMALL_STATE(483)] = 17278, - [SMALL_STATE(484)] = 17326, - [SMALL_STATE(485)] = 17384, - [SMALL_STATE(486)] = 17442, - [SMALL_STATE(487)] = 17500, - [SMALL_STATE(488)] = 17558, - [SMALL_STATE(489)] = 17616, - [SMALL_STATE(490)] = 17656, - [SMALL_STATE(491)] = 17704, - [SMALL_STATE(492)] = 17762, - [SMALL_STATE(493)] = 17820, - [SMALL_STATE(494)] = 17878, - [SMALL_STATE(495)] = 17936, - [SMALL_STATE(496)] = 17994, - [SMALL_STATE(497)] = 18052, - [SMALL_STATE(498)] = 18110, - [SMALL_STATE(499)] = 18168, - [SMALL_STATE(500)] = 18226, - [SMALL_STATE(501)] = 18272, - [SMALL_STATE(502)] = 18316, - [SMALL_STATE(503)] = 18374, - [SMALL_STATE(504)] = 18432, - [SMALL_STATE(505)] = 18490, - [SMALL_STATE(506)] = 18548, - [SMALL_STATE(507)] = 18606, - [SMALL_STATE(508)] = 18664, - [SMALL_STATE(509)] = 18722, - [SMALL_STATE(510)] = 18770, - [SMALL_STATE(511)] = 18828, - [SMALL_STATE(512)] = 18872, - [SMALL_STATE(513)] = 18930, - [SMALL_STATE(514)] = 18988, - [SMALL_STATE(515)] = 19046, - [SMALL_STATE(516)] = 19104, - [SMALL_STATE(517)] = 19162, - [SMALL_STATE(518)] = 19220, - [SMALL_STATE(519)] = 19278, - [SMALL_STATE(520)] = 19336, - [SMALL_STATE(521)] = 19394, - [SMALL_STATE(522)] = 19452, - [SMALL_STATE(523)] = 19500, - [SMALL_STATE(524)] = 19558, - [SMALL_STATE(525)] = 19616, - [SMALL_STATE(526)] = 19661, - [SMALL_STATE(527)] = 19700, - [SMALL_STATE(528)] = 19747, - [SMALL_STATE(529)] = 19792, - [SMALL_STATE(530)] = 19835, - [SMALL_STATE(531)] = 19878, - [SMALL_STATE(532)] = 19917, - [SMALL_STATE(533)] = 19956, - [SMALL_STATE(534)] = 19995, - [SMALL_STATE(535)] = 20034, - [SMALL_STATE(536)] = 20079, - [SMALL_STATE(537)] = 20118, - [SMALL_STATE(538)] = 20163, - [SMALL_STATE(539)] = 20206, - [SMALL_STATE(540)] = 20253, - [SMALL_STATE(541)] = 20292, - [SMALL_STATE(542)] = 20339, - [SMALL_STATE(543)] = 20378, - [SMALL_STATE(544)] = 20425, - [SMALL_STATE(545)] = 20470, - [SMALL_STATE(546)] = 20509, - [SMALL_STATE(547)] = 20553, - [SMALL_STATE(548)] = 20609, - [SMALL_STATE(549)] = 20649, - [SMALL_STATE(550)] = 20693, - [SMALL_STATE(551)] = 20749, - [SMALL_STATE(552)] = 20789, - [SMALL_STATE(553)] = 20829, - [SMALL_STATE(554)] = 20871, - [SMALL_STATE(555)] = 20927, - [SMALL_STATE(556)] = 20971, - [SMALL_STATE(557)] = 21013, - [SMALL_STATE(558)] = 21057, - [SMALL_STATE(559)] = 21097, - [SMALL_STATE(560)] = 21141, - [SMALL_STATE(561)] = 21183, - [SMALL_STATE(562)] = 21225, - [SMALL_STATE(563)] = 21262, - [SMALL_STATE(564)] = 21299, - [SMALL_STATE(565)] = 21340, - [SMALL_STATE(566)] = 21377, - [SMALL_STATE(567)] = 21414, - [SMALL_STATE(568)] = 21453, - [SMALL_STATE(569)] = 21490, - [SMALL_STATE(570)] = 21531, - [SMALL_STATE(571)] = 21572, - [SMALL_STATE(572)] = 21609, - [SMALL_STATE(573)] = 21650, - [SMALL_STATE(574)] = 21687, - [SMALL_STATE(575)] = 21728, - [SMALL_STATE(576)] = 21765, - [SMALL_STATE(577)] = 21802, - [SMALL_STATE(578)] = 21839, - [SMALL_STATE(579)] = 21876, - [SMALL_STATE(580)] = 21915, - [SMALL_STATE(581)] = 21952, - [SMALL_STATE(582)] = 21991, - [SMALL_STATE(583)] = 22027, - [SMALL_STATE(584)] = 22077, - [SMALL_STATE(585)] = 22127, - [SMALL_STATE(586)] = 22163, - [SMALL_STATE(587)] = 22199, - [SMALL_STATE(588)] = 22235, - [SMALL_STATE(589)] = 22271, - [SMALL_STATE(590)] = 22321, - [SMALL_STATE(591)] = 22368, - [SMALL_STATE(592)] = 22403, - [SMALL_STATE(593)] = 22438, - [SMALL_STATE(594)] = 22473, - [SMALL_STATE(595)] = 22520, - [SMALL_STATE(596)] = 22567, - [SMALL_STATE(597)] = 22602, - [SMALL_STATE(598)] = 22637, - [SMALL_STATE(599)] = 22672, - [SMALL_STATE(600)] = 22707, - [SMALL_STATE(601)] = 22742, - [SMALL_STATE(602)] = 22777, - [SMALL_STATE(603)] = 22812, - [SMALL_STATE(604)] = 22849, - [SMALL_STATE(605)] = 22893, - [SMALL_STATE(606)] = 22937, - [SMALL_STATE(607)] = 22981, - [SMALL_STATE(608)] = 23012, - [SMALL_STATE(609)] = 23043, - [SMALL_STATE(610)] = 23076, - [SMALL_STATE(611)] = 23114, - [SMALL_STATE(612)] = 23152, - [SMALL_STATE(613)] = 23190, - [SMALL_STATE(614)] = 23228, - [SMALL_STATE(615)] = 23262, + [SMALL_STATE(230)] = 0, + [SMALL_STATE(231)] = 79, + [SMALL_STATE(232)] = 161, + [SMALL_STATE(233)] = 243, + [SMALL_STATE(234)] = 325, + [SMALL_STATE(235)] = 407, + [SMALL_STATE(236)] = 483, + [SMALL_STATE(237)] = 556, + [SMALL_STATE(238)] = 629, + [SMALL_STATE(239)] = 702, + [SMALL_STATE(240)] = 775, + [SMALL_STATE(241)] = 848, + [SMALL_STATE(242)] = 921, + [SMALL_STATE(243)] = 994, + [SMALL_STATE(244)] = 1067, + [SMALL_STATE(245)] = 1134, + [SMALL_STATE(246)] = 1201, + [SMALL_STATE(247)] = 1268, + [SMALL_STATE(248)] = 1333, + [SMALL_STATE(249)] = 1398, + [SMALL_STATE(250)] = 1460, + [SMALL_STATE(251)] = 1528, + [SMALL_STATE(252)] = 1596, + [SMALL_STATE(253)] = 1658, + [SMALL_STATE(254)] = 1720, + [SMALL_STATE(255)] = 1786, + [SMALL_STATE(256)] = 1854, + [SMALL_STATE(257)] = 1916, + [SMALL_STATE(258)] = 1984, + [SMALL_STATE(259)] = 2046, + [SMALL_STATE(260)] = 2108, + [SMALL_STATE(261)] = 2170, + [SMALL_STATE(262)] = 2232, + [SMALL_STATE(263)] = 2294, + [SMALL_STATE(264)] = 2356, + [SMALL_STATE(265)] = 2418, + [SMALL_STATE(266)] = 2480, + [SMALL_STATE(267)] = 2542, + [SMALL_STATE(268)] = 2610, + [SMALL_STATE(269)] = 2678, + [SMALL_STATE(270)] = 2742, + [SMALL_STATE(271)] = 2804, + [SMALL_STATE(272)] = 2869, + [SMALL_STATE(273)] = 2934, + [SMALL_STATE(274)] = 2999, + [SMALL_STATE(275)] = 3064, + [SMALL_STATE(276)] = 3124, + [SMALL_STATE(277)] = 3184, + [SMALL_STATE(278)] = 3244, + [SMALL_STATE(279)] = 3304, + [SMALL_STATE(280)] = 3364, + [SMALL_STATE(281)] = 3424, + [SMALL_STATE(282)] = 3484, + [SMALL_STATE(283)] = 3549, + [SMALL_STATE(284)] = 3632, + [SMALL_STATE(285)] = 3717, + [SMALL_STATE(286)] = 3808, + [SMALL_STATE(287)] = 3895, + [SMALL_STATE(288)] = 3986, + [SMALL_STATE(289)] = 4045, + [SMALL_STATE(290)] = 4136, + [SMALL_STATE(291)] = 4195, + [SMALL_STATE(292)] = 4254, + [SMALL_STATE(293)] = 4313, + [SMALL_STATE(294)] = 4372, + [SMALL_STATE(295)] = 4431, + [SMALL_STATE(296)] = 4490, + [SMALL_STATE(297)] = 4549, + [SMALL_STATE(298)] = 4608, + [SMALL_STATE(299)] = 4667, + [SMALL_STATE(300)] = 4726, + [SMALL_STATE(301)] = 4785, + [SMALL_STATE(302)] = 4844, + [SMALL_STATE(303)] = 4935, + [SMALL_STATE(304)] = 4994, + [SMALL_STATE(305)] = 5065, + [SMALL_STATE(306)] = 5124, + [SMALL_STATE(307)] = 5215, + [SMALL_STATE(308)] = 5306, + [SMALL_STATE(309)] = 5365, + [SMALL_STATE(310)] = 5456, + [SMALL_STATE(311)] = 5547, + [SMALL_STATE(312)] = 5614, + [SMALL_STATE(313)] = 5687, + [SMALL_STATE(314)] = 5746, + [SMALL_STATE(315)] = 5805, + [SMALL_STATE(316)] = 5896, + [SMALL_STATE(317)] = 5961, + [SMALL_STATE(318)] = 6020, + [SMALL_STATE(319)] = 6111, + [SMALL_STATE(320)] = 6202, + [SMALL_STATE(321)] = 6261, + [SMALL_STATE(322)] = 6352, + [SMALL_STATE(323)] = 6419, + [SMALL_STATE(324)] = 6500, + [SMALL_STATE(325)] = 6590, + [SMALL_STATE(326)] = 6680, + [SMALL_STATE(327)] = 6770, + [SMALL_STATE(328)] = 6860, + [SMALL_STATE(329)] = 6950, + [SMALL_STATE(330)] = 7012, + [SMALL_STATE(331)] = 7065, + [SMALL_STATE(332)] = 7118, + [SMALL_STATE(333)] = 7169, + [SMALL_STATE(334)] = 7220, + [SMALL_STATE(335)] = 7273, + [SMALL_STATE(336)] = 7326, + [SMALL_STATE(337)] = 7379, + [SMALL_STATE(338)] = 7430, + [SMALL_STATE(339)] = 7484, + [SMALL_STATE(340)] = 7532, + [SMALL_STATE(341)] = 7584, + [SMALL_STATE(342)] = 7638, + [SMALL_STATE(343)] = 7686, + [SMALL_STATE(344)] = 7734, + [SMALL_STATE(345)] = 7788, + [SMALL_STATE(346)] = 7836, + [SMALL_STATE(347)] = 7890, + [SMALL_STATE(348)] = 7938, + [SMALL_STATE(349)] = 7986, + [SMALL_STATE(350)] = 8034, + [SMALL_STATE(351)] = 8082, + [SMALL_STATE(352)] = 8130, + [SMALL_STATE(353)] = 8178, + [SMALL_STATE(354)] = 8226, + [SMALL_STATE(355)] = 8278, + [SMALL_STATE(356)] = 8326, + [SMALL_STATE(357)] = 8374, + [SMALL_STATE(358)] = 8422, + [SMALL_STATE(359)] = 8476, + [SMALL_STATE(360)] = 8530, + [SMALL_STATE(361)] = 8580, + [SMALL_STATE(362)] = 8628, + [SMALL_STATE(363)] = 8705, + [SMALL_STATE(364)] = 8786, + [SMALL_STATE(365)] = 8867, + [SMALL_STATE(366)] = 8944, + [SMALL_STATE(367)] = 9025, + [SMALL_STATE(368)] = 9106, + [SMALL_STATE(369)] = 9187, + [SMALL_STATE(370)] = 9262, + [SMALL_STATE(371)] = 9339, + [SMALL_STATE(372)] = 9420, + [SMALL_STATE(373)] = 9497, + [SMALL_STATE(374)] = 9548, + [SMALL_STATE(375)] = 9599, + [SMALL_STATE(376)] = 9680, + [SMALL_STATE(377)] = 9731, + [SMALL_STATE(378)] = 9782, + [SMALL_STATE(379)] = 9828, + [SMALL_STATE(380)] = 9874, + [SMALL_STATE(381)] = 9926, + [SMALL_STATE(382)] = 9972, + [SMALL_STATE(383)] = 10018, + [SMALL_STATE(384)] = 10068, + [SMALL_STATE(385)] = 10114, + [SMALL_STATE(386)] = 10160, + [SMALL_STATE(387)] = 10206, + [SMALL_STATE(388)] = 10258, + [SMALL_STATE(389)] = 10304, + [SMALL_STATE(390)] = 10350, + [SMALL_STATE(391)] = 10396, + [SMALL_STATE(392)] = 10442, + [SMALL_STATE(393)] = 10488, + [SMALL_STATE(394)] = 10536, + [SMALL_STATE(395)] = 10582, + [SMALL_STATE(396)] = 10634, + [SMALL_STATE(397)] = 10680, + [SMALL_STATE(398)] = 10756, + [SMALL_STATE(399)] = 10802, + [SMALL_STATE(400)] = 10848, + [SMALL_STATE(401)] = 10894, + [SMALL_STATE(402)] = 10940, + [SMALL_STATE(403)] = 10992, + [SMALL_STATE(404)] = 11038, + [SMALL_STATE(405)] = 11084, + [SMALL_STATE(406)] = 11132, + [SMALL_STATE(407)] = 11207, + [SMALL_STATE(408)] = 11252, + [SMALL_STATE(409)] = 11297, + [SMALL_STATE(410)] = 11342, + [SMALL_STATE(411)] = 11387, + [SMALL_STATE(412)] = 11432, + [SMALL_STATE(413)] = 11507, + [SMALL_STATE(414)] = 11582, + [SMALL_STATE(415)] = 11627, + [SMALL_STATE(416)] = 11702, + [SMALL_STATE(417)] = 11777, + [SMALL_STATE(418)] = 11822, + [SMALL_STATE(419)] = 11867, + [SMALL_STATE(420)] = 11942, + [SMALL_STATE(421)] = 12017, + [SMALL_STATE(422)] = 12092, + [SMALL_STATE(423)] = 12167, + [SMALL_STATE(424)] = 12242, + [SMALL_STATE(425)] = 12317, + [SMALL_STATE(426)] = 12392, + [SMALL_STATE(427)] = 12467, + [SMALL_STATE(428)] = 12542, + [SMALL_STATE(429)] = 12617, + [SMALL_STATE(430)] = 12692, + [SMALL_STATE(431)] = 12767, + [SMALL_STATE(432)] = 12812, + [SMALL_STATE(433)] = 12857, + [SMALL_STATE(434)] = 12932, + [SMALL_STATE(435)] = 13007, + [SMALL_STATE(436)] = 13082, + [SMALL_STATE(437)] = 13157, + [SMALL_STATE(438)] = 13232, + [SMALL_STATE(439)] = 13307, + [SMALL_STATE(440)] = 13382, + [SMALL_STATE(441)] = 13457, + [SMALL_STATE(442)] = 13532, + [SMALL_STATE(443)] = 13607, + [SMALL_STATE(444)] = 13682, + [SMALL_STATE(445)] = 13757, + [SMALL_STATE(446)] = 13832, + [SMALL_STATE(447)] = 13907, + [SMALL_STATE(448)] = 13982, + [SMALL_STATE(449)] = 14057, + [SMALL_STATE(450)] = 14132, + [SMALL_STATE(451)] = 14207, + [SMALL_STATE(452)] = 14282, + [SMALL_STATE(453)] = 14357, + [SMALL_STATE(454)] = 14432, + [SMALL_STATE(455)] = 14507, + [SMALL_STATE(456)] = 14582, + [SMALL_STATE(457)] = 14657, + [SMALL_STATE(458)] = 14732, + [SMALL_STATE(459)] = 14777, + [SMALL_STATE(460)] = 14822, + [SMALL_STATE(461)] = 14897, + [SMALL_STATE(462)] = 14948, + [SMALL_STATE(463)] = 14993, + [SMALL_STATE(464)] = 15038, + [SMALL_STATE(465)] = 15113, + [SMALL_STATE(466)] = 15170, + [SMALL_STATE(467)] = 15215, + [SMALL_STATE(468)] = 15268, + [SMALL_STATE(469)] = 15327, + [SMALL_STATE(470)] = 15402, + [SMALL_STATE(471)] = 15477, + [SMALL_STATE(472)] = 15530, + [SMALL_STATE(473)] = 15595, + [SMALL_STATE(474)] = 15662, + [SMALL_STATE(475)] = 15731, + [SMALL_STATE(476)] = 15802, + [SMALL_STATE(477)] = 15877, + [SMALL_STATE(478)] = 15928, + [SMALL_STATE(479)] = 15979, + [SMALL_STATE(480)] = 16024, + [SMALL_STATE(481)] = 16069, + [SMALL_STATE(482)] = 16114, + [SMALL_STATE(483)] = 16189, + [SMALL_STATE(484)] = 16264, + [SMALL_STATE(485)] = 16309, + [SMALL_STATE(486)] = 16354, + [SMALL_STATE(487)] = 16429, + [SMALL_STATE(488)] = 16475, + [SMALL_STATE(489)] = 16523, + [SMALL_STATE(490)] = 16571, + [SMALL_STATE(491)] = 16614, + [SMALL_STATE(492)] = 16683, + [SMALL_STATE(493)] = 16752, + [SMALL_STATE(494)] = 16821, + [SMALL_STATE(495)] = 16887, + [SMALL_STATE(496)] = 16953, + [SMALL_STATE(497)] = 17017, + [SMALL_STATE(498)] = 17081, + [SMALL_STATE(499)] = 17145, + [SMALL_STATE(500)] = 17209, + [SMALL_STATE(501)] = 17270, + [SMALL_STATE(502)] = 17331, + [SMALL_STATE(503)] = 17384, + [SMALL_STATE(504)] = 17437, + [SMALL_STATE(505)] = 17498, + [SMALL_STATE(506)] = 17559, + [SMALL_STATE(507)] = 17620, + [SMALL_STATE(508)] = 17673, + [SMALL_STATE(509)] = 17726, + [SMALL_STATE(510)] = 17787, + [SMALL_STATE(511)] = 17848, + [SMALL_STATE(512)] = 17909, + [SMALL_STATE(513)] = 17970, + [SMALL_STATE(514)] = 18031, + [SMALL_STATE(515)] = 18092, + [SMALL_STATE(516)] = 18153, + [SMALL_STATE(517)] = 18214, + [SMALL_STATE(518)] = 18275, + [SMALL_STATE(519)] = 18336, + [SMALL_STATE(520)] = 18397, + [SMALL_STATE(521)] = 18458, + [SMALL_STATE(522)] = 18519, + [SMALL_STATE(523)] = 18580, + [SMALL_STATE(524)] = 18641, + [SMALL_STATE(525)] = 18702, + [SMALL_STATE(526)] = 18763, + [SMALL_STATE(527)] = 18821, + [SMALL_STATE(528)] = 18879, + [SMALL_STATE(529)] = 18937, + [SMALL_STATE(530)] = 18995, + [SMALL_STATE(531)] = 19053, + [SMALL_STATE(532)] = 19111, + [SMALL_STATE(533)] = 19169, + [SMALL_STATE(534)] = 19227, + [SMALL_STATE(535)] = 19285, + [SMALL_STATE(536)] = 19325, + [SMALL_STATE(537)] = 19383, + [SMALL_STATE(538)] = 19441, + [SMALL_STATE(539)] = 19499, + [SMALL_STATE(540)] = 19557, + [SMALL_STATE(541)] = 19615, + [SMALL_STATE(542)] = 19673, + [SMALL_STATE(543)] = 19717, + [SMALL_STATE(544)] = 19775, + [SMALL_STATE(545)] = 19833, + [SMALL_STATE(546)] = 19891, + [SMALL_STATE(547)] = 19939, + [SMALL_STATE(548)] = 19985, + [SMALL_STATE(549)] = 20033, + [SMALL_STATE(550)] = 20091, + [SMALL_STATE(551)] = 20149, + [SMALL_STATE(552)] = 20207, + [SMALL_STATE(553)] = 20255, + [SMALL_STATE(554)] = 20299, + [SMALL_STATE(555)] = 20343, + [SMALL_STATE(556)] = 20401, + [SMALL_STATE(557)] = 20459, + [SMALL_STATE(558)] = 20517, + [SMALL_STATE(559)] = 20575, + [SMALL_STATE(560)] = 20633, + [SMALL_STATE(561)] = 20691, + [SMALL_STATE(562)] = 20749, + [SMALL_STATE(563)] = 20807, + [SMALL_STATE(564)] = 20865, + [SMALL_STATE(565)] = 20923, + [SMALL_STATE(566)] = 20981, + [SMALL_STATE(567)] = 21039, + [SMALL_STATE(568)] = 21097, + [SMALL_STATE(569)] = 21155, + [SMALL_STATE(570)] = 21213, + [SMALL_STATE(571)] = 21271, + [SMALL_STATE(572)] = 21329, + [SMALL_STATE(573)] = 21387, + [SMALL_STATE(574)] = 21445, + [SMALL_STATE(575)] = 21503, + [SMALL_STATE(576)] = 21551, + [SMALL_STATE(577)] = 21609, + [SMALL_STATE(578)] = 21648, + [SMALL_STATE(579)] = 21687, + [SMALL_STATE(580)] = 21730, + [SMALL_STATE(581)] = 21777, + [SMALL_STATE(582)] = 21822, + [SMALL_STATE(583)] = 21861, + [SMALL_STATE(584)] = 21900, + [SMALL_STATE(585)] = 21939, + [SMALL_STATE(586)] = 21978, + [SMALL_STATE(587)] = 22025, + [SMALL_STATE(588)] = 22064, + [SMALL_STATE(589)] = 22109, + [SMALL_STATE(590)] = 22148, + [SMALL_STATE(591)] = 22193, + [SMALL_STATE(592)] = 22240, + [SMALL_STATE(593)] = 22287, + [SMALL_STATE(594)] = 22332, + [SMALL_STATE(595)] = 22371, + [SMALL_STATE(596)] = 22410, + [SMALL_STATE(597)] = 22453, + [SMALL_STATE(598)] = 22498, + [SMALL_STATE(599)] = 22541, + [SMALL_STATE(600)] = 22580, + [SMALL_STATE(601)] = 22624, + [SMALL_STATE(602)] = 22668, + [SMALL_STATE(603)] = 22708, + [SMALL_STATE(604)] = 22748, + [SMALL_STATE(605)] = 22788, + [SMALL_STATE(606)] = 22830, + [SMALL_STATE(607)] = 22874, + [SMALL_STATE(608)] = 22916, + [SMALL_STATE(609)] = 22956, + [SMALL_STATE(610)] = 23012, + [SMALL_STATE(611)] = 23068, + [SMALL_STATE(612)] = 23110, + [SMALL_STATE(613)] = 23166, + [SMALL_STATE(614)] = 23208, + [SMALL_STATE(615)] = 23252, [SMALL_STATE(616)] = 23296, - [SMALL_STATE(617)] = 23330, - [SMALL_STATE(618)] = 23360, - [SMALL_STATE(619)] = 23394, - [SMALL_STATE(620)] = 23428, - [SMALL_STATE(621)] = 23464, - [SMALL_STATE(622)] = 23500, - [SMALL_STATE(623)] = 23536, - [SMALL_STATE(624)] = 23572, - [SMALL_STATE(625)] = 23608, - [SMALL_STATE(626)] = 23644, - [SMALL_STATE(627)] = 23680, - [SMALL_STATE(628)] = 23716, - [SMALL_STATE(629)] = 23750, - [SMALL_STATE(630)] = 23786, - [SMALL_STATE(631)] = 23822, - [SMALL_STATE(632)] = 23858, - [SMALL_STATE(633)] = 23894, - [SMALL_STATE(634)] = 23930, - [SMALL_STATE(635)] = 23966, - [SMALL_STATE(636)] = 24002, - [SMALL_STATE(637)] = 24038, - [SMALL_STATE(638)] = 24074, - [SMALL_STATE(639)] = 24110, - [SMALL_STATE(640)] = 24146, - [SMALL_STATE(641)] = 24182, - [SMALL_STATE(642)] = 24218, - [SMALL_STATE(643)] = 24254, - [SMALL_STATE(644)] = 24290, - [SMALL_STATE(645)] = 24326, - [SMALL_STATE(646)] = 24362, - [SMALL_STATE(647)] = 24398, - [SMALL_STATE(648)] = 24434, - [SMALL_STATE(649)] = 24470, - [SMALL_STATE(650)] = 24506, - [SMALL_STATE(651)] = 24542, - [SMALL_STATE(652)] = 24578, - [SMALL_STATE(653)] = 24614, - [SMALL_STATE(654)] = 24650, - [SMALL_STATE(655)] = 24686, - [SMALL_STATE(656)] = 24722, - [SMALL_STATE(657)] = 24758, - [SMALL_STATE(658)] = 24794, - [SMALL_STATE(659)] = 24830, - [SMALL_STATE(660)] = 24866, - [SMALL_STATE(661)] = 24902, - [SMALL_STATE(662)] = 24938, - [SMALL_STATE(663)] = 24972, - [SMALL_STATE(664)] = 25006, - [SMALL_STATE(665)] = 25042, - [SMALL_STATE(666)] = 25078, - [SMALL_STATE(667)] = 25114, - [SMALL_STATE(668)] = 25150, - [SMALL_STATE(669)] = 25186, - [SMALL_STATE(670)] = 25222, - [SMALL_STATE(671)] = 25258, - [SMALL_STATE(672)] = 25294, - [SMALL_STATE(673)] = 25330, - [SMALL_STATE(674)] = 25366, - [SMALL_STATE(675)] = 25402, - [SMALL_STATE(676)] = 25438, - [SMALL_STATE(677)] = 25474, - [SMALL_STATE(678)] = 25510, - [SMALL_STATE(679)] = 25546, - [SMALL_STATE(680)] = 25582, - [SMALL_STATE(681)] = 25618, - [SMALL_STATE(682)] = 25654, - [SMALL_STATE(683)] = 25690, - [SMALL_STATE(684)] = 25726, - [SMALL_STATE(685)] = 25762, - [SMALL_STATE(686)] = 25798, - [SMALL_STATE(687)] = 25834, - [SMALL_STATE(688)] = 25870, - [SMALL_STATE(689)] = 25906, - [SMALL_STATE(690)] = 25942, - [SMALL_STATE(691)] = 25978, - [SMALL_STATE(692)] = 26014, - [SMALL_STATE(693)] = 26050, - [SMALL_STATE(694)] = 26086, - [SMALL_STATE(695)] = 26122, - [SMALL_STATE(696)] = 26158, - [SMALL_STATE(697)] = 26194, - [SMALL_STATE(698)] = 26230, - [SMALL_STATE(699)] = 26266, - [SMALL_STATE(700)] = 26302, - [SMALL_STATE(701)] = 26338, - [SMALL_STATE(702)] = 26374, - [SMALL_STATE(703)] = 26410, - [SMALL_STATE(704)] = 26446, - [SMALL_STATE(705)] = 26482, - [SMALL_STATE(706)] = 26518, - [SMALL_STATE(707)] = 26552, - [SMALL_STATE(708)] = 26586, - [SMALL_STATE(709)] = 26620, - [SMALL_STATE(710)] = 26654, - [SMALL_STATE(711)] = 26688, - [SMALL_STATE(712)] = 26722, - [SMALL_STATE(713)] = 26758, - [SMALL_STATE(714)] = 26793, - [SMALL_STATE(715)] = 26828, - [SMALL_STATE(716)] = 26863, - [SMALL_STATE(717)] = 26898, - [SMALL_STATE(718)] = 26933, - [SMALL_STATE(719)] = 26964, - [SMALL_STATE(720)] = 26999, - [SMALL_STATE(721)] = 27034, - [SMALL_STATE(722)] = 27069, - [SMALL_STATE(723)] = 27104, - [SMALL_STATE(724)] = 27139, - [SMALL_STATE(725)] = 27174, - [SMALL_STATE(726)] = 27209, - [SMALL_STATE(727)] = 27244, - [SMALL_STATE(728)] = 27279, - [SMALL_STATE(729)] = 27311, - [SMALL_STATE(730)] = 27335, - [SMALL_STATE(731)] = 27367, - [SMALL_STATE(732)] = 27399, - [SMALL_STATE(733)] = 27423, - [SMALL_STATE(734)] = 27455, - [SMALL_STATE(735)] = 27487, - [SMALL_STATE(736)] = 27519, - [SMALL_STATE(737)] = 27551, - [SMALL_STATE(738)] = 27583, - [SMALL_STATE(739)] = 27615, - [SMALL_STATE(740)] = 27647, - [SMALL_STATE(741)] = 27679, - [SMALL_STATE(742)] = 27711, - [SMALL_STATE(743)] = 27743, - [SMALL_STATE(744)] = 27775, - [SMALL_STATE(745)] = 27807, - [SMALL_STATE(746)] = 27839, - [SMALL_STATE(747)] = 27871, - [SMALL_STATE(748)] = 27903, - [SMALL_STATE(749)] = 27935, - [SMALL_STATE(750)] = 27967, - [SMALL_STATE(751)] = 27999, - [SMALL_STATE(752)] = 28031, - [SMALL_STATE(753)] = 28063, - [SMALL_STATE(754)] = 28093, - [SMALL_STATE(755)] = 28125, - [SMALL_STATE(756)] = 28155, - [SMALL_STATE(757)] = 28184, - [SMALL_STATE(758)] = 28207, - [SMALL_STATE(759)] = 28230, - [SMALL_STATE(760)] = 28253, - [SMALL_STATE(761)] = 28282, - [SMALL_STATE(762)] = 28305, - [SMALL_STATE(763)] = 28328, - [SMALL_STATE(764)] = 28351, - [SMALL_STATE(765)] = 28374, - [SMALL_STATE(766)] = 28397, - [SMALL_STATE(767)] = 28420, - [SMALL_STATE(768)] = 28449, - [SMALL_STATE(769)] = 28472, - [SMALL_STATE(770)] = 28495, - [SMALL_STATE(771)] = 28518, - [SMALL_STATE(772)] = 28545, - [SMALL_STATE(773)] = 28568, - [SMALL_STATE(774)] = 28591, - [SMALL_STATE(775)] = 28614, - [SMALL_STATE(776)] = 28643, - [SMALL_STATE(777)] = 28666, - [SMALL_STATE(778)] = 28689, - [SMALL_STATE(779)] = 28712, - [SMALL_STATE(780)] = 28735, - [SMALL_STATE(781)] = 28758, - [SMALL_STATE(782)] = 28781, - [SMALL_STATE(783)] = 28804, - [SMALL_STATE(784)] = 28827, - [SMALL_STATE(785)] = 28850, - [SMALL_STATE(786)] = 28879, - [SMALL_STATE(787)] = 28902, - [SMALL_STATE(788)] = 28925, - [SMALL_STATE(789)] = 28950, - [SMALL_STATE(790)] = 28973, - [SMALL_STATE(791)] = 28996, - [SMALL_STATE(792)] = 29019, - [SMALL_STATE(793)] = 29042, - [SMALL_STATE(794)] = 29065, - [SMALL_STATE(795)] = 29088, - [SMALL_STATE(796)] = 29111, - [SMALL_STATE(797)] = 29134, - [SMALL_STATE(798)] = 29159, - [SMALL_STATE(799)] = 29182, - [SMALL_STATE(800)] = 29211, - [SMALL_STATE(801)] = 29234, - [SMALL_STATE(802)] = 29263, - [SMALL_STATE(803)] = 29286, - [SMALL_STATE(804)] = 29309, - [SMALL_STATE(805)] = 29332, - [SMALL_STATE(806)] = 29361, - [SMALL_STATE(807)] = 29384, - [SMALL_STATE(808)] = 29407, - [SMALL_STATE(809)] = 29436, - [SMALL_STATE(810)] = 29463, - [SMALL_STATE(811)] = 29492, - [SMALL_STATE(812)] = 29515, - [SMALL_STATE(813)] = 29541, - [SMALL_STATE(814)] = 29567, - [SMALL_STATE(815)] = 29593, - [SMALL_STATE(816)] = 29619, - [SMALL_STATE(817)] = 29645, - [SMALL_STATE(818)] = 29671, - [SMALL_STATE(819)] = 29697, - [SMALL_STATE(820)] = 29723, - [SMALL_STATE(821)] = 29747, - [SMALL_STATE(822)] = 29773, - [SMALL_STATE(823)] = 29799, - [SMALL_STATE(824)] = 29821, - [SMALL_STATE(825)] = 29847, - [SMALL_STATE(826)] = 29873, - [SMALL_STATE(827)] = 29899, - [SMALL_STATE(828)] = 29925, - [SMALL_STATE(829)] = 29951, - [SMALL_STATE(830)] = 29973, - [SMALL_STATE(831)] = 29999, - [SMALL_STATE(832)] = 30025, - [SMALL_STATE(833)] = 30051, - [SMALL_STATE(834)] = 30077, - [SMALL_STATE(835)] = 30099, - [SMALL_STATE(836)] = 30125, - [SMALL_STATE(837)] = 30151, - [SMALL_STATE(838)] = 30177, - [SMALL_STATE(839)] = 30203, - [SMALL_STATE(840)] = 30229, - [SMALL_STATE(841)] = 30255, - [SMALL_STATE(842)] = 30279, - [SMALL_STATE(843)] = 30305, - [SMALL_STATE(844)] = 30331, - [SMALL_STATE(845)] = 30357, - [SMALL_STATE(846)] = 30381, - [SMALL_STATE(847)] = 30407, - [SMALL_STATE(848)] = 30433, - [SMALL_STATE(849)] = 30459, - [SMALL_STATE(850)] = 30485, - [SMALL_STATE(851)] = 30508, - [SMALL_STATE(852)] = 30529, - [SMALL_STATE(853)] = 30552, - [SMALL_STATE(854)] = 30575, - [SMALL_STATE(855)] = 30598, - [SMALL_STATE(856)] = 30621, - [SMALL_STATE(857)] = 30644, - [SMALL_STATE(858)] = 30667, - [SMALL_STATE(859)] = 30690, - [SMALL_STATE(860)] = 30713, - [SMALL_STATE(861)] = 30734, - [SMALL_STATE(862)] = 30757, - [SMALL_STATE(863)] = 30780, - [SMALL_STATE(864)] = 30801, - [SMALL_STATE(865)] = 30824, - [SMALL_STATE(866)] = 30847, - [SMALL_STATE(867)] = 30870, - [SMALL_STATE(868)] = 30890, - [SMALL_STATE(869)] = 30910, - [SMALL_STATE(870)] = 30930, - [SMALL_STATE(871)] = 30950, - [SMALL_STATE(872)] = 30970, - [SMALL_STATE(873)] = 30990, - [SMALL_STATE(874)] = 31010, - [SMALL_STATE(875)] = 31030, - [SMALL_STATE(876)] = 31050, - [SMALL_STATE(877)] = 31070, - [SMALL_STATE(878)] = 31090, - [SMALL_STATE(879)] = 31110, - [SMALL_STATE(880)] = 31130, - [SMALL_STATE(881)] = 31150, - [SMALL_STATE(882)] = 31170, - [SMALL_STATE(883)] = 31190, - [SMALL_STATE(884)] = 31210, - [SMALL_STATE(885)] = 31230, - [SMALL_STATE(886)] = 31250, - [SMALL_STATE(887)] = 31270, - [SMALL_STATE(888)] = 31290, - [SMALL_STATE(889)] = 31310, - [SMALL_STATE(890)] = 31330, - [SMALL_STATE(891)] = 31350, - [SMALL_STATE(892)] = 31370, - [SMALL_STATE(893)] = 31390, - [SMALL_STATE(894)] = 31410, - [SMALL_STATE(895)] = 31430, - [SMALL_STATE(896)] = 31450, - [SMALL_STATE(897)] = 31470, - [SMALL_STATE(898)] = 31490, - [SMALL_STATE(899)] = 31510, - [SMALL_STATE(900)] = 31530, - [SMALL_STATE(901)] = 31550, - [SMALL_STATE(902)] = 31570, - [SMALL_STATE(903)] = 31590, - [SMALL_STATE(904)] = 31610, - [SMALL_STATE(905)] = 31630, - [SMALL_STATE(906)] = 31650, - [SMALL_STATE(907)] = 31670, - [SMALL_STATE(908)] = 31690, - [SMALL_STATE(909)] = 31710, - [SMALL_STATE(910)] = 31730, - [SMALL_STATE(911)] = 31750, - [SMALL_STATE(912)] = 31770, - [SMALL_STATE(913)] = 31790, - [SMALL_STATE(914)] = 31810, - [SMALL_STATE(915)] = 31830, - [SMALL_STATE(916)] = 31850, - [SMALL_STATE(917)] = 31870, - [SMALL_STATE(918)] = 31890, - [SMALL_STATE(919)] = 31910, - [SMALL_STATE(920)] = 31930, - [SMALL_STATE(921)] = 31950, - [SMALL_STATE(922)] = 31970, - [SMALL_STATE(923)] = 31990, - [SMALL_STATE(924)] = 32010, - [SMALL_STATE(925)] = 32030, - [SMALL_STATE(926)] = 32050, - [SMALL_STATE(927)] = 32070, - [SMALL_STATE(928)] = 32090, - [SMALL_STATE(929)] = 32110, - [SMALL_STATE(930)] = 32130, - [SMALL_STATE(931)] = 32150, - [SMALL_STATE(932)] = 32170, - [SMALL_STATE(933)] = 32190, - [SMALL_STATE(934)] = 32210, - [SMALL_STATE(935)] = 32230, - [SMALL_STATE(936)] = 32250, - [SMALL_STATE(937)] = 32270, - [SMALL_STATE(938)] = 32290, - [SMALL_STATE(939)] = 32310, - [SMALL_STATE(940)] = 32314, + [SMALL_STATE(617)] = 23333, + [SMALL_STATE(618)] = 23370, + [SMALL_STATE(619)] = 23407, + [SMALL_STATE(620)] = 23448, + [SMALL_STATE(621)] = 23487, + [SMALL_STATE(622)] = 23524, + [SMALL_STATE(623)] = 23561, + [SMALL_STATE(624)] = 23598, + [SMALL_STATE(625)] = 23639, + [SMALL_STATE(626)] = 23678, + [SMALL_STATE(627)] = 23717, + [SMALL_STATE(628)] = 23754, + [SMALL_STATE(629)] = 23791, + [SMALL_STATE(630)] = 23828, + [SMALL_STATE(631)] = 23865, + [SMALL_STATE(632)] = 23906, + [SMALL_STATE(633)] = 23947, + [SMALL_STATE(634)] = 23984, + [SMALL_STATE(635)] = 24021, + [SMALL_STATE(636)] = 24062, + [SMALL_STATE(637)] = 24098, + [SMALL_STATE(638)] = 24134, + [SMALL_STATE(639)] = 24170, + [SMALL_STATE(640)] = 24206, + [SMALL_STATE(641)] = 24242, + [SMALL_STATE(642)] = 24292, + [SMALL_STATE(643)] = 24342, + [SMALL_STATE(644)] = 24392, + [SMALL_STATE(645)] = 24428, + [SMALL_STATE(646)] = 24463, + [SMALL_STATE(647)] = 24498, + [SMALL_STATE(648)] = 24533, + [SMALL_STATE(649)] = 24568, + [SMALL_STATE(650)] = 24615, + [SMALL_STATE(651)] = 24662, + [SMALL_STATE(652)] = 24697, + [SMALL_STATE(653)] = 24744, + [SMALL_STATE(654)] = 24779, + [SMALL_STATE(655)] = 24814, + [SMALL_STATE(656)] = 24851, + [SMALL_STATE(657)] = 24886, + [SMALL_STATE(658)] = 24921, + [SMALL_STATE(659)] = 24956, + [SMALL_STATE(660)] = 25000, + [SMALL_STATE(661)] = 25044, + [SMALL_STATE(662)] = 25088, + [SMALL_STATE(663)] = 25119, + [SMALL_STATE(664)] = 25152, + [SMALL_STATE(665)] = 25183, + [SMALL_STATE(666)] = 25221, + [SMALL_STATE(667)] = 25259, + [SMALL_STATE(668)] = 25297, + [SMALL_STATE(669)] = 25335, + [SMALL_STATE(670)] = 25371, + [SMALL_STATE(671)] = 25407, + [SMALL_STATE(672)] = 25443, + [SMALL_STATE(673)] = 25479, + [SMALL_STATE(674)] = 25515, + [SMALL_STATE(675)] = 25551, + [SMALL_STATE(676)] = 25587, + [SMALL_STATE(677)] = 25623, + [SMALL_STATE(678)] = 25659, + [SMALL_STATE(679)] = 25695, + [SMALL_STATE(680)] = 25731, + [SMALL_STATE(681)] = 25767, + [SMALL_STATE(682)] = 25803, + [SMALL_STATE(683)] = 25839, + [SMALL_STATE(684)] = 25875, + [SMALL_STATE(685)] = 25911, + [SMALL_STATE(686)] = 25947, + [SMALL_STATE(687)] = 25983, + [SMALL_STATE(688)] = 26019, + [SMALL_STATE(689)] = 26055, + [SMALL_STATE(690)] = 26091, + [SMALL_STATE(691)] = 26127, + [SMALL_STATE(692)] = 26163, + [SMALL_STATE(693)] = 26197, + [SMALL_STATE(694)] = 26231, + [SMALL_STATE(695)] = 26265, + [SMALL_STATE(696)] = 26299, + [SMALL_STATE(697)] = 26335, + [SMALL_STATE(698)] = 26369, + [SMALL_STATE(699)] = 26403, + [SMALL_STATE(700)] = 26439, + [SMALL_STATE(701)] = 26473, + [SMALL_STATE(702)] = 26509, + [SMALL_STATE(703)] = 26545, + [SMALL_STATE(704)] = 26581, + [SMALL_STATE(705)] = 26617, + [SMALL_STATE(706)] = 26653, + [SMALL_STATE(707)] = 26689, + [SMALL_STATE(708)] = 26725, + [SMALL_STATE(709)] = 26761, + [SMALL_STATE(710)] = 26797, + [SMALL_STATE(711)] = 26833, + [SMALL_STATE(712)] = 26869, + [SMALL_STATE(713)] = 26905, + [SMALL_STATE(714)] = 26941, + [SMALL_STATE(715)] = 26977, + [SMALL_STATE(716)] = 27013, + [SMALL_STATE(717)] = 27049, + [SMALL_STATE(718)] = 27083, + [SMALL_STATE(719)] = 27119, + [SMALL_STATE(720)] = 27155, + [SMALL_STATE(721)] = 27191, + [SMALL_STATE(722)] = 27227, + [SMALL_STATE(723)] = 27263, + [SMALL_STATE(724)] = 27299, + [SMALL_STATE(725)] = 27335, + [SMALL_STATE(726)] = 27371, + [SMALL_STATE(727)] = 27407, + [SMALL_STATE(728)] = 27443, + [SMALL_STATE(729)] = 27479, + [SMALL_STATE(730)] = 27515, + [SMALL_STATE(731)] = 27551, + [SMALL_STATE(732)] = 27587, + [SMALL_STATE(733)] = 27621, + [SMALL_STATE(734)] = 27657, + [SMALL_STATE(735)] = 27693, + [SMALL_STATE(736)] = 27729, + [SMALL_STATE(737)] = 27765, + [SMALL_STATE(738)] = 27799, + [SMALL_STATE(739)] = 27835, + [SMALL_STATE(740)] = 27871, + [SMALL_STATE(741)] = 27907, + [SMALL_STATE(742)] = 27941, + [SMALL_STATE(743)] = 27977, + [SMALL_STATE(744)] = 28013, + [SMALL_STATE(745)] = 28049, + [SMALL_STATE(746)] = 28083, + [SMALL_STATE(747)] = 28119, + [SMALL_STATE(748)] = 28155, + [SMALL_STATE(749)] = 28191, + [SMALL_STATE(750)] = 28227, + [SMALL_STATE(751)] = 28261, + [SMALL_STATE(752)] = 28297, + [SMALL_STATE(753)] = 28333, + [SMALL_STATE(754)] = 28369, + [SMALL_STATE(755)] = 28405, + [SMALL_STATE(756)] = 28441, + [SMALL_STATE(757)] = 28477, + [SMALL_STATE(758)] = 28513, + [SMALL_STATE(759)] = 28549, + [SMALL_STATE(760)] = 28585, + [SMALL_STATE(761)] = 28621, + [SMALL_STATE(762)] = 28655, + [SMALL_STATE(763)] = 28691, + [SMALL_STATE(764)] = 28727, + [SMALL_STATE(765)] = 28763, + [SMALL_STATE(766)] = 28793, + [SMALL_STATE(767)] = 28829, + [SMALL_STATE(768)] = 28865, + [SMALL_STATE(769)] = 28900, + [SMALL_STATE(770)] = 28935, + [SMALL_STATE(771)] = 28970, + [SMALL_STATE(772)] = 29005, + [SMALL_STATE(773)] = 29040, + [SMALL_STATE(774)] = 29075, + [SMALL_STATE(775)] = 29110, + [SMALL_STATE(776)] = 29145, + [SMALL_STATE(777)] = 29180, + [SMALL_STATE(778)] = 29215, + [SMALL_STATE(779)] = 29250, + [SMALL_STATE(780)] = 29285, + [SMALL_STATE(781)] = 29320, + [SMALL_STATE(782)] = 29351, + [SMALL_STATE(783)] = 29386, + [SMALL_STATE(784)] = 29418, + [SMALL_STATE(785)] = 29450, + [SMALL_STATE(786)] = 29482, + [SMALL_STATE(787)] = 29514, + [SMALL_STATE(788)] = 29546, + [SMALL_STATE(789)] = 29578, + [SMALL_STATE(790)] = 29610, + [SMALL_STATE(791)] = 29642, + [SMALL_STATE(792)] = 29674, + [SMALL_STATE(793)] = 29706, + [SMALL_STATE(794)] = 29738, + [SMALL_STATE(795)] = 29770, + [SMALL_STATE(796)] = 29802, + [SMALL_STATE(797)] = 29834, + [SMALL_STATE(798)] = 29864, + [SMALL_STATE(799)] = 29894, + [SMALL_STATE(800)] = 29926, + [SMALL_STATE(801)] = 29958, + [SMALL_STATE(802)] = 29990, + [SMALL_STATE(803)] = 30020, + [SMALL_STATE(804)] = 30052, + [SMALL_STATE(805)] = 30084, + [SMALL_STATE(806)] = 30116, + [SMALL_STATE(807)] = 30140, + [SMALL_STATE(808)] = 30164, + [SMALL_STATE(809)] = 30196, + [SMALL_STATE(810)] = 30228, + [SMALL_STATE(811)] = 30258, + [SMALL_STATE(812)] = 30290, + [SMALL_STATE(813)] = 30322, + [SMALL_STATE(814)] = 30354, + [SMALL_STATE(815)] = 30386, + [SMALL_STATE(816)] = 30418, + [SMALL_STATE(817)] = 30450, + [SMALL_STATE(818)] = 30473, + [SMALL_STATE(819)] = 30502, + [SMALL_STATE(820)] = 30525, + [SMALL_STATE(821)] = 30548, + [SMALL_STATE(822)] = 30571, + [SMALL_STATE(823)] = 30594, + [SMALL_STATE(824)] = 30617, + [SMALL_STATE(825)] = 30640, + [SMALL_STATE(826)] = 30663, + [SMALL_STATE(827)] = 30692, + [SMALL_STATE(828)] = 30715, + [SMALL_STATE(829)] = 30738, + [SMALL_STATE(830)] = 30763, + [SMALL_STATE(831)] = 30786, + [SMALL_STATE(832)] = 30809, + [SMALL_STATE(833)] = 30832, + [SMALL_STATE(834)] = 30855, + [SMALL_STATE(835)] = 30884, + [SMALL_STATE(836)] = 30913, + [SMALL_STATE(837)] = 30936, + [SMALL_STATE(838)] = 30959, + [SMALL_STATE(839)] = 30982, + [SMALL_STATE(840)] = 31011, + [SMALL_STATE(841)] = 31040, + [SMALL_STATE(842)] = 31063, + [SMALL_STATE(843)] = 31088, + [SMALL_STATE(844)] = 31111, + [SMALL_STATE(845)] = 31134, + [SMALL_STATE(846)] = 31163, + [SMALL_STATE(847)] = 31186, + [SMALL_STATE(848)] = 31209, + [SMALL_STATE(849)] = 31232, + [SMALL_STATE(850)] = 31255, + [SMALL_STATE(851)] = 31284, + [SMALL_STATE(852)] = 31313, + [SMALL_STATE(853)] = 31336, + [SMALL_STATE(854)] = 31359, + [SMALL_STATE(855)] = 31386, + [SMALL_STATE(856)] = 31409, + [SMALL_STATE(857)] = 31432, + [SMALL_STATE(858)] = 31455, + [SMALL_STATE(859)] = 31482, + [SMALL_STATE(860)] = 31505, + [SMALL_STATE(861)] = 31528, + [SMALL_STATE(862)] = 31551, + [SMALL_STATE(863)] = 31574, + [SMALL_STATE(864)] = 31597, + [SMALL_STATE(865)] = 31620, + [SMALL_STATE(866)] = 31643, + [SMALL_STATE(867)] = 31666, + [SMALL_STATE(868)] = 31689, + [SMALL_STATE(869)] = 31712, + [SMALL_STATE(870)] = 31735, + [SMALL_STATE(871)] = 31764, + [SMALL_STATE(872)] = 31787, + [SMALL_STATE(873)] = 31810, + [SMALL_STATE(874)] = 31836, + [SMALL_STATE(875)] = 31862, + [SMALL_STATE(876)] = 31888, + [SMALL_STATE(877)] = 31914, + [SMALL_STATE(878)] = 31940, + [SMALL_STATE(879)] = 31966, + [SMALL_STATE(880)] = 31992, + [SMALL_STATE(881)] = 32018, + [SMALL_STATE(882)] = 32044, + [SMALL_STATE(883)] = 32070, + [SMALL_STATE(884)] = 32092, + [SMALL_STATE(885)] = 32118, + [SMALL_STATE(886)] = 32144, + [SMALL_STATE(887)] = 32170, + [SMALL_STATE(888)] = 32196, + [SMALL_STATE(889)] = 32222, + [SMALL_STATE(890)] = 32248, + [SMALL_STATE(891)] = 32274, + [SMALL_STATE(892)] = 32300, + [SMALL_STATE(893)] = 32326, + [SMALL_STATE(894)] = 32352, + [SMALL_STATE(895)] = 32374, + [SMALL_STATE(896)] = 32400, + [SMALL_STATE(897)] = 32426, + [SMALL_STATE(898)] = 32452, + [SMALL_STATE(899)] = 32478, + [SMALL_STATE(900)] = 32502, + [SMALL_STATE(901)] = 32526, + [SMALL_STATE(902)] = 32548, + [SMALL_STATE(903)] = 32574, + [SMALL_STATE(904)] = 32600, + [SMALL_STATE(905)] = 32626, + [SMALL_STATE(906)] = 32652, + [SMALL_STATE(907)] = 32678, + [SMALL_STATE(908)] = 32704, + [SMALL_STATE(909)] = 32730, + [SMALL_STATE(910)] = 32756, + [SMALL_STATE(911)] = 32780, + [SMALL_STATE(912)] = 32803, + [SMALL_STATE(913)] = 32826, + [SMALL_STATE(914)] = 32849, + [SMALL_STATE(915)] = 32872, + [SMALL_STATE(916)] = 32895, + [SMALL_STATE(917)] = 32918, + [SMALL_STATE(918)] = 32939, + [SMALL_STATE(919)] = 32960, + [SMALL_STATE(920)] = 32983, + [SMALL_STATE(921)] = 33006, + [SMALL_STATE(922)] = 33029, + [SMALL_STATE(923)] = 33052, + [SMALL_STATE(924)] = 33073, + [SMALL_STATE(925)] = 33096, + [SMALL_STATE(926)] = 33119, + [SMALL_STATE(927)] = 33142, + [SMALL_STATE(928)] = 33165, + [SMALL_STATE(929)] = 33185, + [SMALL_STATE(930)] = 33205, + [SMALL_STATE(931)] = 33225, + [SMALL_STATE(932)] = 33245, + [SMALL_STATE(933)] = 33265, + [SMALL_STATE(934)] = 33285, + [SMALL_STATE(935)] = 33305, + [SMALL_STATE(936)] = 33325, + [SMALL_STATE(937)] = 33345, + [SMALL_STATE(938)] = 33365, + [SMALL_STATE(939)] = 33385, + [SMALL_STATE(940)] = 33405, + [SMALL_STATE(941)] = 33425, + [SMALL_STATE(942)] = 33445, + [SMALL_STATE(943)] = 33465, + [SMALL_STATE(944)] = 33485, + [SMALL_STATE(945)] = 33505, + [SMALL_STATE(946)] = 33525, + [SMALL_STATE(947)] = 33545, + [SMALL_STATE(948)] = 33565, + [SMALL_STATE(949)] = 33585, + [SMALL_STATE(950)] = 33605, + [SMALL_STATE(951)] = 33625, + [SMALL_STATE(952)] = 33645, + [SMALL_STATE(953)] = 33665, + [SMALL_STATE(954)] = 33685, + [SMALL_STATE(955)] = 33705, + [SMALL_STATE(956)] = 33725, + [SMALL_STATE(957)] = 33745, + [SMALL_STATE(958)] = 33765, + [SMALL_STATE(959)] = 33785, + [SMALL_STATE(960)] = 33805, + [SMALL_STATE(961)] = 33825, + [SMALL_STATE(962)] = 33845, + [SMALL_STATE(963)] = 33865, + [SMALL_STATE(964)] = 33885, + [SMALL_STATE(965)] = 33905, + [SMALL_STATE(966)] = 33925, + [SMALL_STATE(967)] = 33945, + [SMALL_STATE(968)] = 33965, + [SMALL_STATE(969)] = 33985, + [SMALL_STATE(970)] = 34005, + [SMALL_STATE(971)] = 34025, + [SMALL_STATE(972)] = 34045, + [SMALL_STATE(973)] = 34065, + [SMALL_STATE(974)] = 34085, + [SMALL_STATE(975)] = 34105, + [SMALL_STATE(976)] = 34125, + [SMALL_STATE(977)] = 34145, + [SMALL_STATE(978)] = 34165, + [SMALL_STATE(979)] = 34185, + [SMALL_STATE(980)] = 34205, + [SMALL_STATE(981)] = 34225, + [SMALL_STATE(982)] = 34245, + [SMALL_STATE(983)] = 34265, + [SMALL_STATE(984)] = 34285, + [SMALL_STATE(985)] = 34305, + [SMALL_STATE(986)] = 34325, + [SMALL_STATE(987)] = 34345, + [SMALL_STATE(988)] = 34365, + [SMALL_STATE(989)] = 34385, + [SMALL_STATE(990)] = 34405, + [SMALL_STATE(991)] = 34425, + [SMALL_STATE(992)] = 34445, + [SMALL_STATE(993)] = 34465, + [SMALL_STATE(994)] = 34485, + [SMALL_STATE(995)] = 34505, + [SMALL_STATE(996)] = 34525, + [SMALL_STATE(997)] = 34545, + [SMALL_STATE(998)] = 34565, + [SMALL_STATE(999)] = 34585, + [SMALL_STATE(1000)] = 34605, + [SMALL_STATE(1001)] = 34625, + [SMALL_STATE(1002)] = 34645, + [SMALL_STATE(1003)] = 34665, + [SMALL_STATE(1004)] = 34685, + [SMALL_STATE(1005)] = 34689, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [11] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(20), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(666), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(686), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(688), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(900), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualifiedAccessExpr, 1, 0, 0), [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualifiedAccessExpr, 1, 0, 0), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedIdentifier, 1, 0, 0), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 1, 0, 0), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedType, 3, 0, 0), [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedType, 3, 0, 0), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(876), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(942), [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(876), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(942), [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defaultUnionType, 2, 0, 0), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defaultUnionType, 2, 0, 0), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 2, 0, 0), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 2, 0, 0), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullableType, 2, 0, 0), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullableType, 2, 0, 0), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unionType, 3, 0, 0), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unionType, 3, 0, 0), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 4, 0, 0), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 4, 0, 0), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 4, 0, 0), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 4, 0, 0), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 5, 0, 0), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 5, 0, 0), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 5, 0, 0), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 5, 0, 0), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 6, 0, 0), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 6, 0, 0), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 2, 0, 0), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 3, 0, 0), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 3, 0, 0), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 3, 0, 0), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 3, 0, 0), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 4, 0, 0), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 4, 0, 0), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeCastExpr, 3, 0, 3), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeCastExpr, 3, 0, 3), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeTestExpr, 3, 0, 3), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeTestExpr, 3, 0, 3), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 1), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 1), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringLiteralType, 1, 0, 0), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringLiteralType, 1, 0, 0), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedAccessExpr, 3, 0, 4), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedAccessExpr, 3, 0, 4), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superAccessExpr, 3, 0, 0), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superAccessExpr, 3, 0, 0), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 2, 0, 0), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 2, 0, 0), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_amendExpr, 2, 0, 2), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amendExpr, 2, 0, 2), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 3, 0, 0), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 3, 0, 0), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 2, 0, 0), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 2, 0, 0), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringLiteralType, 1, 0, 0), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringLiteralType, 1, 0, 0), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unionType, 3, 0, 0), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unionType, 3, 0, 0), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 4, 0, 0), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 4, 0, 0), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 4, 0, 0), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 4, 0, 0), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 5, 0, 0), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 5, 0, 0), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 5, 0, 0), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 5, 0, 0), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 6, 0, 0), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 6, 0, 0), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 6, 0, 0), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 6, 0, 0), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 7, 0, 0), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 7, 0, 0), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defaultUnionType, 2, 0, 0), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defaultUnionType, 2, 0, 0), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullableType, 2, 0, 0), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullableType, 2, 0, 0), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 2, 0, 0), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 2, 0, 0), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 2, 0, 0), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 2, 0, 0), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 3, 0, 0), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 3, 0, 0), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 3, 0, 0), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 3, 0, 0), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 4, 0, 0), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 4, 0, 0), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 5, 0, 0), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 5, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeTestExpr, 3, 0, 3), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeTestExpr, 3, 0, 3), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeCastExpr, 3, 0, 3), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeCastExpr, 3, 0, 3), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 1), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 1), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superAccessExpr, 3, 0, 0), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superAccessExpr, 3, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedAccessExpr, 3, 0, 4), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedAccessExpr, 3, 0, 4), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 3, 0, 0), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 3, 0, 0), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 4, 0, 0), [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 4, 0, 0), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 3, 0, 0), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 3, 0, 0), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superSubscriptExpr, 4, 0, 0), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superSubscriptExpr, 4, 0, 0), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ifExpr, 7, 0, 0), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ifExpr, 7, 0, 0), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_letExpr, 7, 0, 0), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letExpr, 7, 0, 0), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nonNullExpr, 2, 0, 0), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonNullExpr, 2, 0, 0), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleExpr, 1, 0, 0), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleExpr, 1, 0, 0), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteralExpr, 2, 0, 0), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralExpr, 2, 0, 0), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteralExpr, 3, 0, 0), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralExpr, 3, 0, 0), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteralExpr, 3, 0, 0), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralExpr, 3, 0, 0), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteralExpr, 2, 0, 0), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralExpr, 2, 0, 0), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 2, 0, 0), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 2, 0, 0), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralExpr, 3, 0, 0), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralExpr, 3, 0, 0), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additiveExpr, 3, 0, 3), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additiveExpr, 3, 0, 3), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unaryMinusExpr, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unaryMinusExpr, 2, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicativeExpr, 3, 0, 3), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicativeExpr, 3, 0, 3), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullCoalesceExpr, 3, 0, 3), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullCoalesceExpr, 3, 0, 3), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiationExpr, 3, 0, 3), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiationExpr, 3, 0, 3), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equalityExpr, 3, 0, 3), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equalityExpr, 3, 0, 3), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logicalAndExpr, 3, 0, 3), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logicalAndExpr, 3, 0, 3), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logicalOrExpr, 3, 0, 3), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logicalOrExpr, 3, 0, 3), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeExpr, 3, 0, 3), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeExpr, 3, 0, 3), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logicalNotExpr, 2, 0, 0), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logicalNotExpr, 2, 0, 0), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importExpr, 4, 0, 5), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importExpr, 4, 0, 5), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throwExpr, 4, 0, 0), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throwExpr, 4, 0, 0), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_traceExpr, 4, 0, 0), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_traceExpr, 4, 0, 0), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readExpr, 4, 0, 5), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readExpr, 4, 0, 5), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualifiedAccessExpr, 2, 0, 0), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualifiedAccessExpr, 2, 0, 0), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superAccessExpr, 4, 0, 0), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superAccessExpr, 4, 0, 0), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 3, 0, 0), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 3, 0, 0), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscriptExpr, 4, 0, 4), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscriptExpr, 4, 0, 4), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedAccessExpr, 4, 0, 4), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedAccessExpr, 4, 0, 4), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 4, 0, 0), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 4, 0, 0), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparisonExpr, 3, 0, 3), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparisonExpr, 3, 0, 3), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 3, 0, 0), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 3, 0, 0), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memberPredicate, 5, 0, 9), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memberPredicate, 5, 0, 9), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 5, 0, 0), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 5, 0, 0), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectMethod, 3, 0, 0), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectMethod, 3, 0, 0), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectElement, 1, 0, 0), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectElement, 1, 0, 0), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 4, 0, 0), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 4, 0, 0), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectSpread, 2, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectSpread, 2, 0, 0), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 5, 0, 8), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 5, 0, 8), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 2, 0, 0), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 2, 0, 0), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memberPredicate, 4, 0, 7), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memberPredicate, 4, 0, 7), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 4, 0, 6), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 4, 0, 6), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 5, 0, 10), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 5, 0, 10), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 9, 0, 0), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 9, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__objectMember, 1, 0, 0), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__objectMember, 1, 0, 0), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 7, 0, 0), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 7, 0, 0), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 7, 0, 11), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 7, 0, 11), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(917), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(917), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 4, 0, 0), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 4, 0, 0), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 4, 0, 0), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 4, 0, 0), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 3, 0, 0), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 3, 0, 0), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 3, 0, 0), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 3, 0, 0), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 7, 0, 0), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 7, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 5, 0, 0), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 5, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 5, 0, 0), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 5, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 6, 0, 0), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 6, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_typedIdentifier, 1, 0, 0), REDUCE(sym_unqualifiedAccessExpr, 1, 0, 0), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(875), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(875), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(938), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(717), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(891), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(904), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(864), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(607), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(561), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 2, 0, 0), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 2, 0, 0), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 3, 0, 0), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 3, 0, 0), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_amendExpr, 2, 0, 2), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amendExpr, 2, 0, 2), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 2, 0, 0), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 2, 0, 0), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_letExpr, 7, 0, 0), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letExpr, 7, 0, 0), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 5, 0, 0), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 5, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ifExpr, 7, 0, 0), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ifExpr, 7, 0, 0), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualifiedAccessExpr, 2, 0, 0), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualifiedAccessExpr, 2, 0, 0), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nonNullExpr, 2, 0, 0), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonNullExpr, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleExpr, 1, 0, 0), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleExpr, 1, 0, 0), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteralExpr, 2, 0, 0), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralExpr, 2, 0, 0), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteralExpr, 3, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralExpr, 3, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteralExpr, 3, 0, 0), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralExpr, 3, 0, 0), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteralExpr, 2, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralExpr, 2, 0, 0), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 2, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 2, 0, 0), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralExpr, 3, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralExpr, 3, 0, 0), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additiveExpr, 3, 0, 3), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additiveExpr, 3, 0, 3), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unaryMinusExpr, 2, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unaryMinusExpr, 2, 0, 0), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicativeExpr, 3, 0, 3), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicativeExpr, 3, 0, 3), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 4, 0, 0), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 4, 0, 0), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullCoalesceExpr, 3, 0, 3), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullCoalesceExpr, 3, 0, 3), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiationExpr, 3, 0, 3), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiationExpr, 3, 0, 3), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equalityExpr, 3, 0, 3), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equalityExpr, 3, 0, 3), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logicalAndExpr, 3, 0, 3), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logicalAndExpr, 3, 0, 3), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logicalOrExpr, 3, 0, 3), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logicalOrExpr, 3, 0, 3), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeExpr, 3, 0, 3), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeExpr, 3, 0, 3), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logicalNotExpr, 2, 0, 0), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logicalNotExpr, 2, 0, 0), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importExpr, 4, 0, 5), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importExpr, 4, 0, 5), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throwExpr, 4, 0, 0), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throwExpr, 4, 0, 0), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_traceExpr, 4, 0, 0), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_traceExpr, 4, 0, 0), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readExpr, 4, 0, 5), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readExpr, 4, 0, 5), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superSubscriptExpr, 4, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superSubscriptExpr, 4, 0, 0), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superAccessExpr, 4, 0, 0), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superAccessExpr, 4, 0, 0), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 3, 0, 0), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 3, 0, 0), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscriptExpr, 4, 0, 4), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscriptExpr, 4, 0, 4), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedAccessExpr, 4, 0, 4), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedAccessExpr, 4, 0, 4), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparisonExpr, 3, 0, 3), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparisonExpr, 3, 0, 3), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 5, 0, 0), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 5, 0, 0), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectMethod, 3, 0, 0), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectMethod, 3, 0, 0), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 3, 0, 0), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 3, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 4, 0, 0), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 4, 0, 0), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectSpread, 2, 0, 0), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectSpread, 2, 0, 0), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memberPredicate, 5, 0, 9), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memberPredicate, 5, 0, 9), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 5, 0, 8), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 5, 0, 8), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectElement, 1, 0, 0), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectElement, 1, 0, 0), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memberPredicate, 4, 0, 7), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memberPredicate, 4, 0, 7), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 4, 0, 6), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 4, 0, 6), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 5, 0, 10), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 5, 0, 10), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 4, 0, 0), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 4, 0, 0), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 7, 0, 0), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 7, 0, 0), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 7, 0, 11), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 7, 0, 11), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__objectMember, 1, 0, 0), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__objectMember, 1, 0, 0), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 9, 0, 0), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 9, 0, 0), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(965), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(965), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 5, 0, 0), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 5, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 6, 0, 0), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 6, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 5, 0, 0), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 5, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 4, 0, 0), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 4, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 4, 0, 0), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 4, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 7, 0, 0), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 7, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 3, 0, 0), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 3, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 3, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_typedIdentifier, 1, 0, 0), REDUCE(sym_unqualifiedAccessExpr, 1, 0, 0), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(932), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(932), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(768), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(970), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(980), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(944), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(926), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(664), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(607), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAnnotation, 2, 0, 0), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAnnotation, 2, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 4, 0, 0), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 4, 0, 0), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 5, 0, 0), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 5, 0, 0), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 3, 0, 0), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 3, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 2, 0, 0), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 2, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 1, 0, 0), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 1, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebangComment, 2, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebangComment, 2, 0, 0), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 2, 0, 0), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 2, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 2, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 3, 0, 0), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 3, 0, 0), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 2, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 2, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 6, 0, 0), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 6, 0, 0), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 4, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 4, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 3, 0, 0), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 3, 0, 0), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 3, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 3, 0, 0), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 3, 0, 0), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 3, 0, 0), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 4, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 4, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 3, 0, 0), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 3, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 4, 0, 0), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 4, 0, 0), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 5, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 5, 0, 0), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 2, 0, 0), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 2, 0, 0), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 7, 0, 0), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 7, 0, 0), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 4, 0, 0), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 4, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 2, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 2, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 2, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 2, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 2, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 2, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 8, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 8, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 2, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 2, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 5, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 5, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 6, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 6, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 2, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 1, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 1, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 4, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 4, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 4, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 4, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 7, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 7, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 6, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 6, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 4, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 4, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 1, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 1, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 2, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 2, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__moduleMember, 1, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__moduleMember, 1, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 2, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 2, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 8, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 8, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 1, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 1, 0, 0), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 3, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 3, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 1, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(776), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(152), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(774), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(779), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(187), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(778), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(770), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(147), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(803), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(773), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(151), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(772), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(790), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(155), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(789), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(792), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(156), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(791), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(794), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(157), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(793), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(757), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(182), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(780), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(759), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(183), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(758), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(762), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(184), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(761), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(764), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(185), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(763), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(777), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(186), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(765), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedIdentifier, 2, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(834), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(803), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 1, 0, 0), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart2, 1, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 1, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart3, 1, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 1, 0, 0), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart4, 1, 0, 0), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 1, 0, 0), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart5, 1, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation1, 3, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 1, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart, 1, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 1, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart2, 1, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 1, 0, 0), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart3, 1, 0, 0), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 1, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 1, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart6, 1, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 1, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart1, 1, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation2, 3, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation3, 3, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation4, 3, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation5, 3, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation6, 3, 0, 0), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart4, 1, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 1, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart5, 1, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 1, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart6, 1, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 1, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation, 3, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart, 1, 0, 0), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), SHIFT_REPEAT(521), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 1, 0, 0), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart1, 1, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 1, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 1, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 1, 0, 0), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 2, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2068] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lineComment, 1, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAnnotation, 2, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAnnotation, 2, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 4, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 4, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 2, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 2, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 5, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 5, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 3, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 3, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebangComment, 2, 0, 0), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebangComment, 2, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 2, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 2, 0, 0), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 2, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 2, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 1, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 1, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 3, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 3, 0, 0), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 3, 0, 0), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 3, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 5, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 5, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 6, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 6, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 5, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 5, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 5, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 5, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 3, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 3, 0, 0), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 4, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 4, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 4, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 4, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 3, 0, 0), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 3, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 2, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 2, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 4, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 4, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 3, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 2, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 2, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 7, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 7, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 5, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 5, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 2, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 2, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 2, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 8, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 8, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 1, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 1, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), SHIFT_REPEAT(623), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 2, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 2, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 2, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 2, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 6, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 6, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 4, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 4, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 2, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 7, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 7, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 1, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 1, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 4, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 4, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 4, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 4, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 6, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 6, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 4, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 4, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 3, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 3, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__moduleMember, 1, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__moduleMember, 1, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 1, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 1, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 2, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 2, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 8, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 8, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 3, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 3, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 1, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(860), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(203), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(859), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(863), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(204), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(862), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(866), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(205), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(865), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(869), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(206), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(868), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(827), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(207), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(871), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(831), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(208), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(830), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(838), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(143), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 2, 0, 0), SHIFT_REPEAT(836), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(853), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(145), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 2, 0, 0), SHIFT_REPEAT(843), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(833), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(136), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 2, 0, 0), SHIFT_REPEAT(841), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(856), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(137), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 2, 0, 0), SHIFT_REPEAT(855), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(867), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(138), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 2, 0, 0), SHIFT_REPEAT(864), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(832), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(139), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 2, 0, 0), SHIFT_REPEAT(828), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(894), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(841), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedIdentifier, 2, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart, 1, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation, 3, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation1, 3, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation2, 3, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation3, 3, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation4, 3, 0, 0), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation5, 3, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringInterpolation6, 3, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat6, 1, 0, 0), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart4, 1, 0, 0), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart6, 1, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat7, 1, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat5, 1, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat2, 1, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart5, 1, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart, 1, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat6, 1, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart1, 1, 0, 0), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart6, 1, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat7, 1, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart2, 1, 0, 0), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat3, 1, 0, 0), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat1, 1, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart1, 1, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat2, 1, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat1, 1, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart2, 1, 0, 0), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat3, 1, 0, 0), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart3, 1, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart3, 1, 0, 0), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat4, 1, 0, 0), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteralExpr_repeat4, 1, 0, 0), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart4, 1, 0, 0), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteralExpr_repeat5, 1, 0, 0), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart5, 1, 0, 0), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 1, 0, 0), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 2, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 1, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2168] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lineComment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -50788,46 +54299,46 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__open_argument_paren] = true, }, [5] = { - [ts_external_token__sl3_string_chars] = true, + [ts_external_token__sl_string_chars] = true, }, [6] = { - [ts_external_token__ml6_string_chars] = true, + [ts_external_token__ml1_string_chars] = true, }, [7] = { - [ts_external_token__sl_string_chars] = true, + [ts_external_token__ml2_string_chars] = true, }, [8] = { - [ts_external_token__sl1_string_chars] = true, + [ts_external_token__ml3_string_chars] = true, }, [9] = { - [ts_external_token__sl2_string_chars] = true, + [ts_external_token__ml4_string_chars] = true, }, [10] = { - [ts_external_token__sl4_string_chars] = true, + [ts_external_token__ml5_string_chars] = true, }, [11] = { - [ts_external_token__sl5_string_chars] = true, + [ts_external_token__ml6_string_chars] = true, }, [12] = { - [ts_external_token__sl6_string_chars] = true, + [ts_external_token__sl1_string_chars] = true, }, [13] = { - [ts_external_token__ml_string_chars] = true, + [ts_external_token__sl2_string_chars] = true, }, [14] = { - [ts_external_token__ml1_string_chars] = true, + [ts_external_token__sl3_string_chars] = true, }, [15] = { - [ts_external_token__ml2_string_chars] = true, + [ts_external_token__sl4_string_chars] = true, }, [16] = { - [ts_external_token__ml3_string_chars] = true, + [ts_external_token__sl5_string_chars] = true, }, [17] = { - [ts_external_token__ml4_string_chars] = true, + [ts_external_token__sl6_string_chars] = true, }, [18] = { - [ts_external_token__ml5_string_chars] = true, + [ts_external_token__ml_string_chars] = true, }, [19] = { [ts_external_token__open_subscript_bracket] = true, @@ -50896,7 +54407,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_pkl(void) { .metadata = { .major_version = 0, .minor_version = 18, - .patch_version = 0, + .patch_version = 1, }, }; return &language; From 3714523224f8e455daec7c6a4ae24b93b0cc5199 Mon Sep 17 00:00:00 2001 From: Jen Basch Date: Fri, 29 Aug 2025 19:07:51 -0700 Subject: [PATCH 2/2] add to corpus --- test/corpus/object/objectBodyParams.txt | 37 ++++- test/corpus/snippetTests/classes/class5.txt | 131 ++++++++++++++++ .../snippetTests/classes/constraints15.txt | 26 ++++ .../snippetTests/classes/functions5.txt | 141 ++++++++++++++++++ 4 files changed, 328 insertions(+), 7 deletions(-) create mode 100644 test/corpus/snippetTests/classes/class5.txt create mode 100644 test/corpus/snippetTests/classes/constraints15.txt create mode 100644 test/corpus/snippetTests/classes/functions5.txt diff --git a/test/corpus/object/objectBodyParams.txt b/test/corpus/object/objectBodyParams.txt index e0c446c..43eeac7 100644 --- a/test/corpus/object/objectBodyParams.txt +++ b/test/corpus/object/objectBodyParams.txt @@ -2,8 +2,13 @@ objectBodyParams === -foo { bar -> - res = bar +root { + foo { bar -> + res = bar + } + zig { zag, zing, -> + pop = zag + zing + } } --- @@ -12,10 +17,28 @@ foo { bar -> (classProperty (identifier) (objectBody - (objectBodyParameters - (typedIdentifier - (identifier))) (objectProperty (identifier) - (unqualifiedAccessExpr - (identifier)))))) + (objectBody + (objectBodyParameters + (typedIdentifier + (identifier))) + (objectProperty + (identifier) + (unqualifiedAccessExpr + (identifier))))) + (objectProperty + (identifier) + (objectBody + (objectBodyParameters + (typedIdentifier + (identifier)) + (typedIdentifier + (identifier))) + (objectProperty + (identifier) + (additiveExpr + (unqualifiedAccessExpr + (identifier)) + (unqualifiedAccessExpr + (identifier))))))))) diff --git a/test/corpus/snippetTests/classes/class5.txt b/test/corpus/snippetTests/classes/class5.txt new file mode 100644 index 0000000..c0cfcbd --- /dev/null +++ b/test/corpus/snippetTests/classes/class5.txt @@ -0,0 +1,131 @@ +=== +classes/class5.pkl +=== + +class A +class B< + T, + U, +> { + function foo(x: V, y: W) = x.toString() + y.toString() + function bar< + V, + W, + >(x: V, y: W) = x.toString() + y.toString() +} + +a: A +b: B< + Int, + Int, +> + + +--- + +(module + (clazz + (identifier) + (typeParameterList + (typeParameter + (identifier)) + (typeParameter + (identifier)))) + (clazz + (identifier) + (typeParameterList + (typeParameter + (identifier)) + (typeParameter + (identifier))) + (classBody + (classMethod + (methodHeader + (identifier) + (typeParameterList + (typeParameter + (identifier)) + (typeParameter + (identifier))) + (parameterList + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))) + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))))) + (additiveExpr + (qualifiedAccessExpr + (unqualifiedAccessExpr + (identifier)) + (identifier) + (argumentList)) + (qualifiedAccessExpr + (unqualifiedAccessExpr + (identifier)) + (identifier) + (argumentList)))) + (classMethod + (methodHeader + (identifier) + (typeParameterList + (typeParameter + (identifier)) + (typeParameter + (identifier))) + (parameterList + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))) + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))))) + (additiveExpr + (qualifiedAccessExpr + (unqualifiedAccessExpr + (identifier)) + (identifier) + (argumentList)) + (qualifiedAccessExpr + (unqualifiedAccessExpr + (identifier)) + (identifier) + (argumentList)))))) + (classProperty + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier)) + (typeArgumentList + (declaredType + (qualifiedIdentifier + (identifier))) + (declaredType + (qualifiedIdentifier + (identifier))))))) + (classProperty + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier)) + (typeArgumentList + (declaredType + (qualifiedIdentifier + (identifier))) + (declaredType + (qualifiedIdentifier + (identifier)))))))) diff --git a/test/corpus/snippetTests/classes/constraints15.txt b/test/corpus/snippetTests/classes/constraints15.txt new file mode 100644 index 0000000..00efdbc --- /dev/null +++ b/test/corpus/snippetTests/classes/constraints15.txt @@ -0,0 +1,26 @@ +=== +classes/constraints15.pkl +=== + +res1: String(length >= 3, length <= 5) = "abcd" + +--- + +(module + (classProperty + (identifier) + (typeAnnotation + (constrainedType + (declaredType + (qualifiedIdentifier + (identifier))) + (comparisonExpr + (unqualifiedAccessExpr + (identifier)) + (intLiteralExpr)) + (comparisonExpr + (unqualifiedAccessExpr + (identifier)) + (intLiteralExpr)))) + (slStringLiteralExpr + (slStringLiteralPart)))) diff --git a/test/corpus/snippetTests/classes/functions5.txt b/test/corpus/snippetTests/classes/functions5.txt new file mode 100644 index 0000000..fa65f5b --- /dev/null +++ b/test/corpus/snippetTests/classes/functions5.txt @@ -0,0 +1,141 @@ +=== +classes/functions5.pkl +=== + +function a(x, y,) = 2 * x * y +function b(x: Int, y: Int,) = 2 * x * y +function c( + x: Int, + y: Int, +) = 2 * x * y +local d: (Int, Int,) -> Int = (x, y,) -> 2 * x * y + +res1 = a(3, 4,) +res2 = b(3, 4,) +res3 = c( + 3, + 4, +) +res4 = d.apply(3, 4,) + +--- + +(module + (classMethod + (methodHeader + (identifier) + (parameterList + (typedIdentifier + (identifier)) + (typedIdentifier + (identifier)))) + (multiplicativeExpr + (multiplicativeExpr + (intLiteralExpr) + (unqualifiedAccessExpr + (identifier))) + (unqualifiedAccessExpr + (identifier)))) + (classMethod + (methodHeader + (identifier) + (parameterList + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))) + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))))) + (multiplicativeExpr + (multiplicativeExpr + (intLiteralExpr) + (unqualifiedAccessExpr + (identifier))) + (unqualifiedAccessExpr + (identifier)))) + (classMethod + (methodHeader + (identifier) + (parameterList + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))) + (typedIdentifier + (identifier) + (typeAnnotation + (declaredType + (qualifiedIdentifier + (identifier))))))) + (multiplicativeExpr + (multiplicativeExpr + (intLiteralExpr) + (unqualifiedAccessExpr + (identifier))) + (unqualifiedAccessExpr + (identifier)))) + (classProperty + (modifier) + (identifier) + (typeAnnotation + (functionLiteralType + (declaredType + (qualifiedIdentifier + (identifier))) + (declaredType + (qualifiedIdentifier + (identifier))) + (declaredType + (qualifiedIdentifier + (identifier))))) + (functionLiteralExpr + (parameterList + (typedIdentifier + (identifier)) + (typedIdentifier + (identifier))) + (multiplicativeExpr + (multiplicativeExpr + (intLiteralExpr) + (unqualifiedAccessExpr + (identifier))) + (unqualifiedAccessExpr + (identifier))))) + (classProperty + (identifier) + (unqualifiedAccessExpr + (identifier) + (argumentList + (intLiteralExpr) + (intLiteralExpr)))) + (classProperty + (identifier) + (unqualifiedAccessExpr + (identifier) + (argumentList + (intLiteralExpr) + (intLiteralExpr)))) + (classProperty + (identifier) + (unqualifiedAccessExpr + (identifier) + (argumentList + (intLiteralExpr) + (intLiteralExpr)))) + (classProperty + (identifier) + (qualifiedAccessExpr + (unqualifiedAccessExpr + (identifier)) + (identifier) + (argumentList + (intLiteralExpr) + (intLiteralExpr)))))